:root {
  --ink: #101114;
  --muted: #666d79;
  --paper: #f7f4ee;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(16, 17, 20, 0.12);
  --cyan: #18b7ff;
  --green: #64d66d;
  --rose: #ff5d8f;
  --yellow: #f7c948;
  --violet: #7c5cff;
  --shadow: 0 24px 70px rgba(19, 23, 35, 0.14);
}

@font-face {
  font-family: "Tamrin";
  src:
    local("Tamrin"),
    local("Tamrin Regular"),
    url("assets/Tamrin-Regular.woff2") format("woff2"),
    url("assets/Tamrin-Regular.woff") format("woff"),
    url("assets/Tamrin-Regular.ttf") format("truetype"),
    url("assets/Tamrin-Regular.otf") format("opentype"),
    url("assets/tamrin-regular.woff2") format("woff2"),
    url("assets/tamrin-regular.woff") format("woff"),
    url("assets/tamrin-regular.ttf") format("truetype"),
    url("assets/tamrin-regular.otf") format("opentype");
  font-display: swap;
}

@property --service-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(64, 64, 64, 0.18);
  -webkit-backdrop-filter: blur(4px) saturate(1.12);
  backdrop-filter: blur(4px) saturate(1.12);
  pointer-events: none;
  content: "";
}

.legal-body {
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 183, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #ecf9ff 48%, #f9f3ff 100%);
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #f7f4ee;
  pointer-events: none;
}

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

.asmx-text {
  font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: -0.01em;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 50px rgba(30, 37, 54, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.metrics-strip,
.contact {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

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

.brand-name {
  font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  -webkit-text-stroke: 0.006em rgba(16, 17, 20, 0.16);
}

.nav-links {
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: rgba(16, 17, 20, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 180ms ease;
}

.nav-link-icon,
.nav-links small {
  display: none;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: #101114;
}

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

.nav-cta:hover,
.button.primary:hover {
  background: #242833;
  box-shadow: 0 22px 42px rgba(16, 17, 20, 0.26);
}

.button.ghost:hover {
  border-color: rgba(16, 17, 20, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 30px rgba(16, 17, 20, 0.1),
    0 0 0 4px rgba(16, 17, 20, 0.03);
}

.contact-mail {
  gap: 8px;
  padding: 0 18px;
}

.contact-mail svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.menu-button {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 15px;
  background:
    radial-gradient(circle at 28% 22%, rgba(24, 183, 255, 0.34), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(255, 93, 143, 0.24), transparent 34%),
    rgba(16, 17, 20, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, border-radius 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 5px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.54);
  transform: translate(-50%, -50%) translateX(var(--dot-x, 0));
  transition: width 180ms ease, height 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease, background 180ms ease;
}

.menu-button span:nth-child(1) {
  --dot-x: -8px;
}

.menu-button span:nth-child(3) {
  --dot-x: 8px;
}

.menu-button:hover {
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

body.menu-open .menu-button {
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 201, 72, 0.2), transparent 45%),
    #101114;
}

body.menu-open .menu-button span {
  width: 18px;
  height: 2px;
  background: #fff;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-band:not(.hero),
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.hero {
  display: grid;
  min-height: 94vh;
  align-content: center;
  padding: calc(124px + 1.9rem) 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 360px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  transform: translateY(-10px);
}

.hero-copy {
  max-width: 830px;
  min-width: 0;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 14px;
  color: #036a82;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(3.3rem, 8.4vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-title {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 0.015em;
  font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  isolation: isolate;
  perspective: 900px;
  position: relative;
  touch-action: pan-y;
}

.hero-title span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #101114;
  cursor: default;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transform-origin: 50% 72%;
  animation: titleFloat 5.8s ease-in-out infinite;
  transition: filter 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.hero-title span::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--title-aura, rgba(3, 106, 130, 0.36));
  content: attr(data-letter);
  opacity: 0.46;
  pointer-events: none;
  text-shadow:
    0 0.02em 0 rgba(255, 255, 255, 0.6),
    0 0.08em 0.22em currentColor;
  transform: translate3d(0.035em, 0.035em, -1px) scale(1.01);
  transform-origin: 50% 70%;
  animation: titleAura 4.8s ease-in-out infinite;
}

.hero-title span::after {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.01em;
  height: 0.045em;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-title span:nth-child(1) {
  --title-aura: rgba(0, 126, 150, 0.42);
  animation-delay: 0s;
}

.hero-title span:nth-child(2) {
  --title-aura: rgba(23, 105, 194, 0.4);
  animation-delay: 0.18s;
}

.hero-title span:nth-child(3) {
  --title-aura: rgba(232, 74, 132, 0.34);
  animation-delay: 0.36s;
}

.hero-title span:nth-child(4) {
  --title-aura: rgba(87, 65, 215, 0.38);
  animation-delay: 0.54s;
  margin-left: 0.095em;
}

.hero-title:hover span:nth-child(1),
.hero-title.is-touch-hover span:nth-child(1) {
  color: #036a82;
  transform: translateY(-0.09em) rotate(-5deg);
}

.hero-title:hover span:nth-child(2),
.hero-title.is-touch-hover span:nth-child(2) {
  color: #1769c2;
  transform: translateY(0.045em) rotate(4deg);
}

.hero-title:hover span:nth-child(3),
.hero-title.is-touch-hover span:nth-child(3) {
  color: #ad315f;
  transform: translateY(-0.08em) rotate(5deg);
}

.hero-title:hover span:nth-child(4),
.hero-title.is-touch-hover span:nth-child(4) {
  color: #5741d7;
  transform: translateY(0.04em) rotate(-4deg);
}

.hero-title:hover span,
.hero-title.is-touch-hover span {
  filter: saturate(1.18);
  text-shadow:
    0 0 0.12em rgba(255, 255, 255, 0.72),
    0 0.12em 0.28em rgba(16, 17, 20, 0.12),
    0.022em 0.022em 0 rgba(247, 201, 72, 0.2);
}

.hero-title:hover span::after,
.hero-title.is-touch-hover span::after {
  opacity: 0.28;
  transform: scaleX(0.9);
}

.hero-text {
  display: flex;
  flex-wrap: wrap;
  max-width: min(100%, 900px);
  gap: 7px 9px;
  margin: 24px 0 0;
  color: rgba(16, 17, 20, 0.76);
  font-size: clamp(1.16rem, 2.05vw, 1.64rem);
  line-height: 1.12;
  font-weight: 850;
  touch-action: pan-y;
}

.hero-text span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 6px;
  cursor: default;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-text span::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 183, 255, 0.44), rgba(247, 201, 72, 0.62));
  content: "";
  opacity: 0.42;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-text span:nth-child(1)::first-letter,
.hero-text span:nth-child(2)::first-letter,
.hero-text span:nth-child(4)::first-letter,
.hero-text span:nth-child(5)::first-letter {
  color: #036a82;
}

.hero-text span:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(247, 201, 72, 0.62), rgba(100, 214, 109, 0.5));
}

.hero-text span:nth-child(4)::after {
  background: linear-gradient(90deg, rgba(255, 93, 143, 0.48), rgba(124, 92, 255, 0.44));
}

.hero-text span:nth-child(5)::after {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.48), rgba(24, 183, 255, 0.5));
}

.hero-text span:nth-child(3) {
  color: rgba(16, 17, 20, 0.48);
}

.hero-text span:nth-child(3)::after {
  display: none;
}

.hero-text span:hover,
.hero-text span.is-touch-hover {
  color: #101114;
  transform: translateY(-3px);
}

.hero-text span:hover::after,
.hero-text span.is-touch-hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.hero-intro {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(16, 17, 20, 0.74);
  font-size: clamp(1.1rem, 1.42vw, 2.92rem);
  line-height: 1.62;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero-intro .intro-strong {
  color: #101114;
  font-weight: 750;
}

.hero-intro .intro-highlight {
  font-weight: 750;
  color: #036a82;
  background: linear-gradient(120deg, #036a82 0%, #1769c2 55%, #e84a84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.hero-actions .button {
  border-color: rgba(16, 17, 20, 0.08);
}

.hero-actions .button.primary {
  border: 1px solid transparent;
}

.hero-actions .button.ghost {
  border-color: rgba(16, 17, 20, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.hero-actions .button:hover {
  box-shadow: 0 16px 34px rgba(16, 17, 20, 0.14), 0 0 0 4px rgba(24, 183, 255, 0.07);
}

.hero-actions .button.ghost:hover {
  border-color: rgba(24, 183, 255, 0.2);
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.1), 0 0 0 4px rgba(24, 183, 255, 0.06);
}

.hero-console {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  min-height: 335px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(24, 183, 255, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(16, 17, 20, 0.96), rgba(25, 29, 41, 0.9));
  box-shadow: 0 30px 90px rgba(16, 17, 20, 0.18);
  color: #fff;
  transform-style: preserve-3d;
  touch-action: pan-y;
}

.console-glow {
  position: absolute;
  inset: 10px;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 32%, transparent 70%);
}

.console-header,
.console-pipeline,
.graph-strip,
.console-track,
.console-tiles,
.mini-chart,
.console-footer {
  position: relative;
}

.console-header,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-header {
  min-height: 42px;
}

.console-header div>span,
.console-tile span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.console-header strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.console-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(100, 214, 109, 0.32);
  border-radius: 999px;
  color: #bdf8c1;
  background: rgba(100, 214, 109, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.console-pipeline {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.console-pipeline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
}

.console-track {
  display: grid;
  grid-template-columns: 18px 1fr 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.console-track span {
  min-height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.console-track .is-live {
  min-height: 18px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(100, 214, 109, 0.82);
  animation: livePulse 1.6s ease-in-out infinite;
}

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

.console-pipeline .is-done {
  color: #101114;
  background: var(--green);
}

.console-pipeline .is-live {
  color: #101114;
  background: var(--yellow);
}

.graph-strip {
  display: grid;
  grid-template-columns: 1fr 66px;
  gap: 8px;
  align-items: stretch;
  margin-top: 10px;
}

.console-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.console-tile {
  display: grid;
  min-height: 58px;
  align-content: space-between;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  text-align: left;
  touch-action: manipulation;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.console-tile:hover,
.console-tile.is-touch-hover,
.console-tile.is-active {
  border-color: rgba(247, 201, 72, 0.5);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.console-tile.is-active {
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.18), rgba(24, 183, 255, 0.12)),
    rgba(255, 255, 255, 0.12);
}

.console-tile strong {
  font-size: 0.96rem;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  height: 58px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-chart span {
  height: var(--bar);
  min-height: 8px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  transform-origin: bottom;
  animation: barFloat 2.8s ease-in-out infinite;
}

.mini-chart span:nth-child(2n) {
  animation-delay: 240ms;
}

.mini-chart span:nth-child(3n) {
  animation-delay: 420ms;
}

.donut-graph {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle, #111827 0 42%, transparent 43%),
    conic-gradient(var(--green) 0 72%, rgba(255, 255, 255, 0.12) 72% 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.console-footer {
  margin-top: 10px;
}

.console-action {
  display: inline-flex;
  min-height: 38px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.console-action.primary {
  color: #101114;
  background: var(--yellow);
}

.console-action:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.console-action.primary:hover {
  background: #ffe082;
}

.console-action svg {
  width: 15px;
  height: 15px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: #101114;
  box-shadow: 0 16px 30px rgba(16, 17, 20, 0.2);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.metrics-strip {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 62px;
}

.metrics-strip div {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  min-height: 116px;
  padding: 24px 68px 22px 22px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 82% 12%, rgba(16, 17, 20, 0.08), transparent 34%);
  box-shadow: 0 16px 44px rgba(16, 17, 20, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metrics-strip div::before {
  position: absolute;
  inset: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--yellow), var(--rose), transparent);
  content: "";
  animation: metricSweep 3.4s ease-in-out infinite;
}

.metrics-strip div::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #101114;
  box-shadow: inset 0 -10px 18px rgba(24, 183, 255, 0.22), 0 12px 26px rgba(16, 17, 20, 0.16);
  content: "";
}

.metrics-strip div>svg {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  width: 20px;
  height: 20px;
  color: #fff;
  stroke-width: 2.4;
}

.metrics-strip div:nth-child(3)>svg {
  right: 26px;
}

.metrics-strip div:hover,
.metrics-strip div.is-touch-hover {
  border-color: rgba(16, 17, 20, 0.16);
  box-shadow: 0 22px 58px rgba(16, 17, 20, 0.14);
  transform: translateY(-2px);
}

.metrics-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.metrics-strip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: rgba(16, 17, 20, 0.58);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 84px;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid,
.project-grid,
.team-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
}

.service-card,
.project-card,
.team-card {
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-card {
  --service-accent: var(--yellow);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 16px;
  overflow: hidden;
  border-color: transparent;
  background: transparent;
  box-shadow: 0 22px 58px rgba(19, 23, 35, 0.08);
  transform-style: preserve-3d;
  touch-action: pan-y;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
  align-self: start;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: span 2;
  min-height: 190px;
}

.service-card::before {
  display: none;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--service-accent) 20%, transparent), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 249, 0.8));
  content: "";
}

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

.service-card:nth-child(3) {
  --service-accent: var(--rose);
}

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

.service-card:nth-child(5) {
  --service-accent: var(--violet);
}

.service-card:nth-child(6) {
  --service-accent: var(--cyan);
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card h3::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--service-accent);
  opacity: 0.72;
  content: "";
}

.service-card:hover,
.service-card.is-touch-hover,
.service-card:focus-within {
  box-shadow: 0 26px 66px rgba(16, 17, 20, 0.12), 0 0 28px color-mix(in srgb, var(--service-accent) 14%, transparent);
}

.icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 14px;
  color: #101114;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), color-mix(in srgb, var(--service-accent) 42%, white));
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.12);
  transition: transform 180ms ease;
}

.icon::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 999px;
  background: color-mix(in srgb, var(--service-accent) 24%, transparent);
  filter: blur(14px);
  content: "";
}

.icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.35;
}

.service-card:hover .icon,
.service-card.is-touch-hover .icon,
.service-card:focus-within .icon {
  transform: translateY(-3px) rotate(-6deg) scale(1.04);
}

.service-worklist {
  display: grid;
  gap: 10px;
  max-height: 0;
  margin-top: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
}

.service-worklist>span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 34%, rgba(16, 17, 20, 0.08));
  border-radius: 999px;
  color: #101114;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--service-accent) 24%, transparent), transparent 48%);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-worklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-worklist li {
  position: relative;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 10px;
  color: rgba(16, 17, 20, 0.72);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.service-worklist li::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 0.34em;
  border-radius: 999px;
  background: var(--service-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--service-accent) 50%, transparent);
  content: "";
}

.service-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 999px;
  color: #101114;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.1);
  pointer-events: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.service-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.service-card.is-expanded {
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.08);
}

.service-card.is-expanded .service-worklist {
  max-height: 320px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-card.is-expanded .service-toggle {
  color: #fff;
  background: #101114;
}

.service-card.is-expanded .service-toggle svg {
  transform: rotate(45deg);
}

.vision {
  padding-top: 28px;
}

.vision-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  overflow: visible;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.vision-main {
  position: relative;
  display: grid;
  --vision-clock-size: clamp(118px, 20vw, 220px);
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0 24px;
  min-height: clamp(300px, 36vw, 430px);
  align-content: center;
  align-items: start;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.vision-main::before,
.vision-main::after {
  position: absolute;
  right: clamp(22px, 5vw, 64px);
  bottom: calc(clamp(22px, 5vw, 64px) + 3rem);
  pointer-events: none;
  content: "";
}

.vision-main::before {
  z-index: 1;
  width: var(--vision-clock-size);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 8%, rgba(255, 255, 255, 0.94) 8.5% 10%, transparent 11%),
    conic-gradient(from -24deg, transparent 0 54%, rgba(24, 183, 255, 0.06) 62%, rgba(24, 183, 255, 0.2) 70%, rgba(247, 201, 72, 0.34) 78%, rgba(255, 93, 143, 0.68) 86%, rgba(255, 255, 255, 0.86) 91%, transparent 95% 100%);
  box-shadow: 0 0 18px rgba(255, 93, 143, 0.34), 0 0 34px rgba(247, 201, 72, 0.22);
  -webkit-mask:
    radial-gradient(circle, transparent 0 7%, #000 8% 62%, transparent 63%);
  mask:
    radial-gradient(circle, transparent 0 7%, #000 8% 62%, transparent 63%);
  transform-origin: center;
  animation: visionClockSpin 7.5s linear infinite;
}

.vision-main::after {
  z-index: 0;
  width: var(--vision-clock-size);
  aspect-ratio: 1;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #101114 0 4px, rgba(255, 255, 255, 0.86) 4px 7px, transparent 8px),
    repeating-conic-gradient(from 0deg, rgba(16, 17, 20, 0.16) 0 1deg, transparent 1deg 30deg),
    radial-gradient(circle, transparent 0 54%, rgba(16, 17, 20, 0.08) 55% 56%, transparent 57%),
    conic-gradient(from 0deg, rgba(24, 183, 255, 0.065), rgba(247, 201, 72, 0.11), rgba(255, 93, 143, 0.06), rgba(24, 183, 255, 0.065)),
    radial-gradient(circle, rgba(16, 17, 20, 0.055), transparent 62%);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.12),
    0 18px 46px rgba(16, 17, 20, 0.08),
    inset 0 0 34px rgba(247, 201, 72, 0.13);
  opacity: 0.78;
}

.vision-main h2 {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 940px;
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  overflow-wrap: normal;
  word-break: normal;
}

.vision-main .eyebrow {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  margin: 8px 0 0;
  padding: 0;
  background: transparent;
}

.vision-main>p {
  position: relative;
  z-index: 2;
}

.vision-main>p:last-of-type {
  grid-column: 2;
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
  line-height: 1.68;
}

.vision-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  margin-top: -19px;
}

.vision-points article {
  position: relative;
  display: grid;
  grid-template-areas:
    "icon label"
    "title title"
    "copy copy";
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 184px;
  padding: 17px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--vision-accent) 20%, transparent), transparent 42%);
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  opacity: 0;
  filter: blur(7px);
  transform: translateY(22px) scale(0.965);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease, background 220ms ease;
  will-change: transform, opacity, filter;
}

.vision-points.is-visible article {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  animation: visionCardIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc((var(--vision-order, 1) - 1) * 130ms);
}

.vision-points article:nth-child(1) {
  --vision-order: 1;
  --vision-accent: var(--cyan);
}

.vision-points article:nth-child(2) {
  --vision-order: 2;
  --vision-accent: var(--yellow);
}

.vision-points article:nth-child(3) {
  --vision-order: 3;
  --vision-accent: var(--rose);
}

.vision-points article::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 38%),
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--vision-accent) 22%, transparent), transparent 32%);
  opacity: 0.72;
  content: "";
  transition: opacity 220ms ease, transform 220ms ease;
}

.vision-points article>* {
  position: relative;
  z-index: 1;
}

.vision-card-pill {
  grid-area: label;
  display: inline-flex;
  min-width: 0;
  min-height: 26px;
  top: -5px;
  align-items: center;
  justify-self: end;
  align-self: center;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--vision-accent) 28%, rgba(16, 17, 20, 0.08));
  border-radius: 999px;
  color: #101114;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--vision-accent) 28%, transparent), transparent 48%);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.vision-points article::after {
  position: absolute;
  inset: auto 17px 0;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--vision-accent), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
}

.vision-points.is-visible article::after {
  transform: scaleX(1);
  animation: visionRailIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(260ms + ((var(--vision-order, 1) - 1) * 130ms));
}

.vision-points article:hover {
  border-color: color-mix(in srgb, var(--vision-accent) 34%, rgba(16, 17, 20, 0.12));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--vision-accent) 26%, transparent), transparent 44%);
  box-shadow: 0 26px 62px rgba(16, 17, 20, 0.13), 0 0 30px color-mix(in srgb, var(--vision-accent) 14%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-5px) scale(1.01);
}

.vision-points article:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.vision-points i {
  grid-area: icon;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(145deg, #101114, color-mix(in srgb, var(--vision-accent) 28%, #101114));
  box-shadow: 0 14px 28px rgba(16, 17, 20, 0.16), inset 0 -10px 22px color-mix(in srgb, var(--vision-accent) 24%, transparent);
  transition: transform 180ms ease, background 180ms ease;
}

.vision-points article:hover i {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.36), transparent 36%),
    linear-gradient(145deg, #101114, color-mix(in srgb, var(--vision-accent) 42%, #101114));
  transform: rotate(-5deg) scale(1.06);
}

.vision-points svg {
  width: 20px;
  height: 20px;
}

.vision-points h3 {
  grid-area: title;
  min-width: 0;
  margin: 3px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.03;
}

.vision-points p {
  grid-area: copy;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.process {
  padding-top: 38px;
}

.process-heading h2 {
  max-width: 900px;
}

.process-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  min-height: 430px;
  margin-top: 34px;
  padding: 34px 14px 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 183, 255, 0.11), transparent 34%),
    radial-gradient(circle at 80% 24%, rgba(247, 201, 72, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38));
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.process-board::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.process-rail {
  position: absolute;
  top: 177px;
  right: 7%;
  left: 7%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.08);
}

.process-rail::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--yellow), var(--rose), transparent);
  content: "";
  transform: translateX(-55%);
  animation: processRailFlow 5.8s ease-in-out infinite;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 218px;
  padding: 0 6px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: transform 220ms ease, opacity 220ms ease, color 220ms ease;
}

.process-board.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
  animation: processStepIn 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--process-order, 1) * 90ms);
}

.process-step:nth-of-type(1) {
  --process-order: 1;
  --process-accent: var(--cyan);
}

.process-step:nth-of-type(2) {
  --process-order: 2;
  --process-accent: #7c5cff;
  padding-top: 96px;
}

.process-step:nth-of-type(3) {
  --process-order: 3;
  --process-accent: var(--green);
}

.process-step:nth-of-type(4) {
  --process-order: 4;
  --process-accent: var(--cyan);
  padding-top: 96px;
}

.process-step:nth-of-type(5) {
  --process-order: 5;
  --process-accent: var(--yellow);
}

.process-step:nth-of-type(6) {
  --process-order: 6;
  --process-accent: var(--rose);
  padding-top: 96px;
}

.process-step::before {
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, color-mix(in srgb, var(--process-accent) 82%, #101114), color-mix(in srgb, var(--process-accent) 82%, #101114) 4px, transparent 4px, transparent 8px);
  content: "";
  order: 2;
  opacity: 0.72;
}

.process-step:nth-of-type(even)::before {
  order: -1;
}

.process-orb {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #101114;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--process-accent) 18%, transparent), transparent 52%);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.1), inset 0 0 0 8px rgba(255, 255, 255, 0.46);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-orb::before {
  position: absolute;
  inset: -8px;
  border: 8px solid color-mix(in srgb, var(--process-accent) 58%, rgba(255, 255, 255, 0.3));
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: inherit;
  content: "";
  transform: rotate(-16deg);
  transition: transform 320ms ease, border-color 220ms ease;
}

.process-orb svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  stroke-width: 2.2;
}

.process-kicker {
  order: 3;
  color: color-mix(in srgb, var(--process-accent) 72%, #101114);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step strong {
  order: 4;
  max-width: 170px;
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  line-height: 1.2;
}

.process-step:hover,
.process-step:focus-visible,
.process-step.is-active {
  color: #101114;
  transform: translateY(-5px);
}

.process-step:hover .process-orb,
.process-step:focus-visible .process-orb,
.process-step.is-active .process-orb {
  box-shadow: 0 20px 46px rgba(16, 17, 20, 0.14), 0 0 34px color-mix(in srgb, var(--process-accent) 26%, transparent), inset 0 0 0 8px rgba(255, 255, 255, 0.5);
  transform: scale(1.04);
}

.process-step:hover .process-orb::before,
.process-step:focus-visible .process-orb::before,
.process-step.is-active .process-orb::before {
  transform: rotate(72deg);
}

.process-step:focus-visible {
  outline: 3px solid rgba(24, 183, 255, 0.24);
  outline-offset: 5px;
  border-radius: 14px;
}

.process-detail {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.process-detail span {
  color: #036a82;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-detail h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.08;
}

.process-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.code-lab {
  padding-top: 38px;
}

.code-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 14px;
  align-items: stretch;
}

.editor-window,
.code-insights {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(10, 11, 14, 0.96);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.45),
    0 0 40px color-mix(in srgb, var(--srv-accent, var(--cyan)) 6%, transparent);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  overflow: hidden;
}

