/* Homepage: WebGL layer + kinetic layout */

#webgl-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#webgl-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.home-wrap {
  position: relative;
  z-index: 2;
}

/* Hero */
.home-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  position: relative;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 400px);
  grid-template-areas:
    "kicker kicker"
    "rating rating"
    "title  lead"
    "below  stage";
  gap: 1.1rem 2.5rem;
  align-items: start;
}

.home-hero-kicker {
  grid-area: kicker;
}

.home-hero-rating {
  grid-area: rating;
}

.hero-title-wrap {
  grid-area: title;
  min-width: 0;
}

.hero-lead-card {
  grid-area: lead;
  align-self: start;
  width: 100%;
  position: relative;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(12, 18, 36, 0.82), rgba(5, 8, 16, 0.58));
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-lead-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.hero-lead-deck {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero-lead-form {
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-lead-form .field label {
  font-size: 0.72rem;
  margin-bottom: 0.28rem;
}

.hero-lead-form .field input,
.hero-lead-form .field textarea {
  padding: 0.62rem 0.75rem;
  font-size: 0.88rem;
  border-radius: 10px;
}

.hero-lead-form .field textarea {
  min-height: 4.25rem;
  resize: vertical;
}

.hero-lead-submit {
  width: 100%;
  margin-top: 0.15rem;
  justify-content: center;
}

.hero-below {
  grid-area: below;
  min-width: 0;
}

.hero-stage {
  grid-area: stage;
  align-self: start;
  width: 100%;
}

@media (max-width: 960px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "rating"
      "title"
      "lead"
      "below"
      "stage";
    gap: 1.25rem;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 12, 22, 0.55);
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.kicker .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 1.25rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  will-change: transform;
}

.hero-title .grad {
  background: linear-gradient(90deg, var(--white), var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 0.2rem;
}

/* ThinkToShare-style hero stage (right column) */
.hero-stage {
  position: relative;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, rgba(12, 18, 36, 0.78), rgba(5, 8, 16, 0.55));
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  perspective: 900px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 140deg, transparent, rgba(10, 132, 255, 0.1), transparent 38%, rgba(0, 245, 212, 0.08), transparent 72%);
  animation: panelSpin 18s linear infinite;
  opacity: 0.85;
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.stage-kicker {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.stage-megaword {
  margin: 0;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--white);
}

.stage-letter {
  display: inline-block;
  will-change: transform, opacity;
  background: linear-gradient(100deg, var(--white) 0%, var(--accent) 45%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stage-tag {
  margin: 0.5rem 0 0.45rem;
  font-family: var(--font-d);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(230, 236, 255, 0.88);
}

.stage-deck {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  line-height: 1.52;
  color: rgba(175, 186, 210, 0.94);
  max-width: 22rem;
}

.stage-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1rem;
  padding: 0.85rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.stage-metrics > li {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stage-metrics > li > span:first-child {
  display: block;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.stage-metrics small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  line-height: 1.35;
  color: var(--teal);
}

.hero-stage .scroll-hint {
  margin-top: 1.25rem;
}

/* Glass panel right */
.hero-panel {
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(12, 18, 36, 0.82), rgba(5, 8, 16, 0.55));
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1635070041078-e363dbe005cb?auto=format&fit=crop&w=1400&q=82") center / cover no-repeat;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: conic-gradient(from 120deg, transparent, rgba(10, 132, 255, 0.12), transparent 40%, rgba(0, 245, 212, 0.1), transparent 70%);
  animation: panelSpin 14s linear infinite;
}

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

.hero-panel-inner {
  position: relative;
  z-index: 2;
}

.hero-panel h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.metric-rows {
  display: grid;
  gap: 0.85rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.metric span:first-child {
  color: var(--muted);
}

.metric span:last-child {
  font-family: var(--font-m);
  font-size: 0.72rem;
  color: var(--teal);
}

.scroll-hint {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Marquee: services + stack strips (icons via inline sprite) */
.marquee-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.marquee-strip {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.97) 0%, rgba(8, 12, 22, 0.88) 50%, rgba(10, 16, 30, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 0;
}

.marquee-strip-inner {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-strip-inner::before,
.marquee-strip-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}

.marquee-strip-inner::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.marquee-strip-inner::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.marquee-track--tech {
  animation-duration: 40s;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-right: 2.25rem;
  white-space: nowrap;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  letter-spacing: -0.02em;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem 0.35rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 16, 0.45);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.marquee-strip:hover .marquee-item {
  border-color: rgba(255, 255, 255, 0.14);
}

.marquee-item--a {
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(10, 132, 255, 0.08);
}

.marquee-item--t {
  color: var(--teal);
  box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.08);
}

.marquee-ico {
  flex-shrink: 0;
  display: block;
  opacity: 0.92;
}

.marquee-item--a .marquee-ico {
  color: var(--accent);
}

.marquee-item--t .marquee-ico {
  color: var(--teal);
}

.marquee-label {
  color: var(--white);
  font-weight: 600;
}

.marquee-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.55), rgba(0, 245, 212, 0.55));
  opacity: 0.75;
  flex-shrink: 0;
}

.marquee-strip--services {
  margin-top: 0;
}

.marquee-strip--tech {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 calc(var(--radius) + 4px) calc(var(--radius) + 4px);
}

.home-tech-yes .marquee-strip--tech .marquee-strip-inner {
  padding-bottom: 1.15rem;
}

/* Feature bands */
.band {
  padding: 5rem 0;
  position: relative;
}

.band.alt {
  background: linear-gradient(180deg, transparent, rgba(10, 132, 255, 0.04), transparent);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split-feature {
    grid-template-columns: 1fr;
  }
}

.feature-visual {
  border-radius: calc(var(--radius) + 6px);
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.feature-visual .feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.02);
  transition: transform 0.85s var(--ease-out), opacity 0.45s ease;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 28% 28%, rgba(10, 132, 255, 0.45), transparent 52%),
    radial-gradient(circle at 82% 65%, rgba(0, 245, 212, 0.28), transparent 48%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.split-feature .reveal:hover .feature-img {
  transform: scale(1.06);
  opacity: 0.94;
}

.feature-visual .orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--teal), var(--accent));
  filter: blur(0px);
  opacity: 0.35;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 8s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes orbFloat {
  from {
    transform: translate(-52%, -48%) scale(1);
  }
  to {
    transform: translate(-48%, -52%) scale(1.12);
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "▹";
  color: var(--teal);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Work preview */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.work-tile {
  grid-column: span 4;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 220px;
  position: relative;
  background: var(--bg3);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease, box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}

.work-tile:hover {
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: 0 28px 90px rgba(10, 132, 255, 0.12);
  transform: translateY(-3px);
}

.work-tile.lg {
  grid-column: span 8;
  min-height: 280px;
}

@media (max-width: 900px) {
  .work-tile,
  .work-tile.lg {
    grid-column: span 12;
    min-height: 200px;
  }
}

.work-tile .work-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.72) saturate(1.12) contrast(1.05);
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(125deg, rgba(10, 132, 255, 0.25) 0%, transparent 40%, rgba(0, 245, 212, 0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.85;
}

.work-tile:hover .work-img {
  transform: scale(1.08);
  filter: brightness(0.82) saturate(1.18) contrast(1.06);
}

.work-tile .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 10, 0.94));
  z-index: 2;
}