.editor-window:hover,
.code-insights:hover {
  border-color: color-mix(in srgb, var(--srv-accent, var(--cyan)) 30%, transparent);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.5),
    0 0 50px color-mix(in srgb, var(--srv-accent, var(--cyan)) 12%, transparent);
  transform: translateY(-2px);
}

.editor-window {
  color: #f7f7ff;
}

.editor-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050607;
  padding: 0 14px;
}

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

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.window-dots span:nth-child(1) {
  background: #ff5f56;
}

.window-dots span:nth-child(2) {
  background: #ffbd2e;
}

.window-dots span:nth-child(3) {
  background: #27c93f;
}

.editor-tabs {
  display: flex;
  min-width: 0;
  overflow-x: auto;
}

.editor-tab {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  color: rgba(247, 247, 255, 0.58);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 300;
  font-size: 0.78rem;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.editor-tab svg {
  width: 16px;
  height: 16px;
}

.editor-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.editor-tab.is-active {
  color: var(--srv-accent, var(--cyan)) !important;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 500;
  border-bottom: 2px solid var(--srv-accent, var(--cyan));
}

.code-stage {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 220px;
  cursor: text;
}

.line-numbers {
  display: block;
  padding-top: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(247, 247, 255, 0.38);
  font-family: "Cascadia Code", Consolas, monospace;
  text-align: center;
  line-height: 1.66;
}

.line-numbers span {
  display: block;
}

.code-panel {
  display: none;
  margin: 0;
  padding: 14px;
  overflow-x: auto;
  color: #f7f7ff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  line-height: 1.66;
}

.code-caret {
  position: absolute;
  top: 20px;
  left: 72px;
  z-index: 3;
  width: 2px;
  height: 1.66em;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(247, 201, 72, 0.75);
  pointer-events: none;
  animation: caretBlink 1s steps(2, start) infinite;
}

.code-panel.is-active {
  display: block;
  animation: codeIn 220ms ease both;
}

.code-panel code {
  white-space: pre;
}

.code-pink {
  color: #ff70d9;
}

.code-green {
  color: #b7f36b;
}

.code-blue {
  color: #68a7ff;
}

.code-cyan {
  color: #38d7ff;
}

.code-insights {
  display: grid;
  align-content: center;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 183, 255, 0.22), transparent 42%),
    linear-gradient(160deg, #101114 0%, #111827 100%);
}

.code-insights h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.1;
}

.insight-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.insight-list span {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  font-size: 0.84rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.insight-list span.insight-item-sync {
  cursor: pointer;
}

.insight-list span.insight-item-sync:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--srv-accent, var(--cyan)) 50%, transparent);
  background: color-mix(in srgb, var(--srv-accent, var(--cyan)) 12%, transparent);
  transform: translateX(4px);
}

.insight-list svg {
  width: 19px;
  height: 19px;
  color: var(--srv-accent, var(--yellow));
}

h3 {
  margin: 26px 0 12px;
  font-size: 1.08rem;
}

.service-card p,
.project-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.project-grid {
  width: min(100%, 1120px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-inline: auto;
  margin-top: 18px;
}

.project-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card.is-touch-hover,
.project-card:focus-visible {
  border-color: rgba(16, 17, 20, 0.28);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.13);
}

.project-card:focus-visible {
  outline: 2px solid #101114;
  outline-offset: 4px;
}

.project-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  border-radius: 9px;
  overflow: hidden;
  background: #111;
}

.project-visual::before,
.project-visual::after {
  display: none;
}

.project-visual img,
.project-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 280ms ease, filter 280ms ease;
}

.project-card:hover .project-visual img,
.project-card.is-touch-hover .project-visual img,
.project-card:focus-visible .project-visual img,
.project-card:hover .project-visual video,
.project-card.is-touch-hover .project-visual video,
.project-card:focus-visible .project-visual video {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.045);
}

.project-card p,
.project-card h3 {
  padding: 0 3px;
}

.project-card p {
  margin-top: 8px;
  font-weight: 800;
}

.project-card h3 {
  margin: 0 0 3px;
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  letter-spacing: -0.035em;
}

.project-copy {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-width: 0;
  overflow: hidden;
  padding: 10px 11px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(16, 17, 20, 0.05), rgba(16, 17, 20, 0));
  box-shadow: 0 16px 38px rgba(16, 17, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.28);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-copy::before {
  content: "";
  position: absolute;
  inset: 9px auto 9px 7px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #18b7ff, #ff5d8f 58%, #f7c948);
  box-shadow: 0 0 18px rgba(24, 183, 255, 0.38);
}

.project-copy::after {
  content: "";
  position: absolute;
  inset: -55% -20%;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.46) 44%, transparent 62%);
  opacity: 0;
  transform: translateX(-38%) rotate(6deg);
  transition: opacity 220ms ease, transform 560ms ease;
  pointer-events: none;
}

.project-card:hover .project-copy,
.project-card.is-touch-hover .project-copy,
.project-card:focus-visible .project-copy {
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    linear-gradient(180deg, rgba(24, 183, 255, 0.08), rgba(255, 93, 143, 0.04));
  box-shadow: 0 20px 48px rgba(16, 17, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-3px);
}

.project-card:hover .project-copy::after,
.project-card.is-touch-hover .project-copy::after,
.project-card:focus-visible .project-copy::after {
  opacity: 1;
  transform: translateX(35%) rotate(6deg);
}

.project-copy span {
  display: block;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.28;
}

.project-card.is-project-hidden {
  display: none;
}

.project-card:not(.is-project-hidden) {
  animation: projectCardIn 360ms ease both;
  animation-delay: calc(var(--reveal-order, 0) * 55ms);
}

.project-reveal {
  position: relative;
  display: flex;
  width: min(100%, 1120px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
  padding: 10px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(16px);
}

.project-reveal::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(24, 183, 255, 0.36), rgba(255, 93, 143, 0.34), rgba(247, 201, 72, 0.38));
  opacity: 0.42;
  z-index: -1;
}

.project-reveal span {
  color: #101114;
  font-size: 0.94rem;
  font-weight: 800;
}

.project-reveal-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #101114;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, letter-spacing 180ms ease;
}

.project-reveal-button::before {
  content: "";
  position: absolute;
  inset: -40% -24%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 50%, rgba(24, 183, 255, 0.55), transparent 28%),
    radial-gradient(circle at 78% 52%, rgba(255, 93, 143, 0.5), transparent 26%),
    linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.42) 44%, transparent 62%);
  opacity: 0;
  transform: translateX(-32%) rotate(4deg);
  transition: opacity 220ms ease, transform 520ms ease;
}

.project-reveal-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 52%);
  opacity: 0.9;
}

.project-reveal-button:hover {
  letter-spacing: 0.01em;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.26), 0 0 0 5px rgba(16, 17, 20, 0.05);
}

.project-reveal-button:hover::before {
  opacity: 1;
  transform: translateX(28%) rotate(4deg);
}

.project-reveal-button:active {
  transform: translateY(1px) scale(0.965);
  box-shadow: 0 8px 18px rgba(16, 17, 20, 0.2), 0 0 0 8px rgba(24, 183, 255, 0.08);
}

.project-reveal-button svg {
  width: 17px;
  height: 17px;
}

.project-reveal-button .button-label,
.submit-button .button-label {
  font-weight: 950;
}

.project-reveal-button:hover .button-label,
.project-reveal-button:focus-visible .button-label {
  color: #101114;
  opacity: 1;
}

.nav-cta,
.button,
.console-action,
.project-modal-link,
.founder-social-actions a,
.submit-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.nav-cta::before,
.button::before,
.console-action::before,
.project-modal-link::before,
.founder-social-actions a::before,
.submit-button::before {
  position: absolute;
  inset: -42% -24%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 50%, rgba(24, 183, 255, 0.55), transparent 28%),
    radial-gradient(circle at 78% 52%, rgba(255, 93, 143, 0.5), transparent 26%),
    linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.42) 44%, transparent 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-32%) rotate(4deg);
  transition: opacity 220ms ease, transform 520ms ease;
}

.nav-cta:hover,
.button:hover,
.console-action:hover,
.project-modal-link:hover,
.founder-social-actions a:hover,
.submit-button:hover:not(:disabled) {
  letter-spacing: 0.01em;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.26), 0 0 0 5px rgba(16, 17, 20, 0.05);
}

.nav-cta:hover::before,
.button:hover::before,
.console-action:hover::before,
.project-modal-link:hover::before,
.founder-social-actions a:hover::before,
.submit-button:hover:not(:disabled)::before {
  opacity: 1;
  transform: translateX(28%) rotate(4deg);
}

.nav-cta:active,
.button:active,
.console-action:active,
.project-modal-link:active,
.founder-social-actions a:active,
.submit-button:active:not(:disabled) {
  transform: translateY(1px) scale(0.965);
  box-shadow: 0 8px 18px rgba(16, 17, 20, 0.2), 0 0 0 8px rgba(24, 183, 255, 0.08);
}

.project-reveal.is-expanded {
  background: rgba(255, 255, 255, 0.5);
}

.project-reveal.is-hidden {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: block;
  padding: 28px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 24% 18%, rgba(24, 183, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 93, 143, 0.12), transparent 28%),
    rgba(16, 17, 20, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(10px);
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-window {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.76fr) minmax(420px, 1.24fr);
  gap: 14px;
  width: min(91vw, 1180px);
  max-height: calc(100vh - 56px);
  margin: auto;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 243, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(24, 183, 255, 0.18), transparent 34%),
    radial-gradient(circle at 72% 102%, rgba(100, 214, 109, 0.12), transparent 26%);
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.36);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.project-modal.is-open .project-window {
  transform: translateY(0) scale(1);
}

.project-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(16, 17, 20, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.project-close:hover {
  background: #101114;
  color: #fff;
  transform: rotate(8deg) scale(1.04);
}

.project-close svg,
.project-modal-link svg {
  width: 18px;
  height: 18px;
}

.project-modal-copy {
  align-self: center;
  padding: 28px 22px 28px 24px;
}

.project-modal-label {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  color: #101114;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-modal-heading {
  margin-top: 24px;
}

.project-modal-heading h2 {
  margin-top: 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.project-modal-heading p {
  margin: 10px 0 0;
  color: #101114;
  font-size: 1.08rem;
  font-weight: 850;
}

.project-modal-copy>p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 18px;
}

.project-modal-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  color: #3c4248;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 820;
}

.project-modal-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(16, 17, 20, 0.9);
  border-radius: 999px;
  color: #fff;
  background: #101114;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-modal-link:hover {
  background: #1769c2;
  box-shadow: 0 18px 38px rgba(23, 105, 194, 0.24);
  transform: translateY(-2px);
}

.project-modal-link.is-hidden {
  display: none;
}

.project-gallery {
  align-self: center;
  width: 100%;
  padding: 9px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 50px rgba(16, 17, 20, 0.1);
}

.project-gallery-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 9px 9px;
}

.project-gallery-title {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: #101114;
  font-size: 0.9rem;
  font-weight: 900;
}

.project-gallery-count {
  display: inline-flex;
  min-width: 58px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  color: #3c4248;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.project-shot-wrap {
  position: relative;
}

.project-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #101114;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(16, 17, 20, 0.22);
  cursor: pointer;
  opacity: 0.75;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.project-gallery-button-prev {
  left: 14px;
}

.project-gallery-button-next {
  right: 14px;
}

.project-gallery-button:hover:not(:disabled) {
  color: #fff;
  background: rgba(16, 17, 20, 0.82);
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

.project-gallery-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.project-gallery-button svg {
  width: 17px;
  height: 17px;
}

.project-shot-frame {
  height: min(66vh, 620px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #101114, #050506);
  scroll-behavior: smooth;
}

.project-shot-frame.is-video-shot {
  overflow: hidden;
}

.project-shot-frame.is-video-shot .project-shot-stack {
  height: 100%;
  min-height: 100%;
  place-items: center;
  padding: 0;
}

.project-shot-frame::-webkit-scrollbar {
  width: 8px;
}

.project-shot-frame::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.project-shot-stack {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.project-shot-stack img,
.project-shot-stack video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
}

.project-shot-stack video {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #050506;
}

.stack-marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  cursor: grab;
}

.stack-marquee:hover .stack-track {
  animation-play-state: paused;
}

.stack-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 20px 0;
  animation: marquee 28s linear infinite;
}

.stack-track span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.stack-track span svg,
.stack-track span img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transition: filter 180ms ease;
}

.stack-track span:hover {
  border-color: rgba(16, 17, 20, 0.72);
  color: #fff;
  background: #101114;
}

.stack-track span:hover img {
  filter: brightness(0) invert(1);
}

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

.team-card {
  padding: 18px;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.05);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-card:hover,
.team-card.is-touch-hover,
.team-card:focus-visible {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
  transform: translateY(-4px);
}

.team-card:focus-visible {
  outline: 3px solid rgba(24, 183, 255, 0.28);
  outline-offset: 3px;
}

.team-role {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 16px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.team-pills span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.avatar {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  border-radius: 6px;
  overflow: hidden;
  color: rgba(16, 17, 20, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(135deg, rgba(24, 183, 255, 0.55), rgba(247, 201, 72, 0.5));
  background-size: 22px 22px, 22px 22px, auto;
  font-size: 4rem;
  font-weight: 900;
}

.avatar.has-photo {
  background: #101114;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  transition: transform 260ms ease, filter 260ms ease;
}

.avatar.has-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 17, 20, 0.48));
  content: "";
}

.avatar span {
  display: none;
}

.team-card:hover .avatar img,
.team-card.is-touch-hover .avatar img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 17, 20, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.founder-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.founder-window {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  width: min(75vw, 900px);
  max-height: 82vh;
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 110px rgba(16, 17, 20, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.founder-modal.is-open .founder-window {
  transform: translateY(0) scale(1);
}

.founder-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.founder-close svg {
  width: 18px;
  height: 18px;
}

.founder-window-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 6px;
  overflow: hidden;
  color: rgba(16, 17, 20, 0.38);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(135deg, rgba(24, 183, 255, 0.58), rgba(255, 93, 143, 0.36));
  background-size: 24px 24px, 24px 24px, auto;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
}

.founder-window-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.founder-window-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 17, 20, 0.42));
  content: "";
}

.founder-window-visual span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 17, 20, 0.52);
  font-size: 1rem;
  backdrop-filter: blur(14px);
}

.founder-window-copy {
  align-self: center;
  padding: 34px 46px 34px 0;
}

.founder-window-copy h2 {
  margin-top: 18px;
}

.founder-window-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.founder-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-social-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  color: #fff;
  background: #101114;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.founder-social-actions a:nth-child(2) {
  background: #91b121;
}

.founder-social-actions a:nth-child(3) {
  background: #0a66c2;
}

.founder-social-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 17, 20, 0.18);
}

.founder-social-actions a.is-disabled {
  cursor: default;
  opacity: 0.38;
  pointer-events: none;
}

.social-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.linkedin-logo {
  background: rgba(255, 255, 255, 0.18);
}

.founder-social-actions svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.portfolio-logo svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.linkedin-logo {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 12px;
  margin-top: 24px;
}

.scheduler,
.project-form {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.scheduler {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.scheduler::before {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: conic-gradient(from 90deg, var(--cyan), var(--yellow), var(--rose), var(--green), var(--cyan));
  content: "";
  opacity: 0.30;
}

.scheduler-head,
.selected-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scheduler h3,
.project-form h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  line-height: 1;
}

.call-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.meet-logo {
  display: grid;
  width: 34px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  filter: drop-shadow(0 10px 18px rgba(16, 17, 20, 0.14));
}

.meet-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.05);
}

.call-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: #101114;
  font-weight: 900;
  white-space: nowrap;
}

.scheduler-copy {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.calendar-module {
  position: relative;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.calendar-top,
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-top {
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-top strong {
  text-align: center;
  font-size: 0.96rem;
}

.calendar-nav,
.calendar-day,
.time-chip {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.calendar-nav {
  min-height: 34px;
  border-radius: 999px;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 34px;
  border-radius: 8px;
}

.calendar-day.is-muted {
  opacity: 0.32;
  pointer-events: none;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  transform: none;
}

.calendar-day.is-today {
  border-color: rgba(24, 183, 255, 0.8);
  box-shadow: inset 0 0 0 2px rgba(24, 183, 255, 0.18);
}

.time-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.time-chip {
  min-height: 40px;
  border-radius: 999px;
}

.calendar-nav:not(:disabled):hover,
.calendar-day:hover,
.time-chip:hover,
.calendar-day.is-active,
.time-chip.is-active {
  border-color: rgba(16, 17, 20, 0.75);
  background: #101114;
  color: #fff;
  transform: translateY(-2px);
}

.calendar-day,
.time-chip {
  color: var(--ink);
}

.calendar-day::after,
.time-chip::after {
  display: none !important;
}

.calendar-day::before,
.time-chip::before {
  display: none !important;
}

.calendar-day:hover,
.calendar-day:focus-visible,
.time-chip:hover,
.time-chip:focus-visible {
  background: #101114;
  color: #fff;
}

.calendar-day.is-active,
.time-chip.is-active {
  color: #fff;
}

.calendar-day .button-label,
.time-chip .button-label {
  position: relative;
  z-index: 2;
  animation: none !important;
}

.calendar-day .button-label::after,
.time-chip .button-label::after {
  display: none !important;
}

.selected-slot {
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.06);
}

.selected-slot span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-slot strong {
  font-size: 0.86rem;
  text-align: right;
}

.project-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  overflow: hidden;
  padding: 16px;
}

.project-form::before {
  top: -80px;
  position: absolute;
  right: -80px;
  bottom: 18px;
  width: 200px;
  height: 200px;
  left: -81px;
  border-radius: 999px;
  background: conic-gradient(from 90deg, var(--cyan), var(--yellow), var(--rose), var(--green), var(--cyan));
  content: "";
  opacity: 0.30;
}

.project-form>* {
  position: relative;
  z-index: 1;
}

.form-intro,
.field-wide,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 100px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #101114;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(24, 183, 255, 0.16);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(255, 93, 143, 0.14);
}

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

.submit-button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: #166534;
}

.form-status.is-error {
  color: #be123c;
}

.contact {
  justify-content: space-between;
  gap: 24px;
  min-height: 360px;
  padding: 84px 0;
}

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

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.legal-back {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.legal-document {
  margin-top: 22px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-document h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-document section {
  margin-top: 34px;
}

.legal-document h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-document section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-document a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 44px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  background: #f2f2ef;
  color: var(--ink);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  min-height: 310px;
  padding: 56px 46px 26px;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.55fr);
  gap: clamp(44px, 9vw, 120px);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #242424;
  font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.012em rgba(16, 17, 20, 0.08);
}

.footer-logo img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(16, 17, 20, 0.56);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.footer-brand p strong {
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.footer-socials a {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(16, 17, 20, 0.42);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-socials svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.footer-socials a:hover {
  border-color: rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-socials a:nth-child(1):hover {
  border-color: rgba(24, 119, 242, 0.32);
  color: #1877f2;
}

.footer-socials a:nth-child(2):hover {
  border-color: rgba(16, 17, 20, 0.16);
}

.footer-socials a:nth-child(3):hover {
  border-color: rgba(10, 102, 194, 0.32);
  color: #0a66c2;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: clamp(20px, 4vw, 54px);
}

.footer-columns h3 {
  margin: 0 0 22px;
  color: rgba(16, 17, 20, 0.36);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin-top: 16px;
  color: rgba(16, 17, 20, 0.78);
  font-size: 1rem;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-columns a:hover,
.footer-bottom a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  z-index: 0;
  color: rgba(48, 48, 48, 0.055);
  font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
  font-size: clamp(7rem, 21vw, 17rem);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.025em;
  -webkit-text-stroke: 0.008em rgba(48, 48, 48, 0.045);
  pointer-events: none;
}

.footer-bottom {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 17, 20, 0.1);
  color: rgba(16, 17, 20, 0.42);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(16, 17, 20, 0.48);
  transition: color 180ms ease, transform 180ms ease;
}

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

@keyframes projectCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@keyframes visionCardIn {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(24px) scale(0.96);
  }

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

@keyframes visionRailIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

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

@keyframes processStepIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

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

@keyframes processRailFlow {

  0%,
  100% {
    transform: translateX(-55%);
  }

  50% {
    transform: translateX(55%);
  }
}

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

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    transform-origin: top right;
  }
}