.work-tile h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.work-tile span {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.work-tile .work-metric {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--teal);
  opacity: 0.95;
}

/* Hero trust line */
.hero-trust {
  margin-top: 1.75rem;
  max-width: 560px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  border-left: 2px solid rgba(0, 245, 212, 0.35);
  padding-left: 1rem;
}

/* Proof strip */
.home-trust {
  padding: 2.5rem 0 3rem;
  position: relative;
}

.home-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.06), transparent 40%, rgba(0, 245, 212, 0.05));
  pointer-events: none;
}

.trust-inner {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, rgba(15, 22, 40, 0.85), rgba(6, 10, 20, 0.55));
  backdrop-filter: blur(18px);
  padding: 1.75rem 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (max-width: 820px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
}

.trust-stat {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-num {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-hint {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(139, 149, 173, 0.75);
}

.trust-caption {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(139, 149, 173, 0.85);
  max-width: 52rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.trust-pill {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: rgba(8, 12, 22, 0.45);
}

/* Section typography helpers */
.home-section-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.12;
}

.home-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.home-lead:last-of-type {
  margin-bottom: 0;
}

.home-lead a {
  color: var(--teal);
  font-weight: 600;
}

.home-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-section-deck {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.narrow-col {
  max-width: 720px;
  margin-inline: auto;
}

/* Services grid */
.home-services-band {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, rgba(15, 22, 40, 0.92), rgba(6, 10, 20, 0.58));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.45s ease;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 10% 0%, rgba(10, 132, 255, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: 0 26px 80px rgba(10, 132, 255, 0.12);
}

.home-service-card:hover::before {
  opacity: 1;
}

.home-service-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.svc-ico {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.65rem;
  line-height: 1;
}

.home-service-card h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.home-service-card p {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.svc-link {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.home-services-foot {
  margin-top: 2rem;
  text-align: center;
}

/* Process */
.home-process-band {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.process-preamble {
  margin-bottom: 2rem;
  max-width: 28rem;
}

.process-echo {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.process-lede {
  margin: 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

.process-lede span + span {
  margin-left: 0.35rem;
  color: rgba(160, 172, 200, 0.95);
  font-weight: 600;
}

.process-tagline {
  margin: 0.35rem 0 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pn-num {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pn-step {
  margin-left: 0.35rem;
  font-weight: 500;
  opacity: 0.85;
}

.home-process {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .home-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .home-process {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 26, 0.55);
  min-height: 100%;
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.process-step:hover {
  border-color: rgba(0, 245, 212, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.process-n {
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.65rem;
}

.process-step h3 {
  font-family: var(--font-d);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Team */
.home-team-band {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(15, 22, 40, 0.9), rgba(6, 10, 20, 0.65));
  backdrop-filter: blur(14px);
  overflow: hidden;
  padding-bottom: 1.35rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.45s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 132, 255, 0.28);
  box-shadow: 0 28px 90px rgba(10, 132, 255, 0.1);
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 0.75s var(--ease-out);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-card h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1rem 1.1rem 0.25rem;
  letter-spacing: -0.02em;
}

.team-role {
  margin: 0 1.1rem 0.5rem;
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-bio {
  margin: 0 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.team-foot {
  margin-top: 2rem;
  text-align: center;
}

.team-foot a {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Testimonials */
.home-testimonials {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(12, 18, 36, 0.88), rgba(5, 8, 16, 0.72));
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition: border-color 0.35s ease, transform 0.45s var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(0, 245, 212, 0.22);
  transform: translateY(-3px);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.testimonial-card figcaption {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.t-stars {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #fbbf24;
  margin-bottom: 0.45rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

.t-name {
  font-weight: 600;
  color: var(--white);
}

.home-proof-note {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(139, 149, 173, 0.85);
  max-width: 48rem;
}

/* FAQ home */
.home-faq-band {
  padding-bottom: 2rem;
}

.home-faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.home-faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 26, 0.55);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-faq details[open] {
  border-color: rgba(10, 132, 255, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.home-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.15rem;
  color: var(--white);
}

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

.home-faq summary::after {
  content: "+";
  float: right;
  font-family: var(--font-m);
  color: var(--teal);
  transition: transform 0.3s var(--ease-out);
}

.home-faq details[open] summary::after {
  transform: rotate(45deg);
}

.home-faq details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

.home-faq-more {
  margin-top: 1.75rem;
  text-align: center;
}

/* ThinkToShare-style: rating, chroma lines, pillars, carousels, tech, excellence, counters, growth */
.hero-rating-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 1.25rem;
}

.hr-score {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hr-stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hr-label {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-chroma {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-chroma-line {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
}

.hero-chroma-line.muted {
  color: var(--muted);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.grad-chroma {
  background: linear-gradient(90deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-chroma-cta {
  margin-top: 0.35rem;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  width: fit-content;
}

.hero-chroma-cta:hover {
  text-decoration: underline;
}

.home-pillars {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.4) 0%, rgba(10, 16, 32, 0.55) 40%, rgba(5, 6, 10, 0.35) 100%);
}

.pillar-pin {
  position: relative;
}

.pillar-head-wrap {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.pillar-head .pillar-intro {
  margin: 0.85rem 0 0;
  max-width: 46rem;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted);
}

.pillar-head h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0.35rem 0 0;
}

.pillar-viewport {
  position: relative;
  overflow: visible;
  padding-bottom: 3.5rem;
}

.pillar-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 auto;
  padding: 0 max(1rem, 5vw) 1rem;
  max-width: min(1200px, 92vw);
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(139, 149, 173, 0.85);
}

.pillar-scroll-hint svg {
  opacity: 0.7;
  animation: pillarHintNudgeDown 2.2s ease-in-out infinite;
}

@keyframes pillarHintNudgeDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.pillar-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: min(920px, 94vw);
  margin: 0 auto;
  padding: 0 max(1rem, 5vw) 1rem;
}

.pillar-card-row--media-end {
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
}

.pillar-card-row--media {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  align-self: flex-start;
  gap: clamp(1rem, 3vw, 2rem);
  width: min(100%, 880px);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pillar-card-row--media .pillar-card {
  flex: 1 1 340px;
  max-width: min(100%, 460px);
}

.pillar-media-side {
  flex: 0 1 300px;
  width: min(38vw, 300px);
  min-width: 200px;
  max-width: 320px;
  align-self: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-media-side dotlottie-wc {
  display: block;
  background: transparent;
}

@media (max-width: 880px) {
  .pillar-card-row--media {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  .pillar-card-row--media-end {
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .pillar-card-row--media-end .pillar-card {
    order: -1;
  }

  .pillar-media-side {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
  }

  .pillar-card-row--media .pillar-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-media-side {
    display: none;
  }
}

.pillar-bridge {
  width: 100%;
  max-width: min(520px, 88vw);
  margin: 0.15rem auto;
  flex-shrink: 0;
  opacity: 0.95;
}

.pillar-bridge--to-right {
  margin-left: max(0px, calc(15% - 2rem));
  margin-right: auto;
}

.pillar-bridge--to-left {
  margin-right: max(0px, calc(15% - 2rem));
  margin-left: auto;
}

.pillar-bridge-path {
  filter: drop-shadow(0 0 8px rgba(10, 132, 255, 0.2));
}

.pillar-card {
  position: relative;
  width: min(100%, 460px);
  min-height: clamp(320px, 48vh, 480px);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.85rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, rgba(18, 26, 48, 0.92), rgba(6, 10, 20, 0.72));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}

.pillar-card--left {
  align-self: flex-start;
  margin-right: auto;
}

.pillar-card--right {
  align-self: flex-end;
  margin-left: auto;
}

@media (max-width: 640px) {
  .pillar-card--left,
  .pillar-card--right {
    align-self: stretch;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pillar-bridge {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.pillar-card-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 132, 255, 0.22), transparent 70%);
  opacity: 0.85;
  pointer-events: none;
}

.pillar-card-glow--teal {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 245, 212, 0.18), transparent 70%);
}

.pillar-card-glow--violet {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 85, 247, 0.2), transparent 70%);
}

.pillar-card-glow--amber {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251, 191, 36, 0.14), transparent 70%);
}

.pillar-card-icon {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  opacity: 0.95;
  contain: layout style;
}

.pillar-card-icon--teal {
  color: var(--teal);
}

.pillar-card-icon--violet {
  color: var(--violet);
}

.pillar-card-icon--amber {
  color: #fbbf24;
}

.pillar-card-icon svg {
  flex: 0 0 auto;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
  vector-effect: non-scaling-stroke;
}

.pillar-card-kicker {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.65rem;
}

.pillar-card-title {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
}

.pillar-card-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.65vw, 1.05rem);
  line-height: 1.55;
  color: rgba(230, 236, 255, 0.92);
  font-weight: 500;
}

.pillar-card-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .pillar-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(10, 132, 255, 0.35);
    box-shadow: 0 36px 100px rgba(10, 132, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }
}

.tts-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tts-hero-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.8vw, 3.05rem);
  line-height: 1.06;
  margin: 0.45rem 0 0;
  letter-spacing: -0.038em;
}

.home-tts-cases .tts-hero-title {
  margin-bottom: 0.35rem;
}

.case-intro-lede,
.case-intro-hit {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  line-height: 1.55;
  color: var(--muted);
}

.case-intro-lede {
  margin-top: 0.5rem;
}

.case-intro-hit {
  margin-top: 0.35rem;
  color: rgba(200, 210, 235, 0.9);
}

.case-intro-hit em {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 212, 0.35);
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.case-study-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.tts-nav {
  display: flex;
  gap: 0.5rem;
}

.tts-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 26, 0.75);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.tts-btn:hover {
  border-color: rgba(0, 245, 212, 0.45);
  background: rgba(10, 132, 255, 0.15);
}

.tts-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.tts-viewport {
  overflow: hidden;
  width: 100%;
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.tts-viewport--cases {
  max-width: min(1100px, 94vw);
}

.tts-viewport--quote {
  max-width: min(800px, 92vw);
}

.tts-track {
  display: flex;
  will-change: transform;
}

.tts-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  min-height: 380px;
  box-sizing: border-box;
}

.tts-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
}

.tts-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 10, 0.15) 35%, rgba(5, 6, 10, 0.92) 100%);
}

.tts-kicker {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.35rem;
}

.tts-slide-inner h3 {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.tts-slide-inner p {
  margin: 0 0 1.25rem;
  max-width: 520px;
  color: rgba(240, 244, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

.tts-slide--case {
  min-height: auto;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 360px;
  background: linear-gradient(145deg, rgba(12, 18, 36, 0.95), rgba(5, 8, 16, 0.88));
}

@media (max-width: 820px) {
  .case-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.case-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.case-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.case-body h3 {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 520px) {
  .case-stats {
    grid-template-columns: 1fr;
  }
}

.case-stat {
  padding: 0.85rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 22, 0.55);
  text-align: center;
}

.case-pct {
  display: inline;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1.1;
}

.case-suffix {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  margin-left: 0.05em;
}

.case-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

.home-tech-yes {
  padding-bottom: 0;
  overflow: hidden;
}

.tech-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.tech-chip {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: rgba(8, 12, 22, 0.5);
}

.tech-pull {
  margin: 0.85rem 0 1.35rem;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.6;
  color: var(--muted);
}

.home-excellence {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.excel-stack {
  margin: 0 auto 1.25rem;
  max-width: 900px;
}

.excel-line {
  display: block;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--white);
}

.excel-line.muted {
  color: rgba(139, 149, 173, 0.85);
  font-weight: 600;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
}

.excel-sub {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.home-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 700px) {
  .home-counter-grid {
    grid-template-columns: 1fr;
  }
}

.home-counter {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 26, 0.55);
}

.bc-top {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: -0.04em;
  color: var(--white);
  display: block;
  line-height: 1;
}

.bc-top .count-up {
  color: var(--teal);
}

.bc-line1,
.bc-line2 {
  display: block;
  text-align: center;
  color: var(--muted);
}

.bc-line1 {
  margin-top: 0.75rem;
  font-family: var(--font-d);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(230, 236, 255, 0.92);
}

.bc-line2 {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-counter-num {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: -0.04em;
  color: var(--white);
  display: block;
  line-height: 1;
}

.home-counter-num .count-up {
  color: var(--teal);
}

.home-counter-label {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.growth-head-stack {
  margin: 0.35rem 0 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.growth-head-stack .gh-line {
  display: block;
}

.growth-head-stack .gh-line + .gh-line {
  margin-top: 0.2rem;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
}

.growth-card {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(15, 22, 40, 0.85), rgba(6, 10, 20, 0.6));
  transition: transform 0.4s var(--ease-out), border-color 0.35s ease;
}

.growth-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 245, 212, 0.22);
}

.growth-card h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.growth-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.tts-slide--quote {
  min-height: 280px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  background: linear-gradient(145deg, rgba(12, 18, 36, 0.92), rgba(5, 8, 16, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tts-slide--quote blockquote {
  margin: 0;
  padding: 0;
}

.tts-slide--quote blockquote p {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--white);
}

.tts-slide--quote figcaption {
  margin-top: 1.25rem;
}

/* CTA home */
.home-cta {
  margin: 2rem 0 0;
  padding: 4rem 0 5rem;
  text-align: center;
  position: relative;
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(10, 132, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.home-cta .inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.home-cta h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.home-cta p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: shimmer 2.6s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  45%,
  100% {
    transform: translateX(120%);
  }
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
    transform: none !important;
    width: 100% !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.35rem;
  }

  .marquee-strip .marquee-group:nth-child(2),
  .marquee-strip .marquee-group:nth-child(3) {
    display: none;
  }

  .marquee-group {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
    padding-right: 0;
    max-width: 100%;
  }

  .hero-panel::before,
  .hero-stage::before,
  .feature-visual .orb,
  .scroll-hint svg,
  .pillar-scroll-hint svg,
  .shimmer-btn::after,
  .kicker .pulse {
    animation: none !important;
  }

  .hero-title .word,
  .stage-letter {
    transform: none !important;
  }

  .home-service-card,
  .process-step,
  .team-card,
  .pillar-card,
  .growth-card {
    transition: none !important;
  }

  .home-service-card:hover,
  .process-step:hover,
  .team-card:hover,
  .pillar-card:hover,
  .growth-card:hover {
    transform: none !important;
  }

  .team-card:hover .team-photo img {
    transform: none !important;
  }
}