@keyframes menuCtaSweep {

  0%,
  38% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes menuCtaGlow {

  0%,
  100% {
    box-shadow: 0 18px 40px rgba(16, 17, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  50% {
    box-shadow: 0 20px 48px rgba(16, 17, 20, 0.28), 0 0 0 1px rgba(247, 201, 72, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

@keyframes livePulse {
  50% {
    transform: scale(0.82);
    opacity: 0.68;
  }
}

@keyframes barFloat {
  50% {
    transform: scaleY(0.78);
  }
}

@keyframes serviceStroke {
  to {
    --service-angle: 360deg;
  }
}

@keyframes metricSweep {
  50% {
    filter: brightness(1.25);
    transform: translateX(22%);
  }
}

@keyframes titleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-0.035em) rotate(0.6deg);
  }
}

@keyframes titleAura {

  0%,
  100% {
    opacity: 0.38;
    filter: blur(0);
    transform: translate3d(0.03em, 0.035em, -1px) scale(1.01);
  }

  35% {
    opacity: 0.58;
    filter: blur(0.004em);
    transform: translate3d(-0.018em, 0.055em, -1px) scale(1.018);
  }

  70% {
    opacity: 0.44;
    filter: blur(0.002em);
    transform: translate3d(0.048em, 0.018em, -1px) scale(1.012);
  }
}

@keyframes curtainTextIn {
  0% {
    opacity: 0.42;
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes codeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .hero-text {
    font-size: clamp(1.06rem, 1.9vw, 1.34rem);
    gap: 6px 7px;
  }

  .process-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
    padding-bottom: 178px;
  }

  .process-rail {
    display: none;
  }

  .process-step,
  .process-step:nth-of-type(even) {
    min-height: 180px;
    padding-top: 0;
  }

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

  .process-detail {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .process-detail p {
    grid-column: 1 / -1;
  }

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

  .service-card:nth-child(n) {
    grid-column: span 1;
  }

  .vision-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .vision-main {
    min-width: 0;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 0 22px;
  }

  .vision-main h2 {
    max-width: 780px;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 0.98;
  }

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

@media (max-width: 920px) {
  .site-header {
    --mobile-menu-edge: 16px;
    --mobile-menu-width: min(286px, calc(100vw - (var(--mobile-menu-edge) * 2)));
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: fixed;
    padding-right: 8px;
    border-radius: 24px;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
    padding-right: 54px;
    gap: 6px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .nav-links,
  .nav-cta {
    position: fixed;
    left: auto;
    right: var(--mobile-menu-edge);
    width: var(--mobile-menu-width);
    max-width: var(--mobile-menu-width);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
      radial-gradient(circle at 16% 0%, rgba(24, 183, 255, 0.18), transparent 34%),
      radial-gradient(circle at 100% 100%, rgba(255, 93, 143, 0.12), transparent 38%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34));
    -webkit-backdrop-filter: blur(35px) saturate(1.34);
    backdrop-filter: blur(35px) saturate(1.34);
    transform: none;
  }

  .nav-links {
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(16, 17, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .nav-links a {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 3px 7px;
    min-height: 52px;
    align-items: center;
    padding: 8px 10px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 15px;
    color: rgba(16, 17, 20, 0.86);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.22)),
      rgba(255, 255, 255, 0.18);
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .nav-link-icon {
    display: grid;
    grid-row: span 2;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 38%),
      #101114;
    box-shadow: inset 0 -10px 18px rgba(24, 183, 255, 0.26), 0 10px 22px rgba(16, 17, 20, 0.12);
  }

  .nav-link-icon svg {
    width: 17px;
    height: 17px;
  }

  .nav-links a span,
  .nav-links small {
    min-width: 0;
  }

  .nav-links a span:not(.nav-link-icon) {
    display: block;
    grid-column: 2;
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .nav-links small {
    display: block;
    grid-column: 2;
    margin-top: -2px;
    color: rgba(102, 109, 121, 0.82);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.05;
  }

  .nav-links small.nav-subline {
    display: inline-flex;
    max-width: 100%;
    align-items: baseline;
    gap: 1px;
    overflow: visible;
    white-space: nowrap;
    font-size: 0.68rem;
    line-height: 1;
  }

  .nav-links small.nav-subline .asmx-text {
    display: inline-block;
    flex: 0 0 auto;
    font-family: "Tamrin", Audiowide, Sora, system-ui, sans-serif;
    font-size: inherit;
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 1;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: rgba(16, 17, 20, 0.12);
    color: #101114;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
      rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 28px rgba(16, 17, 20, 0.1);
    transform: translateX(-3px);
  }

  .nav-cta {
    top: 354px;
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 42px;
    padding-inline: 14px;
    border-radius: 15px;
    background:
      linear-gradient(135deg, #262626, #353535);
    box-shadow: 0 18px 40px rgba(16, 17, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: menuCtaGlow 2.2s ease-in-out infinite;
  }

  .nav-cta::after {
    position: absolute;
    inset: -40% auto -40% -35%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-18deg);
    animation: menuCtaSweep 2.8s ease-in-out infinite;
    content: "";
  }

  .menu-button {
    position: absolute;
    top: 50%;
    right: 5px;
    display: grid;
    grid-column: 2;
    justify-self: end;
    z-index: 24;
    transform: translateY(-50%);
  }

  .menu-button:hover,
  body.menu-open .menu-button,
  body.menu-open .menu-button:hover {
    transform: translateY(-50%);
  }

  body.menu-open .nav-links,
  body.menu-open .nav-cta {
    display: flex;
    animation: mobileMenuIn 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .section-heading,
  .hero-grid,
  .code-shell,
  .project-grid,
  .team-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

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

  .vision-shell,
  .vision-points {
    grid-template-columns: 1fr;
  }

  .vision-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vision-main .eyebrow,
  .vision-main h2 {
    grid-column: 1;
  }

  .vision-main .eyebrow {
    grid-row: auto;
    margin: 0 0 14px;
  }

  .vision-main h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2.45rem);
    line-height: 1;
  }

  .vision-main>p:last-of-type {
    grid-column: 1;
  }

  .vision-points article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .service-card,
  .service-card:nth-child(n) {
    grid-column: span 1;
    min-height: auto;
    padding: 12px;
    transform: none !important;
    transform-style: flat;
    transition: box-shadow 180ms ease;
  }

  .service-card::before {
    display: none;
    animation: none;
  }

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

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .service-card.is-expanded .service-worklist {
    max-height: 360px;
  }

  .project-form {
    gap: 12px;
    padding: 16px;
  }

  .field span {
    font-size: 0.82rem;
  }

  .hero-console {
    min-height: 330px;
  }

  .code-stage {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 238px;
  }

  .editor-topbar {
    grid-template-columns: 1fr;
    min-height: 46px;
    padding: 8px;
  }

  .window-dots {
    display: none;
  }

  .editor-tabs {
    gap: 4px;
  }

  .editor-tab {
    min-height: 34px;
    gap: 6px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .editor-tab svg {
    width: 14px;
    height: 14px;
  }

  .line-numbers {
    padding-top: 12px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .code-panel {
    max-height: 238px;
    padding: 12px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .code-caret {
    top: 12px;
    left: 48px;
    height: 1.55em;
  }

  .code-insights {
    align-content: start;
    padding: 14px;
  }

  .code-insights h3 {
    font-size: 1.18rem;
  }

  .insight-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .insight-list span {
    min-height: 38px;
    gap: 6px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .insight-list svg {
    width: 15px;
    height: 15px;
  }

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

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

  .site-footer {
    width: min(100% - 24px, 1120px);
    margin-bottom: 28px;
    border-radius: 8px;
  }

  .footer-inner {
    min-height: auto;
    padding: 34px 22px 22px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.45rem;
  }

  .footer-brand p {
    max-width: 440px;
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .footer-brand p strong {
    white-space: normal;
  }

  .footer-socials {
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    border-color: rgba(16, 17, 20, 0.08);
    background: rgba(255, 255, 255, 0.62);
  }

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

  .footer-columns>div {
    padding: 14px;
    border: 1px solid rgba(16, 17, 20, 0.07);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.48);
  }

  .footer-columns h3 {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .footer-columns a {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .footer-wordmark {
    left: 50%;
    right: auto;
    bottom: 74px;
    transform: translateX(-50%);
    font-size: clamp(5.8rem, 26vw, 9rem);
    opacity: 0.42;
  }

  .footer-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
    gap: 12px;
  }

  .founder-window {
    grid-template-columns: 1fr;
    width: min(92vw, 720px);
  }

  .project-window {
    grid-template-columns: 1fr;
    width: min(92vw, 720px);
    padding: 10px;
    overflow-y: auto;
  }

  .project-modal-copy {
    padding: 46px 8px 12px;
  }

  .project-shot-frame {
    height: min(58vh, 520px);
  }

  .founder-window-copy {
    padding: 0 4px 8px;
  }

  .founder-window-visual {
    min-height: 240px;
  }

  .calendar-day {
    min-height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    --mobile-menu-edge: 12px;
    --mobile-menu-width: min(286px, calc(100vw - 24px));
    padding-right: 8px;
  }

  .founder-modal {
    align-items: center;
    justify-items: center;
    padding: 12px;
  }

  .founder-window {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    margin: auto;
    justify-self: center;
    align-self: center;
    padding: 10px;
  }

  @supports not (height: 100dvh) {
    .founder-window {
      max-height: calc(100vh - 24px);
    }
  }

  .section-band {
    width: min(100% - 24px, 1120px);
  }

  .section-heading {
    gap: 12px;
    padding-top: 50px;
  }

  .process {
    padding-top: 22px;
  }

  .process-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    padding: 12px 12px 174px;
    border-radius: 14px;
  }

  .process-step,
  .process-step:nth-of-type(even) {
    min-height: 142px;
    gap: 7px;
    padding: 0 4px;
  }

  .process-orb {
    width: 58px;
    height: 58px;
    box-shadow: 0 12px 26px rgba(16, 17, 20, 0.08), inset 0 0 0 6px rgba(255, 255, 255, 0.48);
  }

  .process-orb::before {
    inset: -6px;
    border-width: 6px;
  }

  .process-orb svg {
    width: 22px;
    height: 22px;
  }

  .process-kicker {
    font-size: 0.58rem;
  }

  .process-step strong {
    max-width: 125px;
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .process-detail {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 11px;
    border-radius: 11px;
  }

  .process-detail span {
    font-size: 0.62rem;
  }

  .process-detail h3 {
    font-size: 0.95rem;
  }

  .process-detail p {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .hero {
    min-height: 92vh;
    padding: calc(108px + 3.5rem) 0 32px;
  }

  .hero-grid {
    transform: translateY(-2px);
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .hero-title {
    letter-spacing: -0.06em;
  }

  .hero-console {
    min-height: 290px;
    padding: 11px;
  }

  .code-lab {
    padding-top: 22px;
  }

  .service-grid {
    gap: 9px;
    margin-top: 16px;
  }

  .service-card,
  .service-card:nth-child(n) {
    min-height: 136px;
    padding: 10px;
    border-radius: 7px;
    transform: none !important;
    transform-style: flat;
  }

  .service-card::before {
    display: none;
    animation: none;
    background: none;
  }

  .service-card::after {
    inset: 0;
    border-radius: inherit;
  }

  .service-card h3 {
    margin-top: 12px;
    font-size: clamp(0.86rem, 4.4vw, 1rem);
    line-height: 1.05;
  }

  .service-card h3::after {
    width: 24px;
    height: 2px;
    margin-top: 7px;
  }

  .service-card p {
    margin-top: 8px;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .service-toggle {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }

  .service-toggle svg {
    width: 14px;
    height: 14px;
  }

  .service-card.is-expanded .service-worklist {
    max-height: 360px;
    margin-top: 12px;
  }

  .service-worklist {
    gap: 7px;
  }

  .service-worklist>span {
    min-height: 21px;
    padding: 0 7px;
    font-size: 0.58rem;
  }

  .service-worklist ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-worklist li {
    grid-template-columns: 6px minmax(0, 1fr);
    gap: 7px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 0.68rem;
  }

  .service-worklist li::before {
    width: 6px;
    height: 6px;
  }

  .vision {
    padding-top: 16px;
  }

  .vision-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
  }

  .vision-main {
    min-height: 250px;
    padding: 0;
  }

  .vision-main h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.03;
  }

  .vision-main>p:last-of-type {
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .vision-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -1px;
  }

  .vision-points article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 11px 11px 16px;
    min-height: auto;
  }

  .vision-points article::after {
    inset-inline: 18px;
    bottom: 0;
  }

  .vision-card-pill {
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.58rem;
    line-height: 20px;
  }

  .vision-points i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .vision-points svg {
    width: 16px;
    height: 16px;
  }

  .vision-points h3 {
    font-size: 0.92rem;
  }

  .vision-points p {
    margin-top: 0;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .icon::after {
    inset: -5px;
    filter: blur(10px);
  }

  .icon svg {
    width: 17px;
    height: 17px;
  }

  .code-shell {
    gap: 10px;
  }

  .editor-window,
  .code-insights {
    border-radius: 14px;
  }

  .bento-mock-nodes {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .node-item {
    padding: 6px 12px;
    font-size: 0.78rem;
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .node-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .editor-topbar {
    min-height: 40px;
    padding: 6px;
  }

  .editor-tab {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .editor-tab svg {
    width: 12px;
    height: 12px;
  }

  .code-stage {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 205px;
  }

  .line-numbers {
    padding-top: 10px;
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .code-panel {
    max-height: 205px;
    padding: 10px;
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .code-caret {
    top: 10px;
    left: 42px;
    height: 1.5em;
  }

  .code-insights {
    padding: 12px;
  }

  .code-insights h3 {
    font-size: 1rem;
  }

  .insight-list {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
  }

  .insight-list span {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .hero-text {
    flex-wrap: nowrap;
    gap: 4px;
    font-size: clamp(0.86rem, 3.45vw, 0.92rem);
    line-height: 1.18;
    white-space: nowrap;
  }

  .hero-text span {
    padding-bottom: 4px;
  }

  .hero-text span::after {
    height: 4px;
  }

  .console-header {
    min-height: 34px;
  }

  .console-header strong {
    font-size: 1.3rem;
  }

  .console-track,
  .console-pipeline,
  .graph-strip,
  .console-tiles {
    margin-top: 8px;
  }

  .console-tile {
    min-height: 56px;
  }

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

  .metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    margin-top: 36px;
  }

  .metrics-strip div {
    display: block;
    min-width: 0;
    min-height: 82px;
    padding: 13px 30px 11px 10px;
    text-align: left;
    border-radius: 10px;
  }

  .metrics-strip div::before {
    height: 2px;
  }

  .metrics-strip div::after {
    top: 10px;
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .metrics-strip div>svg {
    top: 15.5px;
    right: 13.5px;
    width: 13px;
    height: 13px;
  }

  .metrics-strip div:nth-child(3)>svg {
    right: 13.5px;
  }

  .metrics-strip strong {
    font-size: 1.48rem;
  }

  .metrics-strip span {
    margin-top: 5px;
    font-size: 0.64rem;
    line-height: 1.08;
  }

  .service-grid,
  .project-grid,
  .team-grid,
  .booking-panel,
  .project-form {
    margin-top: 22px;
  }

  .booking-panel {
    gap: 10px;
  }

  .scheduler,
  .project-form {
    padding: 10px;
  }

  .scheduler-head {
    gap: 8px;
  }

  .scheduler h3,
  .project-form h3 {
    font-size: 1.12rem;
  }

  .scheduler-copy {
    margin-top: 7px;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .call-meta {
    gap: 5px;
  }

  .meet-logo {
    width: 28px;
    height: 22px;
  }

  .call-badge {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .calendar-module {
    margin-top: 8px;
    padding: 7px;
  }

  .calendar-top {
    grid-template-columns: 30px 1fr 30px;
    gap: 5px;
    margin-bottom: 7px;
  }

  .calendar-top strong {
    font-size: 0.82rem;
  }

  .calendar-nav {
    min-height: 30px;
  }

  .calendar-weekdays {
    gap: 4px;
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day {
    min-height: 28px;
    border-radius: 6px;
    font-size: 0.7rem;
  }

  .time-grid {
    gap: 6px;
    margin-top: 8px;
  }

  .time-chip {
    min-height: 32px;
    font-size: 0.7rem;
  }

  .selected-slot {
    margin-top: 8px;
    padding: 8px;
    gap: 8px;
  }

  .selected-slot span {
    font-size: 0.62rem;
  }

  .selected-slot strong {
    font-size: 0.72rem;
  }

  .project-form {
    gap: 10px;
  }

  input,
  select {
    min-height: 38px;
  }

  textarea {
    min-height: 88px;
  }

  .code-lab {
    padding-top: 12px;
  }

  .stack-marquee {
    margin-top: 24px;
  }

  .stack-track {
    gap: 7px;
    padding: 12px 0;
    animation-duration: 24s;
  }

  .stack-track span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
    font-weight: 850;
  }

  .contact {
    min-height: auto;
    padding: 48px 0;
  }

  .footer-inner {
    padding: 28px 16px 18px;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-columns {
    gap: 10px;
  }

  .footer-columns>div {
    padding: 12px;
  }

  .footer-wordmark {
    bottom: 92px;
    font-size: clamp(5rem, 28vw, 8rem);
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .founder-social-actions {
    gap: 7px;
    margin-top: 16px;
  }

  .founder-social-actions a {
    min-height: 34px;
    gap: 6px;
    padding: 0 10px 0 6px;
    font-size: 0.76rem;
    letter-spacing: -0.01em;
  }

  .social-logo {
    width: 24px;
    height: 24px;
  }

  .founder-social-actions svg {
    width: 14px;
    height: 14px;
  }

  .linkedin-logo {
    font-size: 0.76rem;
  }

  .avatar {
    min-height: 178px;
  }

  .team-grid {
    gap: 12px;
    margin-top: 16px;
  }

  .team-card {
    padding: 10px;
    border-radius: 7px;
  }

  .team-role {
    min-height: 24px;
    margin-top: 10px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .team-card h3 {
    margin-top: 8px;
    font-size: clamp(1.1rem, 6vw, 1.45rem);
    line-height: 1;
  }

  .team-card p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .team-pills {
    gap: 5px;
    margin-top: 9px;
  }

  .team-pills span {
    min-height: 23px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .avatar span {
    right: 10px;
    bottom: 10px;
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .project-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-card {
    padding: 5px;
    border-radius: 7px;
  }

  .project-visual {
    aspect-ratio: 3 / 2;
    border-radius: 5px;
    background: #fff;
  }

  .project-visual img,
  .project-visual video,
  .project-card:hover .project-visual img,
  .project-card.is-touch-hover .project-visual img,
  .project-card:focus-visible .project-visual img,
  .project-card:hover .project-visual video,
  .project-card.is-touch-hover .project-visual video,
  .project-card:focus-visible .project-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none;
  }

  .project-copy {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 6px 6px 6px 10px;
    border-radius: 6px;
    backdrop-filter: blur(16px) saturate(1.2);
  }

  .project-copy::before {
    inset: 7px auto 7px 5px;
    width: 2px;
  }

  .project-card h3 {
    margin-bottom: 2px;
    padding: 0 2px;
    font-size: clamp(0.78rem, 3.65vw, 0.92rem);
    line-height: 1.08;
  }

  .project-copy span {
    display: -webkit-box;
    padding: 0;
    overflow: hidden;
    font-size: 0.66rem;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .project-reveal {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding: 8px;
    border-radius: 14px;
    text-align: center;
  }

  .project-reveal span {
    font-size: 0.72rem;
  }

  .project-reveal-button {
    min-height: 38px;
    width: 100%;
    font-size: 0.8rem;
  }

  .service-hero-stats.metrics-strip {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

.nav-cta,
.button,
.console-action,
.project-reveal-button,
.project-modal-link,
.founder-social-actions a,
.calendar-nav,
.calendar-day,
.time-chip,
.submit-button,
.project-close,
.founder-close,
.footer-socials a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.nav-cta::before,
.button::before,
.console-action::before,
.project-reveal-button::before,
.project-modal-link::before,
.founder-social-actions a::before,
.calendar-nav::before,
.calendar-day::before,
.time-chip::before,
.submit-button::before,
.project-close::before,
.founder-close::before,
.footer-socials a::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(180deg, #f7c948 0%, #18b7ff 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
  transform: translateY(105%);
  transition: transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta::after,
.button::after,
.console-action::after,
.project-reveal-button::after,
.project-modal-link::after,
.founder-social-actions a::after,
.calendar-nav::after,
.submit-button::after,
.project-close::after,
.founder-close::after,
.footer-socials a::after {
  content: "";
  display: none;
}

.nav-cta>*,
.button>*,
.console-action>*,
.project-reveal-button>*,
.project-modal-link>*,
.founder-social-actions a>*,
.calendar-nav>*,
.calendar-day>*,
.time-chip>*,
.submit-button>*,
.project-close>*,
.founder-close>*,
.footer-socials a>* {
  position: relative;
  z-index: 1;
}

.button-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  transition: color 220ms ease, opacity 220ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-label::after {
  position: absolute;
  right: 4%;
  bottom: -0.28em;
  left: 4%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  clip-path: inset(0 50% 0 50% round 999px);
  transition: opacity 220ms ease, clip-path 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover,
.button:hover,
.console-action:hover,
.project-reveal-button:hover,
.project-modal-link:hover,
.founder-social-actions a:hover,
.calendar-nav:not(:disabled):hover,
.calendar-day:hover,
.time-chip:hover,
.submit-button:hover:not(:disabled),
.project-close:hover,
.founder-close:hover,
.footer-socials a:hover,
.nav-cta:focus-visible,
.button:focus-visible,
.console-action:focus-visible,
.project-reveal-button:focus-visible,
.project-modal-link:focus-visible,
.founder-social-actions a:focus-visible,
.calendar-nav:not(:disabled):focus-visible,
.calendar-day:focus-visible,
.time-chip:focus-visible,
.submit-button:focus-visible:not(:disabled),
.project-close:focus-visible,
.founder-close:focus-visible,
.footer-socials a:focus-visible {
  color: #101114;
  letter-spacing: 0;
  transform: translateY(-2px) scale(1.008);
  text-shadow: none;
  box-shadow:
    0 16px 34px rgba(16, 17, 20, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 0 0 5px rgba(24, 183, 255, 0.035);
}

.nav-cta:hover::before,
.button:hover::before,
.console-action:hover::before,
.project-reveal-button:hover::before,
.project-modal-link:hover::before,
.founder-social-actions a:hover::before,
.calendar-nav:not(:disabled):hover::before,
.calendar-day:hover::before,
.time-chip:hover::before,
.submit-button:hover:not(:disabled)::before,
.project-close:hover::before,
.founder-close:hover::before,
.footer-socials a:hover::before,
.nav-cta:focus-visible::before,
.button:focus-visible::before,
.console-action:focus-visible::before,
.project-reveal-button:focus-visible::before,
.project-modal-link:focus-visible::before,
.founder-social-actions a:focus-visible::before,
.calendar-nav:not(:disabled):focus-visible::before,
.calendar-day:focus-visible::before,
.time-chip:focus-visible::before,
.submit-button:focus-visible:not(:disabled)::before,
.project-close:focus-visible::before,
.founder-close:focus-visible::before,
.footer-socials a:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta:hover::after,
.button:hover::after,
.console-action:hover::after,
.project-reveal-button:hover::after,
.project-modal-link:hover::after,
.founder-social-actions a:hover::after,
.calendar-nav:not(:disabled):hover::after,
.submit-button:hover:not(:disabled)::after,
.project-close:hover::after,
.founder-close:hover::after,
.footer-socials a:hover::after,
.nav-cta:focus-visible::after,
.button:focus-visible::after,
.console-action:focus-visible::after,
.project-reveal-button:focus-visible::after,
.project-modal-link:focus-visible::after,
.founder-social-actions a:focus-visible::after,
.calendar-nav:not(:disabled):focus-visible::after,
.submit-button:focus-visible:not(:disabled)::after,
.project-close:focus-visible::after,
.founder-close:focus-visible::after,
.footer-socials a:focus-visible::after {
  opacity: 0;
}

.nav-cta:hover .button-label::after,
.button:hover .button-label::after,
.console-action:hover .button-label::after,
.project-reveal-button:hover .button-label::after,
.project-modal-link:hover .button-label::after,
.founder-social-actions a:hover .button-label::after,
.calendar-nav:not(:disabled):hover .button-label::after,
.submit-button:hover:not(:disabled) .button-label::after,
.project-close:hover .button-label::after,
.founder-close:hover .button-label::after,
.footer-socials a:hover .button-label::after,
.nav-cta:focus-visible .button-label::after,
.button:focus-visible .button-label::after,
.console-action:focus-visible .button-label::after,
.project-reveal-button:focus-visible .button-label::after,
.project-modal-link:focus-visible .button-label::after,
.founder-social-actions a:focus-visible .button-label::after,
.calendar-nav:not(:disabled):focus-visible .button-label::after,
.submit-button:focus-visible:not(:disabled) .button-label::after,
.project-close:focus-visible .button-label::after,
.founder-close:focus-visible .button-label::after,
.footer-socials a:focus-visible .button-label::after {
  opacity: 0.72;
  clip-path: inset(0 0 0 0 round 999px);
}

.nav-cta:hover .button-label,
.button:hover .button-label,
.console-action:hover .button-label,
.project-reveal-button:hover .button-label,
.project-modal-link:hover .button-label,
.founder-social-actions a:hover .button-label,
.calendar-nav:not(:disabled):hover .button-label,
.submit-button:hover:not(:disabled) .button-label,
.project-close:hover .button-label,
.founder-close:hover .button-label,
.footer-socials a:hover .button-label,
.nav-cta:focus-visible .button-label,
.button:focus-visible .button-label,
.console-action:focus-visible .button-label,
.project-reveal-button:focus-visible .button-label,
.project-modal-link:focus-visible .button-label,
.founder-social-actions a:focus-visible .button-label,
.calendar-nav:not(:disabled):focus-visible .button-label,
.submit-button:focus-visible:not(:disabled) .button-label,
.project-close:focus-visible .button-label,
.founder-close:focus-visible .button-label,
.footer-socials a:focus-visible .button-label {
  animation: curtainTextIn 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.calendar-day:hover,
.calendar-day:focus-visible,
.time-chip:hover,
.time-chip:focus-visible {
  color: #fff;
  background: #101114;
}

.calendar-day:hover .button-label,
.calendar-day:focus-visible .button-label,
.time-chip:hover .button-label,
.time-chip:focus-visible .button-label {
  color: #fff;
  animation: none;
}

.calendar-day .button-label::after,
.time-chip .button-label::after {
  opacity: 0;
  clip-path: inset(0 50% 0 50% round 999px);
}

.project-reveal-button {
  color: #fff;
  background: #101114;
}

.project-reveal-button .button-label,
.project-reveal-button svg {
  color: inherit;
  opacity: 1;
  visibility: visible;
}

.project-reveal-button:hover,
.project-reveal-button:focus-visible {
  color: #101114;
}

.project-reveal-button .button-label,
.project-reveal-button svg {
  position: relative;
  z-index: 3;
}

.nav-cta:active,
.button:active,
.console-action:active,
.project-reveal-button:active,
.project-modal-link:active,
.founder-social-actions a:active,
.calendar-nav:not(:disabled):active,
.calendar-day:active,
.time-chip:active,
.submit-button:active:not(:disabled),
.project-close:active,
.founder-close:active,
.footer-socials a:active {
  transform: translateY(1px) scale(0.982);
  box-shadow:
    0 8px 16px rgba(16, 17, 20, 0.16),
    0 0 0 4px rgba(16, 17, 20, 0.04);
}

.project-gallery-button:hover:not(:disabled) {
  color: #fff;
  background: rgba(16, 17, 20, 0.88);
  opacity: 1;
  transform: translateY(-50%) scale(1.025);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.26), 0 0 0 5px rgba(16, 17, 20, 0.05);
}

.project-gallery-button:active:not(:disabled) {
  transform: translateY(-50%) scale(0.965);
  box-shadow: 0 8px 18px rgba(16, 17, 20, 0.2), 0 0 0 8px rgba(24, 183, 255, 0.08);
}

.project-close,
.founder-close {
  position: absolute;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  box-shadow:
    0 16px 34px rgba(16, 17, 20, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 0 0 5px rgba(24, 183, 255, 0.035);
}

.hero-actions .button.ghost,
.hero-actions .button.ghost:hover,
.hero-actions .button.ghost:focus-visible {
  border-color: rgba(16, 17, 20, 0.11);
}

.hero-actions .button.ghost:hover,
.hero-actions .button.ghost:focus-visible {
  color: #101114;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 34px rgba(16, 17, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.74) inset,
    0 0 0 5px rgba(24, 183, 255, 0.03);
}

.service-grid,
.team-grid {
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.service-card,
.team-card {
  border-color: transparent;
}

.service-card::before {
  display: none !important;
}

.service-card::after {
  inset: 0;
  border-radius: inherit;
}

.service-card.is-expanded,
.service-card.is-expanded:hover,
.service-card.is-expanded.is-touch-hover,
.service-card.is-expanded:focus-within {
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06) !important;
}

.service-card.is-expanded .service-worklist {
  filter: none;
}

.team-card:hover,
.team-card.is-touch-hover,
.team-card:focus-visible {
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.05) !important;
}

@media (hover: none),
(pointer: coarse) {
  .service-card {
    transform: none !important;
    transform-style: flat;
    will-change: auto;
  }

  .service-card:hover,
  .service-card.is-touch-hover,
  .service-card:focus-within,
  .service-card.is-expanded {
    box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
  }

  .team-card,
  .team-card:hover,
  .team-card.is-touch-hover,
  .team-card:focus-visible {
    box-shadow: 0 10px 24px rgba(16, 17, 20, 0.05) !important;
  }

  .service-card:hover .icon,
  .service-card.is-touch-hover .icon,
  .service-card:focus-within .icon {
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-cta {
    position: fixed;
    top: 354px;
    right: var(--mobile-menu-edge);
    left: auto;
    width: var(--mobile-menu-width);
    max-width: var(--mobile-menu-width);
    box-sizing: border-box;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.tech-group-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(16, 17, 20, 0.05);
}

.tech-group-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.tech-group-card h4 svg {
  width: 18px;
  height: 18px;
  color: var(--srv-accent, var(--cyan));
}

.tech-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 9px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(16, 17, 20, 0.04);
  transition: transform 140ms ease, border-color 140ms ease;
}

.tech-pill:hover {
  transform: translateY(-2px);
  border-color: var(--srv-accent, var(--cyan));
}

/* Deliverables / Scope Grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
}

.deliverable-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(16, 17, 20, 0.05);
}

.deliverable-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 1.14rem;
  font-weight: 800;
}

.deliverable-card h4 svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.deliverable-card p {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.54;
  color: rgba(16, 17, 20, 0.76);
}

.deliverable-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.deliverable-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 750;
  color: rgba(16, 17, 20, 0.84);
}

.deliverable-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  font-size: 0.88rem;
}

/* Explore Other Services Strip */
.other-services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.other-service-link {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(16, 17, 20, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
}

.other-service-link:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 17, 20, 0.2);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.1);
}

.other-service-link svg {
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}

.other-service-link strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.other-service-link span {
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Service CTA Box */
.service-cta-card {
  position: relative;
  overflow: hidden;
  margin-top: 68px;
  padding: 32px 48px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--srv-accent, var(--cyan)) 30%, transparent), transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(255, 93, 143, 0.18), transparent 38%),
    linear-gradient(145deg, #101114, #1c212d);
  color: #fff;
  box-shadow: 0 32px 90px rgba(16, 17, 20, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.service-cta-card .cta-card-content {
  max-width: 65%;
  text-align: left;
}

.service-cta-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 8px;
  margin-top: 0;
}

.service-cta-card p {
  max-width: 100%;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.service-cta-card .button.primary {
  background: var(--yellow);
  color: #101114;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-cta-card .button.primary:hover {
  background: #ffe082;
  box-shadow: 0 16px 40px rgba(247, 201, 72, 0.35);
}

@media (max-width: 768px) {
  .service-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
  }
  
  .service-cta-card .cta-card-content {
    max-width: 100%;
  }
}

/* Service Pages Custom Layouts */
.service-page-main {
  position: relative;
  width: 100%;
}

.service-hero-detail {
  position: relative;
  padding: clamp(100px, 11vw, 120px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--srv-accent) 14%, transparent), transparent 70%);
}

.service-breadcrumb {
  width: 100%;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.service-breadcrumb a {
  transition: color 150ms ease;
}

.service-breadcrumb a:hover {
  color: var(--srv-accent);
}

.service-breadcrumb .separator {
  color: rgba(16, 17, 20, 0.2);
}

.service-breadcrumb .current {
  color: var(--ink);
  font-weight: 700;
}

.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--srv-accent);
}

.service-hero-detail h1 {
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.14;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.service-hero-detail h1 .asmx-text {
  color: var(--srv-accent);
  display: inline;
}

.hero-description {
  max-width: 680px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.54;
  color: var(--muted);
  margin: 0 0 32px;
}

.service-hero-detail .hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-hero-stats.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(16, 17, 20, 0.08);
  padding-top: 40px;
}

.service-hero-stats.metrics-strip div {
  min-width: 0;
  min-height: 116px;
  text-align: left;
}

@media (max-width: 920px) {
  .service-hero-stats.metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Capabilities Grid & Bento Accordion Layout */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pillar-grid article,
.pillar-card {
  grid-column: span 1;
}

.pillar-grid article.is-expanded,
.pillar-card.is-expanded {
  grid-column: span 2 !important;
}

.pillar-grid article.is-collapsed,
.pillar-card.is-collapsed {
  grid-column: span 1 !important;
}

/* Fallback before JS initializes */
.pillar-grid:not(.js-accordion-ready) article:nth-child(1),
.pillar-grid:not(.js-accordion-ready) article:nth-child(4) {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar-card.is-expanded {
    grid-column: span 2 !important;
  }
  .pillar-card.is-collapsed {
    grid-column: span 1 !important;
  }
}

@media (max-width: 680px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card,
  .pillar-card.is-expanded,
  .pillar-card.is-collapsed {
    grid-column: span 1 !important;
  }
}

.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(16, 17, 20, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.pillar-card:hover {
  background: radial-gradient(240px circle at top left, color-mix(in srgb, var(--srv-accent) 18%, transparent) 0%, transparent 100%), rgba(255, 255, 255, 0.94);
  border-color: color-mix(in srgb, var(--srv-accent) 45%, transparent);
  box-shadow: 0 20px 40px rgba(16, 17, 20, 0.07);
  transform: translateY(-3px);
}

.pillar-card.is-expanded {
  background: radial-gradient(340px circle at top left, color-mix(in srgb, var(--srv-accent) 15%, transparent) 0%, transparent 100%), rgba(255, 255, 255, 0.96);
  border-color: color-mix(in srgb, var(--srv-accent) 40%, transparent);
  box-shadow: 0 16px 36px rgba(16, 17, 20, 0.05);
}

.pillar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pillar-card .pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--srv-accent) 14%, #ffffff), color-mix(in srgb, var(--srv-accent) 6%, #ffffff));
  border: 1px solid color-mix(in srgb, var(--srv-accent) 22%, rgba(16, 17, 20, 0.08));
  color: var(--srv-accent);
  margin-bottom: 14px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--srv-accent) 12%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-icon,
.pillar-card.is-expanded .pillar-icon {
  background: var(--srv-accent);
  border-color: var(--srv-accent);
  color: #ffffff;
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--srv-accent) 42%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pillar-card .pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.pillar-expand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(16, 17, 20, 0.04);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s ease;
}

.pillar-expand-badge svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-expand-badge {
  background: color-mix(in srgb, var(--srv-accent) 10%, transparent);
  border-color: color-mix(in srgb, var(--srv-accent) 30%, transparent);
  color: var(--srv-accent);
}

.pillar-card.is-expanded .pillar-expand-badge {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pillar-card.is-expanded .pillar-expand-badge svg {
  color: var(--srv-accent);
}

.pillar-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.pillar-card p {
  font-size: 0.84rem;
  line-height: 1.48;
  color: var(--muted);
  margin: 0 0 10px;
}

.pillar-mock-container {
  margin-top: auto;
  padding-top: 8px;
  width: 100%;
}

.pillar-card.is-collapsed .pillar-mock-container {
  display: none !important;
}

.pillar-card.is-expanded .pillar-mock-container {
  display: block !important;
  animation: fadeInMock 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInMock {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pillar-footer {
  margin-top: 12px;
}

.pillar-card .pillar-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--srv-accent) 8%, rgba(16, 17, 20, 0.04));
  color: color-mix(in srgb, var(--srv-accent) 80%, var(--ink));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animation utilities & Lively Micro-Interactions for Bento Mockups */
.anim-spin-slow {
  animation: spinSlow 3s linear infinite !important;
  display: inline-block !important;
  transform-origin: center !important;
}

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

.anim-pulse {
  animation: pulseGlow 1.8s ease-in-out infinite !important;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 2px var(--srv-accent)); }
  50% { opacity: 0.7; transform: scale(1.18); filter: drop-shadow(0 0 8px var(--srv-accent)); }
}

.anim-float-x {
  animation: floatX 1.8s ease-in-out infinite alternate !important;
  display: inline-block !important;
}

@keyframes floatX {
  0% { transform: translateX(-3px); }
  100% { transform: translateX(3px); }
}

.anim-float-y {
  animation: floatY 1.8s ease-in-out infinite alternate !important;
  display: inline-block !important;
}

@keyframes floatY {
  0% { transform: translateY(2px); }
  100% { transform: translateY(-3px); }
}

.anim-electric {
  animation: electricFlash 1.4s infinite ease-in-out !important;
  color: #eab308 !important;
  display: inline-block !important;
}

@keyframes electricFlash {
  0%, 100% { filter: drop-shadow(0 0 2px #eab308); transform: scale(1); }
  50% { filter: drop-shadow(0 0 10px #facc15); transform: scale(1.22); }
}

.anim-shield-glow {
  color: #10b981 !important;
  display: inline-block !important;
  animation: shieldGlow 2s infinite ease-in-out !important;
}

@keyframes shieldGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.95)); transform: scale(1.18); }
}

/* Compact Bento Mockup Containers */
.bento-mock-nodes,
.bento-mock-booking,
.bento-mock-chart,
.bento-mock-perf,
.bento-mock-offline,
.bento-mock-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16, 17, 20, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  min-height: 44px;
  box-sizing: border-box;
  transition: border-color 0.4s ease;
}

.pillar-card:hover .bento-mock-nodes,
.pillar-card:hover .bento-mock-booking,
.pillar-card:hover .bento-mock-chart,
.pillar-card:hover .bento-mock-perf,
.pillar-card:hover .bento-mock-offline,
.pillar-card:hover .bento-mock-form,
.pillar-card.is-expanded .bento-mock-nodes,
.pillar-card.is-expanded .bento-mock-booking,
.pillar-card.is-expanded .bento-mock-chart,
.pillar-card.is-expanded .bento-mock-perf,
.pillar-card.is-expanded .bento-mock-offline,
.pillar-card.is-expanded .bento-mock-form {
  border-color: color-mix(in srgb, var(--srv-accent) 30%, transparent);
}

/* Card 1: Node items with active flow particle */
.node-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: 0 2px 6px rgba(16, 17, 20, 0.02);
  white-space: nowrap;
}

.node-item.active {
  border-color: var(--srv-accent);
  color: var(--ink);
  background: color-mix(in srgb, var(--srv-accent) 8%, #fff);
  box-shadow: 0 0 16px color-mix(in srgb, var(--srv-accent) 30%, transparent);
  animation: nodePulseGlow 2.4s infinite ease-in-out;
}

@keyframes nodePulseGlow {
  0%, 100% { box-shadow: 0 0 8px color-mix(in srgb, var(--srv-accent) 25%, transparent); }
  50% { box-shadow: 0 0 22px color-mix(in srgb, var(--srv-accent) 60%, transparent); }
}

.node-flow {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-family: monospace;
  padding: 0 4px;
}

.node-flow::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--srv-accent);
  box-shadow: 0 0 8px var(--srv-accent);
  animation: travelDot 1.6s infinite ease-in-out;
}

@keyframes travelDot {
  0% { left: 0%; opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Card 2: Booking slots with active shimmer */
.booking-slot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.slot-chip svg {
  width: 12px;
  height: 12px;
}

.slot-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--srv-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--srv-accent) 45%, transparent);
  animation: slotActiveShimmer 2.2s infinite ease-in-out;
}

@keyframes slotActiveShimmer {
  0%, 100% { box-shadow: 0 0 8px color-mix(in srgb, var(--srv-accent) 30%, transparent); transform: translateY(0); }
  50% { box-shadow: 0 0 20px color-mix(in srgb, var(--srv-accent) 70%, transparent); transform: translateY(-2px); }
}

.slot-chip.active svg {
  color: var(--srv-accent);
}

/* Card 3: Real-Time Animated Dancing Equalizer Bars */
.bento-mock-chart {
  justify-content: space-between;
}

.chart-metric-compact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-val {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.val-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.val-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.7rem;
  font-weight: 700;
}

.val-trend.positive {
  color: #10b981;
}

.val-trend svg {
  width: 11px;
  height: 11px;
}

.chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--srv-accent) 12%, transparent);
  color: var(--srv-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--srv-accent) 20%, transparent);
}

.chart-badge svg {
  width: 12px;
  height: 12px;
}

.chart-bars-preview {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 32px;
}

.bar-col {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.bar-fill {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: rgba(16, 17, 20, 0.12);
  transition: background 0.3s ease;
}

.bar-col:nth-child(1) .bar-fill { animation: eqDance1 1.3s infinite ease-in-out alternate; }
.bar-col:nth-child(2) .bar-fill { animation: eqDance2 0.95s infinite ease-in-out alternate; }
.bar-col:nth-child(3) .bar-fill { animation: eqDance3 1.5s infinite ease-in-out alternate; }
.bar-col:nth-child(4) .bar-fill { 
  background: var(--srv-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--srv-accent) 55%, transparent);
  animation: eqDance4 1.1s infinite ease-in-out alternate; 
}
.bar-col:nth-child(5) .bar-fill { animation: eqDance5 0.85s infinite ease-in-out alternate; }
.bar-col:nth-child(6) .bar-fill { 
  background: var(--srv-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--srv-accent) 55%, transparent);
  animation: eqDance6 1.4s infinite ease-in-out alternate; 
}

@keyframes eqDance1 { 0% { height: 35%; } 100% { height: 75%; } }
@keyframes eqDance2 { 0% { height: 60%; } 100% { height: 95%; } }
@keyframes eqDance3 { 0% { height: 30%; } 100% { height: 70%; } }
@keyframes eqDance4 { 0% { height: 75%; } 100% { height: 100%; } }
@keyframes eqDance5 { 0% { height: 40%; } 100% { height: 85%; } }
@keyframes eqDance6 { 0% { height: 65%; } 100% { height: 92%; } }

/* Card 4: Performance Compact */
.perf-compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.score-circle-compact {
  width: 36px;
  height: 36px;
  min-width: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  background: color-mix(in srgb, #10b981 12%, transparent);
  color: #10b981;
  border: 1.5px solid #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
  animation: scoreGlowPulse 2.2s infinite ease-in-out;
}

@keyframes scoreGlowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.3), inset 0 0 4px rgba(16, 185, 129, 0.2); transform: scale(1); }
  50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), inset 0 0 8px rgba(16, 185, 129, 0.4); transform: scale(1.08); }
}

.perf-metric-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perf-metric-info strong {
  font-size: 0.8rem;
  color: var(--ink);
}

.perf-metric-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--muted);
  font-family: monospace;
}

.perf-metric-info svg {
  width: 11px;
  height: 11px;
  color: #10b981;
}

.device-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.device-pill svg {
  width: 12px;
  height: 12px;
}

.device-pill.active {
  background: color-mix(in srgb, var(--srv-accent) 12%, transparent);
  border-color: var(--srv-accent);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 10px color-mix(in srgb, var(--srv-accent) 25%, transparent);
}

/* Card 5: Offline Compact with Multi-ring Beacon */
.offline-compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.offline-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 700;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: rippleBeacon 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes rippleBeacon {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.queue-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.queue-item svg {
  width: 12px;
  height: 12px;
}

.queue-item.pending {
  border-color: var(--srv-accent);
  background: color-mix(in srgb, var(--srv-accent) 6%, #fff);
  color: var(--ink);
  box-shadow: 0 0 12px color-mix(in srgb, var(--srv-accent) 30%, transparent);
}

.queue-item.pending svg {
  color: var(--srv-accent);
  animation: spinSlow 2.4s linear infinite !important;
  filter: drop-shadow(0 0 4px var(--srv-accent));
}

/* Card 6: Form Compact with Laser Scanner Sweep */
.form-compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.step-badge svg {
  width: 12px;
  height: 12px;
}

.step-badge.current {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-color: var(--srv-accent);
  color: #fff;
  box-shadow: 0 0 14px color-mix(in srgb, var(--srv-accent) 35%, transparent);
}

.step-badge.current::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--srv-accent) 55%, transparent), transparent);
  animation: laserSweep 2s infinite linear;
}

@keyframes laserSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

.step-badge.current svg {
  color: var(--srv-accent);
}

.security-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(16, 17, 20, 0.05);
  color: var(--ink);
}

.security-chip svg {
  width: 12px;
  height: 12px;
  color: #10b981;
}

/* Tech Stack Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* Home Service Cards Tour Button */
.tour-button {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transition: transform 150ms ease, background-color 150ms ease;
  width: fit-content;
}

.tour-button:hover {
  background: #1c212d;
  transform: translateY(-1px);
}

.tour-button svg {
  width: 14px;
  height: 14px;
}

/* Services Navbar Dropdown */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 20%;
  transform: translateX(-10%) translateY(5px);
  width: 760px;
  background: #ffffff;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(16, 17, 20, 0.12), 0 10px 30px rgba(16, 17, 20, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  will-change: opacity, transform;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.services-dropdown::before {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  content: "";
  background: transparent;
  z-index: 10;
}

.nav-dropdown-wrapper:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-10%) translateY(12px);
}

/* Split Pane Layout */
.dropdown-inner-split {
  display: grid;
  grid-template-columns: 500px 260px;
  align-items: stretch;
  border-radius: inherit;
  overflow: hidden;
}

.dropdown-main-pane {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dropdown-promo-pane {
  padding: 24px;
  background: #faf9f5;
  border-left: 1px solid rgba(16, 17, 20, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: 48px;
}

.promo-icon svg,
.promo-icon img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.promo-card h4 {
  font-size: 0.94rem;
  font-weight: 800;
  margin: 4px 0 0;
  color: var(--ink);
}

.promo-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.promo-cta:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

/* Left Pane Content */
.dropdown-header {
  border-bottom: 1px solid rgba(16, 17, 20, 0.05);
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-header strong {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.dropdown-header span {
  font-size: 0.76rem;
  color: var(--muted);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dropdown-grid > .dropdown-item:last-child:nth-child(odd) {
  grid-column: span 2;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dropdown-item .item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16, 17, 20, 0.04);
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dropdown-item .item-icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-item .item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dropdown-item .item-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.2s ease;
}

.dropdown-item .item-text span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.25;
}

/* Playful Hover Themes per Service in Dropdown */
.dropdown-item.srv-saas:hover {
  background: color-mix(in srgb, var(--yellow) 8%, transparent);
  border-color: color-mix(in srgb, var(--yellow) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-saas:hover .item-icon {
  background: var(--yellow);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-web:hover {
  background: color-mix(in srgb, var(--cyan) 8%, transparent);
  border-color: color-mix(in srgb, var(--cyan) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-web:hover .item-icon {
  background: var(--cyan);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-mobile:hover {
  background: color-mix(in srgb, var(--rose) 8%, transparent);
  border-color: color-mix(in srgb, var(--rose) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-mobile:hover .item-icon {
  background: var(--rose);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-automation:hover {
  background: color-mix(in srgb, var(--green) 8%, transparent);
  border-color: color-mix(in srgb, var(--green) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-automation:hover .item-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-data:hover {
  background: color-mix(in srgb, var(--violet) 8%, transparent);
  border-color: color-mix(in srgb, var(--violet) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-data:hover .item-icon {
  background: var(--violet);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-edtech:hover {
  background: color-mix(in srgb, #6366f1 8%, transparent);
  border-color: color-mix(in srgb, #6366f1 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-edtech:hover .item-icon {
  background: #6366f1;
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.dropdown-item.srv-ui:hover {
  background: color-mix(in srgb, var(--cyan) 8%, transparent);
  border-color: color-mix(in srgb, var(--cyan) 22%, transparent);
  transform: translateY(-2px);
}
.dropdown-item.srv-ui:hover .item-icon {
  background: var(--cyan);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

/* Hide on mobile screens */
@media (max-width: 900px) {
  .services-dropdown {
    display: none !important;
  }
}

/* Modern Scope & Deliverables Section Layout */
.deliverables-list-v2 {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.deliverable-row {
  display: grid;
  grid-template-columns: 1.2fr 240px 1.5fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease, padding 300ms ease;
}

.deliverable-row:hover {
  background: rgba(16, 17, 20, 0.015);
  padding-left: 24px;
  padding-right: 24px;
}

.deliv-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.deliv-num {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--srv-accent);
  margin-top: 4px;
}

.deliv-info h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.deliv-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
}

.deliv-timeline {
  display: flex;
  align-items: center;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--srv-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--srv-accent) 20%, transparent);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--srv-accent);
}

.timeline-badge svg {
  width: 14px;
  height: 14px;
}

.deliv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deliv-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(16, 17, 20, 0.03);
  color: var(--muted);
  border: 1px solid var(--line);
  transition: background 250ms ease, border-color 250ms ease;
}

.deliverable-row:hover .deliv-tag {
  border-color: color-mix(in srgb, var(--srv-accent) 20%, transparent);
  background: rgba(255, 255, 255, 0.8);
}

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


@media (max-width: 960px) {
  .deliverable-row {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: 30px 0;
  }
  .deliverable-row:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section - Refined Modern UI
   ========================================================================== */
.faq-section {
  position: relative;
}

.faq-section .section-heading {
  margin-bottom: 38px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-left: 3.5px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 16px rgba(16, 17, 20, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(16, 17, 20, 0.14);
  border-left-color: color-mix(in srgb, var(--srv-accent) 65%, transparent);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 17, 20, 0.06);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(16, 17, 20, 0.12);
  border-left-color: var(--srv-accent);
  background: #ffffff;
  box-shadow: 0 14px 36px -6px color-mix(in srgb, var(--srv-accent) 18%, rgba(16, 17, 20, 0.06)),
              0 0 0 1px color-mix(in srgb, var(--srv-accent) 20%, transparent);
  transform: translateY(-1px);
}

.faq-item summary {
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  user-select: none;
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}

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

.faq-item summary:hover {
  color: var(--ink);
}

.faq-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(16, 17, 20, 0.04);
  border: 1px solid rgba(16, 17, 20, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  color: var(--ink);
}

.faq-icon-wrap svg {
  width: 16px;
  height: 16px;
  transition: transform 260ms ease;
}

.faq-item:hover .faq-icon-wrap {
  background: color-mix(in srgb, var(--srv-accent) 15%, transparent);
  border-color: color-mix(in srgb, var(--srv-accent) 30%, transparent);
  color: var(--srv-accent);
}

.faq-item[open] .faq-icon-wrap {
  background: var(--srv-accent);
  border-color: var(--srv-accent);
  color: #ffffff;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--srv-accent) 40%, transparent);
}

.faq-answer {
  padding: 16px 26px 24px 26px;
  font-size: 0.95rem;
  line-height: 1.72;
  color: #374151;
  border-top: 1px solid rgba(16, 17, 20, 0.05);
  animation: faqSlideIn 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-answer strong {
  color: var(--ink);
  font-weight: 700;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.98rem;
  }
  .faq-answer {
    padding: 14px 20px 20px 20px;
  }
}

