:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #0b0d12;
  --muted: #5b6373;
  --line: rgba(15, 23, 42, 0.1);
  --line2: rgba(15, 23, 42, 0.06);

  --dark: #0e0f12;
  --dark2: #14151a;

  --accent: #6c63ff;
  --accent2: #00d4ff;

  --rail: 1120px;
  --wide: 1400px;
  --pad: 24px;

  --r: 18px;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --dur: 220ms;

  --shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Inter",
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      1200px 700px at 20% -10%,
      rgba(108, 99, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 90% 0%,
      rgba(0, 212, 255, 0.08),
      transparent 50%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.container {
  max-width: var(--rail);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wide {
  max-width: var(--wide);
}

.xwide {
  max-width: 1360px;
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.services-grid > .card {
  height: 100%;
}
.services-grid > .card.is-wide {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid > .card.is-wide {
    grid-column: auto;
  }
}
@media (max-width: 980px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.dark .grid-2 {
  gap: 56px;
}
@media (max-width: 980px) {
  .dark .grid-2 {
    gap: 28px;
  }
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 9999;
}
.to-top svg {
  width: 18px;
  height: 18px;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  transform: translateY(-1px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 247, 245, 0.7);
  border-bottom: 1px solid var(--line2);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
}
.brand .name {
  font-weight: 750;
  letter-spacing: 0.2px;
}
.brand .tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: rgba(11, 13, 18, 0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.nav a:hover {
  background: rgba(108, 99, 255, 0.1);
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;

  background: transparent;
  color: var(--text);
  border: 1px solid rgba(11, 13, 18, 0.2);
  box-shadow: none;

  font-weight: 750;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.cta:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: translateY(-1px);
}

.cta.secondary {
  background: transparent;
  color: rgba(11, 13, 18, 0.78);
  border: 1px solid var(--line);
  box-shadow: none;
}
.cta.secondary:hover {
  background: rgba(11, 13, 18, 0.06);
  color: var(--text);
  border-color: rgba(11, 13, 18, 0.22);
  transform: translateY(-1px);
}

.dark .cta {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}
.dark .cta:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #0b0d12;
  border-color: rgba(255, 255, 255, 0.92);
}
.dark .cta.secondary {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.18);
}
.dark .cta.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.95);
}

.hamb {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.6);
}
.hamb svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .hamb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.drawer.open {
  display: block;
}
.drawer .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.drawer .panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--line2);
  padding: 22px;
  transform: translateX(10px);
  animation: slideIn 0.22s var(--ease) forwards;
}
@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}
.drawer .panel .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer .panel .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.drawer .panel .links a {
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 650;
}
.drawer .panel .links a:hover {
  background: rgba(108, 99, 255, 0.1);
}

section {
  padding: 92px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-hero {
  padding: 118px 0 92px;
}
.dark {
  background:
    radial-gradient(
      1200px 700px at 10% -10%,
      rgba(108, 99, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 100% 0%,
      rgba(0, 212, 255, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, var(--dark), var(--dark2));
  color: rgba(255, 255, 255, 0.92);
}
.dark a {
  color: rgba(255, 255, 255, 0.92);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.2px;
  color: rgba(11, 13, 18, 0.7);
}
.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.dark .kicker {
  color: rgba(255, 255, 255, 0.72);
}

h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.03;
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
p {
  margin: 0 0 14px;
}
.lead {
  font-size: 18px;
  color: rgba(11, 13, 18, 0.75);
  max-width: 70ch;
}
.dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.hr {
  height: 1px;
  background: var(--line2);
  margin: 28px 0;
}
.dark .hr {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: end;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.heroCard {
  border-radius: 22px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.heroCard .media {
  aspect-ratio: 16/11;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.16),
    rgba(0, 212, 255, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.heroCard .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}
.heroCard .meta {
  padding: 18px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line2);
}
.badge {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.2px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.18);
  color: rgba(11, 13, 18, 0.86);
}
.dark .badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
}
.marquee .track {
  display: flex;
  gap: 42px;
  padding: 18px 22px;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee img {
  height: 30px;
  width: auto;
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.05);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.card {
  border-radius: 22px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
  padding: 22px;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 99, 255, 0.22);
}
.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.dark .card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 10px 0;
  border-top: 1px dashed var(--line2);
  color: rgba(11, 13, 18, 0.72);
}
.list li:first-child {
  border-top: 0;
}
.dark .list li {
  color: rgba(255, 255, 255, 0.74);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.workFeed {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 980px) {
  .workFeed {
    grid-template-columns: 1fr;
  }
}

.stickyMeta {
  position: sticky;
  top: 98px;
  align-self: start;
}
@media (max-width: 980px) {
  .stickyMeta {
    position: relative;
    top: auto;
  }
}

.workItem {
  border-radius: 24px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 26px;
}
.workItem .shot {
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.18),
    rgba(0, 212, 255, 0.12)
  );
}
.workItem .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workItem .body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}
.workItem .topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(11, 13, 18, 0.7);
  font-weight: 650;
  font-size: 13px;
}
.workItem h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.workItem p {
  color: rgba(11, 13, 18, 0.74);
}
.workItem .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-weight: 750;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.6);
}
.progress {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 12px;
  color: rgba(11, 13, 18, 0.75);
}
@media (max-width: 980px) {
  .progress {
    display: none;
  }
}

.caseHero {
  padding: 126px 0 72px;
}
.caseGrid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}
@media (max-width: 980px) {
  .caseGrid {
    grid-template-columns: 1fr;
  }
}
.caseShot {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
.caseShot.light {
  border-color: var(--line2);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}
.caseShot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseBlock {
  padding: 26px 0;
}
.caseBlock .k {
  font-weight: 850;
  letter-spacing: 0.15px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.62);
}
.dark .caseBlock .k {
  color: rgba(255, 255, 255, 0.66);
}

.form {
  display: grid;
  gap: 12px;
}
.input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
}
textarea.input {
  min-height: 140px;
  resize: vertical;
}
.dark .input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  padding: 72px 0;
  border-top: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.55);
}
.footer .cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}
@media (max-width: 980px) {
  .footer .cols {
    grid-template-columns: 1fr;
  }
}
.small {
  font-size: 13px;
  color: rgba(11, 13, 18, 0.68);
}
.dark .small {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease),
    filter 520ms var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  html.js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;

  background: var(--text);
  opacity: 0.75;
  z-index: 10050;
  pointer-events: none;
}

.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}

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

.trustlinks {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 14px;
}
.trust {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15px;
  color: rgba(11, 13, 18, 0.72);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 18, 0.12);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: saturate(1.2) blur(10px);
}
.trust:hover {
  background: rgba(11, 13, 18, 0.06);
  color: rgba(11, 13, 18, 0.92);
  border-color: rgba(11, 13, 18, 0.18);
}
.dark .trust {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 19, 24, 0.35);
}
.dark .trust:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 980px) {
  .trustlinks {
    display: none;
  }
}

.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .hero-full {
    padding: 92px 0 64px;
  }
}

.scroll-indicator {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 138px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(11, 13, 18, 0.12);
  backdrop-filter: saturate(1.2) blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.scroll-indicator .dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scroll-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.22);
}
.scroll-indicator .dot.active {
  background: rgba(11, 13, 18, 0.92);
}
.scroll-indicator .dot.bounce {
  animation: dotBounce 1.2s ease-in-out infinite;
}
@keyframes dotBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}
.dark .scroll-indicator {
  background: rgba(17, 19, 24, 0.4);
  border-color: rgba(255, 255, 255, 0.14);
}
.dark .scroll-indicator .dot {
  background: rgba(255, 255, 255, 0.28);
}
.dark .scroll-indicator .dot.active {
  background: rgba(255, 255, 255, 0.92);
}
@media (max-width: 980px) {
  .scroll-indicator {
    right: 14px;
    width: 48px;
    height: 126px;
  }
}
@media (max-width: 560px) {
  .scroll-indicator {
    display: none;
  }
}

:root {
  --h1: clamp(38px, 5.4vw, 72px);
  --h2: clamp(26px, 3.2vw, 44px);
  --lead: clamp(16px, 1.4vw, 19px);
  --body: clamp(15px, 1.15vw, 17px);
}

body {
  font-size: var(--body);
}
h1 {
  font-size: var(--h1);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead {
  font-size: var(--lead);
  line-height: 1.55;
  max-width: 62ch;
}

.container {
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
}
.container.wide {
  max-width: 1220px;
}

.hero-full {
  min-height: 100vh;
  padding: clamp(88px, 10vh, 140px) 0 clamp(56px, 8vh, 92px);
}
@media (max-width: 980px) {
  .hero-full {
    padding: 86px 0 56px;
  }
  h1 {
    line-height: 1.04;
  }
}
@media (max-width: 560px) {
  .hero-full {
    padding: 78px 0 46px;
  }
  .kicker {
    margin-bottom: 12px;
  }
}

.cta {
  padding: 12px 16px;
}
@media (max-width: 560px) {
  .hero-actions,
  .actions,
  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .cta {
    width: 100%;
    justify-content: center;
  }
}

.topbar .nav {
  gap: 18px;
}
@media (max-width: 1200px) {
  .topbar .nav {
    gap: 14px;
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .topbar .nav {
    display: none;
  }
  .trustlinks {
    display: none;
  }
}

.scroll-indicator {
  right: 18px;
  height: 124px;
  width: 46px;
  opacity: 0.92;
}
@media (max-width: 980px) {
  .scroll-indicator {
    right: 12px;
    height: 116px;
    width: 44px;
  }
}
@media (max-width: 760px) {
  .scroll-indicator {
    display: none;
  }
}

.grid,
.cards,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) {
  .grid,
  .cards,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .grid,
  .cards,
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.services-grid .is-wide {
  grid-column: 1 / -1;
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .services-grid .is-wide {
    grid-column: auto;
  }
}

section {
  padding: clamp(46px, 6vw, 84px) 0;
}
.section-hero {
  padding: 0;
}
.dark {
  padding: clamp(46px, 6vw, 84px) 0;
}

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

:root {
  --h1: clamp(48px, 6.8vw, 96px);
  --h2: clamp(30px, 3.8vw, 52px);
}

h1 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-weight: 750;
  letter-spacing: -0.03em;
}

.hero-full h1 {
  max-width: 18ch;
}

.topbar .logo img {
  height: 42px;
}
@media (max-width: 980px) {
  .topbar .logo img {
    height: 36px;
  }
}

.topbar {
  padding: 18px 0;
}

.logo-strip {
  overflow: hidden;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.logo-strip .logos {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: logoScroll 38s linear infinite;
}

.logo-strip img {
  height: 28px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition:
    opacity 0.4s ease,
    filter 0.4s ease;
}

.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-strip {
    padding: 32px 0;
  }
  .logo-strip img {
    height: 22px;
  }
}

:root {
  --h1: clamp(38px, 5.4vw, 72px);
  --h2: clamp(26px, 3.2vw, 44px);
}

h1 {
  font-size: var(--h1);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-full h1 {
  font-size: clamp(52px, 6.9vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 18ch;
}

.topbar .logo img {
  height: 56px;
}
@media (max-width: 980px) {
  .topbar .logo img {
    height: 44px;
  }
}

.topbar {
  padding: 14px 0;
}
@media (max-width: 980px) {
  .topbar {
    padding: 12px 0;
  }
}

.logo-strip {
  overflow: hidden;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}
.logo-strip .logos {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: logoScroll 42s linear infinite;
}
.logo-strip img {
  height: 26px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}
.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-strip {
    padding: 32px 0;
  }
  .logo-strip img {
    height: 22px;
  }
  .logo-strip .logos {
    gap: 38px;
    animation-duration: 34s;
  }
}

.topbar .logo img {
  height: 34px !important;
  opacity: 0.85;
}

.hero-signature {
  margin-bottom: 26px;
  opacity: 0.12;
  max-width: 160px;
}

.hero-signature img {
  width: 100%;
  height: auto;
}

.hero-full {
  position: relative;
}

.hero-signature-wrap {
  position: absolute;
  top: 110px;
  left: 0;
}

@media (max-width: 980px) {
  .hero-signature-wrap {
    position: relative;
    top: 0;
    margin-bottom: 18px;
  }
  .hero-signature {
    opacity: 0.16;
    max-width: 120px;
  }
}

.hero-signature-wrap {
  position: relative;
  top: 0;
  margin-bottom: 28px;
}

.hero-signature {
  opacity: 1;
  max-width: 180px;
}

.hero-signature img {
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .hero-signature {
    max-width: 140px;
  }
}

.topbar .navwrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.topbar .nav {
  grid-column: 2;
  justify-self: center;
}
.topbar .trustlinks {
  grid-column: 3;
  justify-self: end;
}

.hero-logo {
  margin: 0 0 28px 0;
}
.hero-logo img {
  height: 74px;
  width: auto;
  display: block;
}
@media (max-width: 980px) {
  .hero-logo img {
    height: 60px;
  }
  .hero-logo {
    margin-bottom: 22px;
  }
}
@media (max-width: 560px) {
  .hero-logo img {
    height: 52px;
  }
}

.topbar .navwrap {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  height: 74px;
}
.topbar .nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar .trustlinks {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hamb {
  grid-column: 4;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.6);
  display: none;
}
@media (max-width: 980px) {
  .topbar .nav {
    display: none !important;
  }
  .topbar .trustlinks {
    display: none !important;
  }
  .hamb {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .topbar .navwrap {
    grid-template-columns: 1fr auto;
    height: 72px;
  }
}

.hero-logo {
  margin: 0 0 22px 0;
}
.hero-logo img {
  height: 74px;
  width: auto;
  display: block;
}
@media (max-width: 980px) {
  .hero-logo img {
    height: 60px;
  }
}
@media (max-width: 560px) {
  .hero-logo img {
    height: 52px;
  }
}

.contact-grid {
  gap: clamp(24px, 3.5vw, 56px);
}

.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 13, 18, 0.08);
  box-shadow: 0 26px 70px rgba(11, 13, 18, 0.08);
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.contact-card .muted {
  color: rgba(11, 13, 18, 0.66);
  line-height: 1.55;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 13, 18, 0.1);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(11, 13, 18, 0.28);
  box-shadow: 0 10px 24px rgba(11, 13, 18, 0.08);
}

.contact-form button.cta {
  box-shadow: 0 16px 30px rgba(11, 13, 18, 0.1);
}

.contact-side h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.contact-side p {
  max-width: 42ch;
  line-height: 1.6;
  color: rgba(11, 13, 18, 0.74);
}

.contact-side .line,
.contact-side hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(11, 13, 18, 0.16),
    rgba(11, 13, 18, 0.05)
  );
  margin: 22px 0 18px;
}

.contact-meta {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(11, 13, 18, 0.72);
}

.contact-meta a {
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 13, 18, 0.18);
  padding-bottom: 1px;
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}

.contact-meta a:hover {
  border-color: rgba(11, 13, 18, 0.45);
  color: rgba(11, 13, 18, 0.92);
}

.contact-actions .cta.secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(11, 13, 18, 0.1);
}

.contact-actions .cta.secondary:hover {
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .contact-card {
    box-shadow: 0 20px 48px rgba(11, 13, 18, 0.08);
  }
}

.contact-section .container,
.contact-grid {
  max-width: 1320px !important;
  width: 100%;
}

@media (max-width: 1200px) {
  .contact-section .container,
  .contact-grid {
    max-width: 1100px !important;
  }
}

@media (max-width: 980px) {
  .contact-section .container,
  .contact-grid {
    max-width: 760px !important;
  }
}

.nav a.active,
.nav a[aria-current="page"] {
  color: #000 !important;
  font-weight: 600;
  position: relative;
}

.nav a.active::after,
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: #000;
  border-radius: 999px;
}

.contact-section {
  padding-left: 40px;
  padding-right: 40px;
}

.contact-section .container {
  max-width: 1500px !important;
}

.contact-grid {
  max-width: 1500px !important;
  gap: 80px !important;
}

@media (max-width: 1200px) {
  .contact-section .container,
  .contact-grid {
    max-width: 1100px !important;
    gap: 48px !important;
  }
}

@media (max-width: 900px) {
  .contact-section .container,
  .contact-grid {
    max-width: 95% !important;
    gap: 32px !important;
  }
}

body .contact-section {
  padding-left: 28px;
  padding-right: 28px;
}
body .contact-section .container {
  max-width: 1240px !important;
  width: 100% !important;
}
body .contact-section .contact-grid {
  max-width: 1240px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  align-items: start !important;
  justify-content: center;
  grid-template-columns: minmax(440px, 560px) minmax(460px, 1fr) !important;
  gap: clamp(28px, 3vw, 64px) !important;
}

body .contact-section .contact-card {
  max-width: 560px !important;
}

@media (max-width: 980px) {
  body .contact-section .container,
  body .contact-section .contact-grid {
    max-width: 920px !important;
  }
}

@media (max-width: 900px) {
  body .contact-section .contact-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }
  body .contact-section .contact-card {
    max-width: 100% !important;
  }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
}
.cookie-banner__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.45;
}
.cookie-banner__text a {
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.cookie-btn.primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.cookie-btn:active {
  transform: translateY(1px);
}
@media (max-width: 680px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 13, 18, 0.1);
  box-shadow: 0 20px 55px rgba(11, 13, 18, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(11, 13, 18, 0.1);
  border-color: rgba(11, 13, 18, 0.18);
}
.project-thumb {
  aspect-ratio: 16/10;
  background: rgba(11, 13, 18, 0.03);
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}
.project-card:hover .project-thumb img {
  transform: scale(1.06);
}
.project-info {
  padding: 16px 16px 18px;
}
.project-info h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.project-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 650;
  opacity: 0.85;
}
@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.case-hero-media {
  margin-top: 22px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(11, 13, 18, 0.1);
  box-shadow: 0 22px 60px rgba(11, 13, 18, 0.1);
  background: rgba(255, 255, 255, 0.6);
}
.case-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}
.case-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.case-meta .pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 18, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  font-size: 13px;
}
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.case-col h2 {
  margin-top: 28px;
}
.case-results {
  margin: 12px 0 0 18px;
  color: rgba(11, 13, 18, 0.78);
}
.case-aside .case-card {
  position: sticky;
  top: 120px;
}
.case-facts {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: rgba(11, 13, 18, 0.72);
  font-size: 14px;
}
.case-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.case-cta-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(11, 13, 18, 0.1);
  background: rgba(255, 255, 255, 0.7);
}
.case-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .case-layout {
    grid-template-columns: 1fr;
  }
  .case-aside .case-card {
    position: static;
  }
  .case-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.container.wide {
  max-width: 1280px;
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: #0b0f1a;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(8px);
  z-index: 999;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.grid.services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.grid.services > * {
  grid-column: auto;
}
.grid.services > .is-wide {
  grid-column: 1 / -1;
}
@media (max-width: 980px) {
  .grid.services {
    grid-template-columns: 1fr;
  }
  .grid.services > .is-wide {
    grid-column: auto;
  }
}

.home-services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px;
}
.home-services-grid .card.wide {
  grid-column: span 2 !important;
}
@media (max-width: 1100px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  .home-services-grid {
    grid-template-columns: 1fr !important;
  }
  .home-services-grid .card.wide {
    grid-column: span 1 !important;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
  h1 {
    font-size: 40px !important;
    line-height: 1.2;
  }
  h2 {
    font-size: 32px !important;
  }
  h3 {
    font-size: 22px !important;
  }

  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .hero {
    padding: 100px 0 80px 0 !important;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px !important;
  }

  p {
    font-size: 15px !important;
    line-height: 1.6;
  }

  .hero {
    padding: 80px 0 60px 0 !important;
    text-align: center !important;
  }

  .hero .buttons,
  .cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .case-card img,
  .project-card img {
    width: 100% !important;
    height: auto !important;
  }

  .navbar {
    padding: 15px 20px !important;
  }

  .navbar ul {
    padding-top: 100px !important;
  }

  section {
    padding: 70px 0 !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px !important;
  }
  h2 {
    font-size: 22px !important;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 50px 0 !important;
  }

  .btn,
  button {
    width: 100% !important;
    text-align: center !important;
  }
}

.back-to-top {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 48px !important;
    height: 48px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 44px !important;
    height: 44px !important;
    bottom: 18px !important;
    right: 18px !important;
  }
}

.back-to-top,
.btn.back-to-top {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;

  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 46px !important;
}

@media (max-width: 768px) {
  .back-to-top,
  .btn.back-to-top {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

#toTop,
.to-top {
  position: fixed !important;
  left: auto !important;
  right: 20px !important;
  bottom: 20px !important;

  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 46px !important;
  max-width: 46px !important;
}

#toTop svg,
.to-top svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

@media (max-width: 768px) {
  #toTop,
  .to-top {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    right: 18px !important;
    bottom: 18px !important;
    max-width: 44px !important;
  }
}

@media (max-width: 480px) {
  #toTop,
  .to-top {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    right: 16px !important;
    bottom: 16px !important;
    max-width: 42px !important;
  }
}

.section-hero h1 {
  font-size: 88px;
  line-height: 1.02;
  letter-spacing: -1px;
}

.section-hero .hero-strong {
  font-weight: 800;
}

@media (max-width: 1200px) {
  .section-hero h1 {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .section-hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }
}

.section-hero.hero-full {
  padding: 128px 0 96px !important;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-logo {
  margin: 0 0 26px 0 !important;
}
.hero-logo img {
  height: 88px !important;
  width: auto !important;
  display: block !important;
}

.section-hero.hero-full h1.reveal {
  font-size: 72px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.8px;
}
.section-hero.hero-full .lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 68ch;
}

.section-hero.hero-home h1.reveal {
  font-size: 98px !important;
  line-height: 1 !important;
  letter-spacing: -1.6px;
}
.section-hero.hero-home .hero-strong {
  font-weight: 850;
}

@media (max-width: 1200px) {
  .section-hero.hero-full h1.reveal {
    font-size: 64px !important;
  }
  .section-hero.hero-home h1.reveal {
    font-size: 78px !important;
  }
  .hero-logo img {
    height: 82px !important;
  }
}

@media (max-width: 768px) {
  .section-hero.hero-full {
    padding: 118px 0 84px !important;
    min-height: auto;
  }
  .hero-logo {
    margin-bottom: 18px !important;
  }
  .hero-logo img {
    height: 64px !important;
  }

  .section-hero.hero-full h1.reveal {
    font-size: 40px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.3px;
  }
  .section-hero.hero-home h1.reveal {
    font-size: 44px !important;
  }
  .section-hero.hero-full .lead {
    font-size: 16px !important;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-full h1.reveal {
    font-size: 36px !important;
  }
  .section-hero.hero-home h1.reveal {
    font-size: 40px !important;
  }
  .hero-logo img {
    height: 58px !important;
  }
}

.section-hero.hero-full h1.reveal,
.section-hero.hero-home h1.reveal {
  font-size: 88px !important;
  line-height: 1.02 !important;
  letter-spacing: -1.2px;
}

@media (max-width: 1200px) {
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal {
    font-size: 70px !important;
  }
}

@media (max-width: 768px) {
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal {
    font-size: 36px !important;
  }
}

.section-hero.hero-full {
  min-height: 100vh !important;
  padding-bottom: 140px !important;
  overflow: hidden;
}

.section-hero.hero-full + section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 1200px) {
  .section-hero.hero-full {
    padding-bottom: 110px !important;
  }
}
@media (max-width: 768px) {
  .section-hero.hero-full {
    min-height: auto !important;
    padding-bottom: 84px !important;
  }
}

.logo-strip .container.wide {
  display: flex;
  align-items: center;
}

.logo-strip .logos {
  align-items: center;
  height: 34px;
  line-height: 0;
}

.logo-strip .logos img {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .logo-strip .logos {
    height: 28px;
    gap: 36px;
  }
  .logo-strip .logos img {
    height: 28px;
  }
}

.logo-strip {
  padding: 0 !important;
  height: 120px;
  display: flex;
  align-items: center;
}

.logo-strip .container.wide {
  width: 100%;
}

@media (max-width: 768px) {
  .logo-strip {
    height: 96px;
  }
}
@media (max-width: 420px) {
  .logo-strip {
    height: 88px;
  }
}

.logo-strip .logos {
  animation-duration: 26s !important;
}

@media (max-width: 768px) {
  .logo-strip .logos {
    animation-duration: 30s !important;
  }
}

.form-feedback {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
}

.form-feedback.success {
  background: rgba(0, 200, 120, 0.1);
  border: 1px solid rgba(0, 200, 120, 0.4);
}

.form-feedback.error {
  background: rgba(220, 0, 0, 0.08);
  border: 1px solid rgba(220, 0, 0, 0.4);
}

.section-hero.hero-full {
  position: relative;
  isolation: isolate;
}
.section-hero.hero-full::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      closest-side at 50% 40%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0) 65%
    ),
    radial-gradient(
      closest-side at 20% 10%,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0) 55%
    );
  transform: scale(1);
  opacity: 0.9;
  animation: heroBreath 6.8s ease-in-out infinite;
}
.section-hero.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.2) 0 1px,
      rgba(255, 255, 255, 0) 1px 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0 1px,
      rgba(255, 255, 255, 0) 1px 4px
    );
}

@keyframes heroBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.98;
  }
}

.section-hero.hero-full .reveal {
  transform: translateY(18px) scale(0.985);
  filter: blur(10px);
  transition-duration: 900ms;
  transition-timing-function: cubic-bezier(0.2, 0.9, 0.2, 1);
}
.section-hero.hero-full .reveal.in {
  transform: none;
  filter: blur(0);
}

.section-hero.hero-full .hero-actions .cta,
.section-hero.hero-full .hero-actions .cta.primary {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .section-hero.hero-full::before {
    animation: none;
  }
  .section-hero.hero-full .reveal {
    transition-duration: 1ms !important;
    transform: none !important;
    filter: none !important;
  }
}

.form-feedback {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

#contactForm input:invalid,
#contactForm textarea:invalid {
  outline: none;
}

#contactForm input:focus:invalid,
#contactForm textarea:focus:invalid {
  border-color: rgba(220, 0, 0, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.12);
}

#contactForm input:focus:valid,
#contactForm textarea:focus:valid {
  border-color: rgba(0, 200, 120, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(0, 200, 120, 0.1);
}

.req {
  color: #ff3b3b;
  margin-left: 4px;
  font-weight: 600;
}

.form-hint {
  margin: 10px 0 14px;
  font-size: 13px;
  opacity: 0.75;
}

.form-note {
  margin: 12px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 60ch;
}

#contactForm .cta[type="submit"],
#contactForm button[type="submit"] {
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  transition: all 0.25s ease;
}

#contactForm .cta[type="submit"]:hover,
#contactForm button[type="submit"]:hover {
  background: #0b0f19;
  color: #ffffff;
  border-color: #0b0f19;
}

#contactForm button.cta[type="submit"]:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  transform: translateY(-1px) !important;
}

#contactForm button.cta[type="submit"] {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#contactForm button.cta[type="submit"]:hover {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

#contactForm button.cta[type="submit"]:disabled {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

#contactForm button.cta[type="submit"]:disabled:hover {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111;
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(40px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  background: #fff;
  color: #111;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
}

@media (max-width: 768px) {
  .toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }
}

body {
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.page-loaded {
  opacity: 1;
}
body.page-fadeout {
  opacity: 0;
}

.section-hero.hero-full::before {
  transform: translate3d(
      calc(var(--mx, 0) * 10px),
      calc(var(--my, 0) * 10px),
      0
    )
    scale(1.03);
}

.project-card .project-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.project-card .project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.project-card .project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.project-card:hover .project-thumb img {
  transform: scale(1.035);
}
.project-card:hover .project-thumb::after {
  opacity: 1;
}

.io-reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform, filter;
}
.io-reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.d2-cursor-dot,
.d2-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.d2-cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.d2-cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

body.cursor-hidden .d2-cursor-dot,
body.cursor-hidden .d2-cursor-ring {
  opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }
  .io-reveal {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
  .project-card .project-thumb img {
    transition: none;
  }
}

.logo-strip {
  overflow: hidden !important;
}
.logo-strip .container.wide {
  justify-content: flex-start !important;
}

.logo-strip .logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-strip .logos[data-marquee="true"] {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
  width: max-content !important;
  margin: 0 !important;
  padding: 0 !important;
  animation: d2LogoMarquee 24s linear infinite !important;
  will-change: transform;
}

.logo-strip .logos[data-marquee="true"] img {
  height: 34px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-strip .logos[data-marquee="true"] {
    gap: 36px !important;
  }
  .logo-strip .logos[data-marquee="true"] img {
    height: 28px !important;
  }
}

@keyframes d2LogoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-strip .logo-marquee {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .logo-strip .logo-marquee {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 1) 14%,
      rgba(0, 0, 0, 1) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 1) 14%,
      rgba(0, 0, 0, 1) 86%,
      transparent 100%
    );
  }
}

.logo-strip .container.wide {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.logo-strip .logo-marquee {
  width: 100% !important;
  margin: 0 auto;
}

.logo-strip .logos[data-marquee="true"] {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .logo-strip .logos[data-marquee="true"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.65);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.social svg {
  width: 18px;
  height: 18px;
  fill: #111;
  opacity: 0.9;
}
.social:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-1px);
}
.social:hover svg {
  fill: #fff;
  opacity: 1;
}

@media (max-width: 980px) {
  .topbar .social-links {
    display: none;
  }
  .drawer-social {
    margin-top: 18px;
  }
  .drawer-social .social-links {
    display: flex;
    justify-content: flex-start;
  }
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.footer-socials-inline {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials-inline a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.25s ease;
}

.footer-socials-inline a:hover {
  background: #000;
  color: #fff;
}

.footer-socials-inline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.footer-socials-inline a {
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}
.footer-socials-inline a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.footer-socials-inline a:active {
  transform: translateY(-1px) scale(1.01);
}
.footer-socials-inline a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.16);
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 980px) {
  footer .cols {
    gap: 28px !important;
  }
}
@media (max-width: 768px) {
  footer .cols {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  footer .small[style*="display:grid"] {
    gap: 10px !important;
  }
  .footer-socials-inline {
    margin-top: 12px !important;
  }
}

.footer-socials-inline a {
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 768px) {
  .logo-strip .logos[data-marquee="true"] {
    gap: 28px !important;
  }
  .logo-strip .logos[data-marquee="true"] img {
    height: 26px !important;
  }
}

@media (max-width: 768px) {
  .io-reveal {
    filter: blur(0) !important;
    transform: translateY(10px);
  }
}

@media (pointer: coarse) {
  .cta {
    transform: none !important;
  }
}

.logo-strip,
.logo-strip .logo-marquee {
  contain: layout paint;
}

section.dark {
  background:
    radial-gradient(
      900px 420px at 18% 30%,
      rgba(88, 76, 255, 0.35),
      rgba(0, 0, 0, 0) 55%
    ),
    radial-gradient(
      900px 420px at 86% 70%,
      rgba(0, 200, 255, 0.22),
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(135deg, #0f1020, #0a0f1f 60%, #071420);
}

.split.strip-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.card-glass.strip-card {
  padding: 28px;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .split.strip-split {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .card-glass.strip-card {
    padding: 22px;
  }
}

.onama-perfect-center {
  padding: 0;
}

.onama-perfect-center > .container {
  min-height: 520px;
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.onama-perfect-center .split {
  width: 100%;
}

.onama-perfect-center h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .onama-perfect-center > .container {
    min-height: auto;
    padding: 90px 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .onama-perfect-center > .container {
    padding: 72px 0;
  }
}

.dot,
.hero-dot,
.section-dot {
  background: linear-gradient(135deg, #0f1020, #0a0f1f 60%, #071420);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

:root {
  --stripe-dot-gradient: linear-gradient(135deg, #0f1020, #0a0f1f 60%, #071420);
}

.kicker .dot,
.scroll-indicator .dot,
.scroll-indicator .dot.active,
.dark .scroll-indicator .dot,
.dark .scroll-indicator .dot.active,
.dot,
.hero-dot,
.section-dot {
  background: var(--stripe-dot-gradient) !important;
}

html,
body {
  overflow-x: hidden;
}
html {
  -webkit-text-size-adjust: 100%;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.container,
.container.wide {
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}

@media (pointer: coarse) {
  a,
  button,
  .cta,
  .footer-socials-inline a {
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 18px;
  }
  .hero h1 {
    font-size: 34px !important;
    line-height: 1.06 !important;
  }
  .hero p.lead {
    font-size: 15px !important;
  }
  .kicker {
    font-size: 12px !important;
  }
  .cta {
    padding: 12px 16px !important;
  }
  .logo-strip .logos[data-marquee="true"] {
    gap: 22px !important;
  }
  .logo-strip .logos[data-marquee="true"] img {
    height: 24px !important;
  }
}

@media (max-width: 768px) {
  .card-glass {
    backdrop-filter: blur(14px);
  }
  .tilt,
  .magnetic {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .logo-strip .logos[data-marquee="true"] {
    animation: none !important;
    transform: none !important;
  }
}

#heroWord {
  display: inline-block;
  position: relative;
  will-change: transform, opacity;
}

#heroWord.is-glitching {
  animation: heroWordJitter 0.14s steps(2, end) 3;
}

#heroWord::before,
#heroWord::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

#heroWord.is-glitching::before {
  opacity: 0.95;
  transform: translate(-3px, 0);
  text-shadow: -3px 0 rgba(255, 0, 120, 0.7);
  clip-path: inset(0 0 45% 0);
}

#heroWord.is-glitching::after {
  opacity: 0.95;
  transform: translate(3px, 0);
  text-shadow: 3px 0 rgba(0, 210, 255, 0.7);
  clip-path: inset(55% 0 0 0);
}

@keyframes heroWordJitter {
  0% {
    transform: translate(2px, -1px) skewX(0deg);
  }
  25% {
    transform: translate(-3px, 1px) skewX(-3deg);
  }
  50% {
    transform: translate(3px, 1px) skewX(2deg);
  }
  75% {
    transform: translate(-2px, -1px) skewX(-2deg);
  }
  100% {
    transform: translate(0, 0) skewX(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  #heroWord.is-glitching {
    animation: none !important;
  }
  #heroWord::before,
  #heroWord::after {
    display: none !important;
  }
}

.hero-word-slot {
  display: inline-block;
  min-width: 8.6ch;
  vertical-align: baseline;
  white-space: nowrap;
}

#heroWord {
  display: inline-block;
  min-width: 100%;
  text-align: left;
  transform-origin: center center;
}

#heroWord.is-glitching {
  display: inline-block;
}

.section-hero .container,
.hero .container {
  align-items: center;
}

@media (min-width: 981px) {
  .section-hero {
    min-height: calc(100vh - 90px);
  }
  .section-hero .hero-inner,
  .hero .hero-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero-word-slot {
    min-width: 7.8ch;
  }
}

.section-hero.hero-full {
  min-height: calc(100svh - 74px) !important;
  display: block !important;
  padding: 0 !important;
}

.section-hero.hero-full > .container.wide {
  min-height: calc(100svh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 118px;
  padding-bottom: 96px;
}

.section-hero.hero-full .hero-logo {
  margin: 0 0 24px 0 !important;
}

.section-hero.hero-full h1,
.section-hero.hero-full h1.reveal,
.section-hero.hero-home h1,
.section-hero.hero-home h1.reveal {
  margin-top: 0;
}

.section-hero.hero-full .lead {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .section-hero.hero-full {
    min-height: auto !important;
  }

  .section-hero.hero-full > .container.wide {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 72px;
  }
}

@media (max-width: 768px) {
  .section-hero.hero-full > .container.wide {
    padding-top: 88px;
    padding-bottom: 64px;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-full > .container.wide {
    padding-top: 82px;
    padding-bottom: 56px;
  }
}

@media (min-width: 981px) {
  .section-hero.hero-full,
  .section-hero.hero-full.hero-home {
    min-height: calc(100svh - 74px) !important;
    padding: 0 !important;
  }

  .section-hero.hero-full > .container.wide,
  .section-hero.hero-full.hero-home > .container.wide {
    min-height: calc(100svh - 74px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 118px !important;
    padding-bottom: 118px !important;
  }
}

@media (max-width: 980px) {
  .section-hero.hero-full,
  .section-hero.hero-full.hero-home {
    min-height: auto !important;
    padding: 0 !important;
  }

  .section-hero.hero-full > .container.wide,
  .section-hero.hero-full.hero-home > .container.wide {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 104px !important;
    padding-bottom: 84px !important;
  }
}

@media (max-width: 768px) {
  .section-hero.hero-full > .container.wide,
  .section-hero.hero-full.hero-home > .container.wide {
    padding-top: 96px !important;
    padding-bottom: 72px !important;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-full > .container.wide,
  .section-hero.hero-full.hero-home > .container.wide {
    padding-top: 88px !important;
    padding-bottom: 64px !important;
  }
}

html.has-smooth-scroll {
  scroll-behavior: auto !important;
}
@media (min-width: 1024px) {
  html.has-smooth-scroll body {
    overscroll-behavior-y: none;
  }
}

.page-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  background: rgba(247, 247, 245, 0.14);
  transition: opacity 0.22s ease;
}
body.page-fadeout .page-transition-layer {
  opacity: 1;
}
body.page-loaded .page-transition-layer {
  opacity: 0;
}

.projects-grid {
  perspective: 1400px;
}
.project-card {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.12),
    rgba(0, 212, 255, 0.08),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.project-card:hover {
  box-shadow: 0 26px 80px rgba(14, 15, 18, 0.14);
  border-color: rgba(108, 99, 255, 0.22);
}
.project-card:hover::before {
  opacity: 1;
}
.project-card .project-info {
  transform: translateZ(18px);
}
.project-card .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.28s ease,
    letter-spacing 0.28s ease;
}
.project-card:hover .project-link {
  transform: translateX(4px);
  letter-spacing: 0.02em;
}
.project-card .project-thumb img {
  will-change: transform;
  transform-origin: center center;
}
.project-card.is-active .project-thumb img {
  transform: scale(1.055);
}
.project-card.is-active::after {
  opacity: 1;
}

.section-hero .container.wide,
.section-hero .container {
  position: relative;
  z-index: 2;
}
.section-hero::after {
  content: "";
  position: absolute;
  inset: auto auto 8% 8%;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.11),
    transparent 66%
  );
  filter: blur(14px);
  transform: translate3d(
    calc(var(--mx, 0) * 18px),
    calc(var(--my, 0) * 18px),
    0
  );
  pointer-events: none;
}

.io-reveal {
  transform: translateY(22px) scale(0.985);
}
.io-reveal.in {
  transform: none;
}

body.is-smooth-scrolling .topbar {
  backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
  .page-transition-layer {
    display: none;
  }
  .project-card,
  .project-card:hover {
    transform: none !important;
  }
}

section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section-hero,
.logo-strip,
.topbar {
  content-visibility: visible;
}

.city-landing {
  min-height: auto !important;
  padding-top: 54px !important;
  padding-bottom: 96px !important;
}
.city-shell {
  position: relative;
}
.city-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 38px;
  align-items: center;
}
.city-copy .lead {
  max-width: 60ch;
}
.city-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.city-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-showcase {
  position: relative;
  width: min(100%, 540px);
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 255, 255, 0.68)
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(11, 13, 18, 0.1);
  overflow: hidden;
}
.city-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(108, 99, 255, 0.1),
      rgba(0, 212, 255, 0.04) 55%,
      transparent 70%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.8),
      transparent 38%
    );
  pointer-events: none;
}
.city-showcase-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  background: rgba(11, 13, 18, 0.92);
  color: #fff;
}
.city-chip-soft {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 13, 18, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.city-showcase-title {
  position: relative;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 860;
  max-width: 12ch;
  margin-bottom: 24px;
}
.city-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.city-metric {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.city-metric strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}
.city-metric span,
.city-mini-card span {
  font-size: 13px;
  color: rgba(11, 13, 18, 0.64);
}
.city-mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.city-mini-card {
  padding: 16px 16px 18px;
  border-radius: 20px;
  background: rgba(11, 13, 18, 0.94);
  color: #fff;
}
.city-mini-card strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.city-mini-card span {
  color: rgba(255, 255, 255, 0.66);
}
.city-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  pointer-events: none;
}
.city-orb-a {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(108, 99, 255, 0.24),
    rgba(108, 99, 255, 0.02) 70%
  );
  top: 30px;
  right: 30px;
}
.city-orb-b {
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 212, 255, 0.2),
    rgba(0, 212, 255, 0.02) 72%
  );
  bottom: 24px;
  left: 18px;
}
.city-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}
.city-story {
  padding: 28px;
}
.city-story-main h2 {
  max-width: 14ch;
}
.city-story-side h3,
.city-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
}
.city-service-card {
  position: relative;
  padding-top: 54px;
}
.city-service-no {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 13, 18, 0.36);
}
.section-head {
  margin-bottom: 26px;
}
.section-head h2 {
  max-width: 14ch;
}
.city-services-grid .lead {
  max-width: 56ch;
}
.city-wide-card {
  padding-right: min(18vw, 200px);
}
.city-projects-grid .project-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.08);
}
.city-projects-grid .project-thumb {
  aspect-ratio: 16 / 10.8;
}
.city-projects-grid .project-info {
  padding: 18px 18px 20px;
}
.city-copy-band {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.68)
  );
  box-shadow: 0 22px 60px rgba(11, 13, 18, 0.06);
}
.city-copy-band__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.48);
}
.city-copy-band__content h2 {
  max-width: 15ch;
}
.city-copy-band__content p {
  font-size: 17px;
  color: rgba(11, 13, 18, 0.76);
  max-width: 70ch;
}
.city-contact-band {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
}
@media (max-width: 1100px) {
  .city-hero-grid,
  .city-story-grid,
  .city-copy-band {
    grid-template-columns: 1fr;
  }
  .city-visual {
    min-height: 420px;
  }
  .city-wide-card {
    padding-right: 22px;
  }
  .city-copy-band__eyebrow {
    margin-bottom: 8px;
  }
}
@media (max-width: 760px) {
  .city-landing {
    padding-top: 32px !important;
    padding-bottom: 72px !important;
  }
  .city-hero-grid {
    gap: 26px;
  }
  .city-visual {
    min-height: auto;
  }
  .city-showcase {
    padding: 22px;
    border-radius: 24px;
  }
  .city-showcase-title {
    max-width: none;
    font-size: clamp(24px, 8vw, 34px);
  }
  .city-metrics,
  .city-mini-grid {
    grid-template-columns: 1fr;
  }
  .city-copy-band {
    padding: 24px;
  }
  .city-story {
    padding: 24px;
  }
}

.city-logo-strip {
  position: relative;
  padding: 10px 0 2px;
  background: transparent;
}
.city-logo-strip::before,
.city-logo-strip::after {
  display: none !important;
}
.city-logo-strip .container.wide {
  overflow: hidden;
}
.city-logo-strip .logo-marquee {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.city-logo-strip .logos[data-marquee="true"] {
  gap: 54px;
  align-items: center;
}
.city-logo-strip .logos[data-marquee="true"] img {
  opacity: 0.42;
  filter: grayscale(1) contrast(0.96);
  height: 34px;
  width: auto;
}
.city-logo-strip .logos[data-marquee="true"] img:hover {
  opacity: 0.72;
  filter: grayscale(1) contrast(1);
}

.city-visual {
  min-height: 520px;
}
.city-visual-shell {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  display: grid;
  gap: 18px;
}
.city-hero-frame {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 80px rgba(11, 13, 18, 0.1);
  min-height: 368px;
  background: #eff3f8;
  text-decoration: none;
  color: inherit;
}
.city-hero-frame-media,
.city-hero-frame-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.city-hero-frame-media img {
  object-fit: cover;
  object-position: top center;
}
.city-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 12, 18, 0.04) 0%,
    rgba(9, 12, 18, 0.14) 46%,
    rgba(9, 12, 18, 0.72) 100%
  );
}
.city-hero-frame-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
}
.city-hero-frame-overlay strong {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.city-hero-frame-overlay span:last-child {
  max-width: 520px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}
.city-hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.city-hero-mini-card {
  min-height: 142px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.74)
  );
  box-shadow: 0 20px 56px rgba(11, 13, 18, 0.06);
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 8px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.city-hero-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(11, 13, 18, 0.1);
}
.city-hero-mini-card strong {
  font-size: 22px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.city-hero-mini-card span:last-child {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(11, 13, 18, 0.68);
}
.city-hero-mini-card-dark {
  background: linear-gradient(
    180deg,
    rgba(11, 13, 18, 0.96),
    rgba(18, 22, 30, 0.92)
  );
  color: #fff;
}
.city-hero-mini-card-dark span:last-child {
  color: rgba(255, 255, 255, 0.74);
}
.city-preview-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.city-hero-mini-card .city-preview-kicker {
  background: rgba(11, 13, 18, 0.06);
  color: #0f172a;
  backdrop-filter: none;
}
.city-hero-mini-card-dark .city-preview-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-band.city-contact-band .cta.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1100px) {
  .city-visual-shell {
    width: min(100%, 500px);
  }
  .city-hero-frame {
    min-height: 332px;
  }
}
@media (max-width: 760px) {
  .city-logo-strip {
    padding: 0 0 2px;
  }
  .city-logo-strip .logos[data-marquee="true"] {
    gap: 34px;
  }
  .city-logo-strip .logos[data-marquee="true"] img {
    height: 26px;
    opacity: 0.38;
  }
  .city-visual-shell {
    width: 100%;
    gap: 14px;
  }
  .city-hero-frame {
    min-height: 250px;
    border-radius: 24px;
  }
  .city-hero-frame-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .city-hero-mini-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .city-hero-mini-card {
    min-height: auto;
  }
  .contact-band.city-contact-band {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .contact-band.city-contact-band h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }
  .contact-band.city-contact-band .actions {
    justify-content: flex-start;
  }
}

.case-overview {
  padding-top: 6px;
}
.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.case-summary-card,
.case-story-card,
.case-live-card {
  border: 1px solid rgba(11, 13, 18, 0.1);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(11, 13, 18, 0.06);
}
.case-summary-card {
  padding: 18px 18px 16px;
  min-height: 104px;
}
.case-summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.case-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.46);
}
.case-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.22);
}
.case-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.case-story-card {
  padding: 28px;
}
.case-story-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.case-story-card p,
.case-live-card p {
  margin: 0;
  color: rgba(11, 13, 18, 0.72);
}
.case-story-card ul {
  margin: 14px 0 0 18px;
  color: rgba(11, 13, 18, 0.76);
}
.case-story-card li + li {
  margin-top: 8px;
}
.case-story-card.wide,
.case-live-card {
  grid-column: span 2;
}
.case-live-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(135deg, #0d172b 0%, #17263f 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(9, 18, 35, 0.22);
}
.case-live-card .case-eyebrow,
.case-live-card p {
  color: rgba(255, 255, 255, 0.76);
}
.case-live-card .case-eyebrow::before {
  background: rgba(255, 255, 255, 0.32);
}
.case-live-card h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #fff;
}
.case-live-card .case-actions {
  margin-top: 0;
}
.case-live-card .cta {
  background: #ffffff;
  color: #0d172b !important;
  border-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}
.case-live-card .cta:hover {
  background: #f5f7fb;
  color: #0d172b !important;
  border-color: #f5f7fb;
}
.case-live-card .cta.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff !important;
  background: transparent;
  box-shadow: none;
}
.case-live-card .cta.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff !important;
}
.case-live-card .cta span {
  color: inherit !important;
}
@media (max-width: 1100px) {
  .case-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .case-summary-grid,
  .case-story-grid {
    grid-template-columns: 1fr;
  }
  .case-story-card.wide,
  .case-live-card {
    grid-column: auto;
  }
  .case-story-card,
  .case-live-card {
    padding: 22px;
  }
  .case-live-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.featured-project-card {
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 420px;
  padding: 0;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(246, 248, 252, 0.98)
  );
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}
.featured-project-card--1,
.featured-project-card--4 {
  grid-column: span 7;
}
.featured-project-card--2,
.featured-project-card--3 {
  grid-column: span 5;
}
.featured-project-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  right: -90px;
  top: -90px;
  background: radial-gradient(
    circle,
    rgba(63, 94, 251, 0.16) 0%,
    rgba(63, 94, 251, 0) 68%
  );
  z-index: 0;
  pointer-events: none;
}
.featured-project-media-wrap {
  position: relative;
  overflow: hidden;
  min-height: 248px;
}
.featured-project-image {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  display: block;
}
.featured-project-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(7, 10, 20, 0.78),
    rgba(7, 10, 20, 0.46)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: #fff;
}
.featured-project-kicker,
.featured-project-view,
.featured-project-status,
.featured-project-index {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.featured-project-view {
  opacity: 0.92;
  white-space: nowrap;
}
.featured-project-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px 22px 24px;
}
.featured-project-meta,
.featured-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.featured-project-meta {
  color: var(--muted);
}
.featured-project-line {
  flex: 1 1 auto;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.18),
    rgba(15, 23, 42, 0)
  );
}
.featured-project-card h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.featured-project-card .lead {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.featured-project-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.featured-project-pills .pill {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.08);
}
.featured-project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.featured-project-link::after {
  content: "↗";
  transition: transform 0.28s ease;
}
.featured-project-empty-state {
  grid-column: 1/-1;
  padding: 28px;
  border-radius: 26px;
  border: 1px dashed rgba(15, 23, 42, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(248, 250, 252, 0.92)
  );
}
@media (min-width: 981px) {
  .featured-project-card:nth-child(3n) {
    transform: translateY(24px);
  }
}
@media (max-width: 1200px) {
  .featured-project-card,
  .featured-project-card--1,
  .featured-project-card--2,
  .featured-project-card--3,
  .featured-project-card--4 {
    grid-column: span 6;
  }
}
@media (max-width: 900px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-project-card,
  .featured-project-card--1,
  .featured-project-card--2,
  .featured-project-card--3,
  .featured-project-card--4 {
    grid-column: span 1;
    min-height: unset;
  }
  .featured-project-media-wrap,
  .featured-project-image {
    min-height: 220px;
  }
}
@media (max-width: 640px) {
  .featured-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .featured-project-card {
    border-radius: 24px;
  }
  .featured-project-body {
    padding: 18px 18px 20px;
    gap: 14px;
  }
  .featured-project-overlay {
    inset: auto 12px 12px 12px;
    padding: 12px 13px;
    border-radius: 16px;
  }
  .featured-project-card h3 {
    font-size: clamp(24px, 8vw, 32px);
  }
  .featured-project-footer {
    align-items: flex-start;
  }
}

.featured-project-card {
  padding: 22px;
  border-radius: 26px;
  gap: 0;
}
.featured-project-card h3 {
  margin: 2px 0 12px;
}
.featured-project-card .lead {
  flex: 1 1 auto;
  margin-bottom: 0;
}
.featured-project-pills {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px !important;
}
.featured-project-pills .pill {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .featured-projects-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
  .featured-project-card .lead {
    min-height: 132px;
  }
  .case-live-card {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .container,
  .container.wide {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .section-head {
    margin-bottom: 20px !important;
  }
  .section-head h2 {
    max-width: none !important;
  }
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .featured-project-card .lead {
    min-height: 0 !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
  .container,
  .container.wide {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  section {
    scroll-margin-top: 92px;
  }
  .section-head {
    margin-bottom: 18px !important;
  }
  .section-head h2 {
    font-size: clamp(30px, 8vw, 42px) !important;
    line-height: 1.06 !important;
    max-width: none !important;
  }
  .lead,
  p.lead,
  .section-hero.hero-full .lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
  .card,
  .featured-project-card,
  .case-story-card,
  .case-live-card,
  .case-summary-card {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .featured-projects-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-image {
    aspect-ratio: 16 / 9;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
  }
  .featured-project-card h3 {
    margin-bottom: 10px;
  }
  .featured-project-pills {
    padding-top: 12px !important;
    gap: 8px !important;
  }
  .pill,
  .badge {
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero-actions,
  .actions,
  .cta-row,
  .case-live-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-actions .cta,
  .actions .cta,
  .cta-row .cta,
  .case-live-actions .cta,
  .case-live-card .cta {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .case-summary-grid,
  .case-story-grid {
    gap: 14px !important;
  }
  .case-live-card {
    gap: 18px !important;
  }
  .logo-strip .container.wide,
  .city-logo-strip .container.wide {
    gap: 24px !important;
  }
  footer .container,
  .site-footer .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 560px) {
  .hero-full,
  .section-hero.hero-full,
  .section-hero.hero-full.hero-home {
    min-height: auto !important;
    padding-top: 88px !important;
    padding-bottom: 42px !important;
  }
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal,
  .section-hero.hero-full h1,
  .section-hero.hero-home h1 {
    font-size: clamp(38px, 10vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }
  .hero-logo img {
    height: 52px !important;
  }
  .featured-project-card,
  .case-live-card,
  .case-story-card,
  .case-summary-card {
    padding: 16px !important;
  }
}

.card {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  will-change: transform, box-shadow;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0) 46%,
    rgba(11, 13, 18, 0.03)
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.2);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
}
.card:hover::after {
  opacity: 1;
}
.dark .card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.card a.mini-link,
.card .mini-link,
.card .project-link {
  transition:
    transform 0.25s ease,
    letter-spacing 0.25s ease,
    opacity 0.25s ease;
}
.card:hover a.mini-link,
.card:hover .mini-link,
.card:hover .project-link {
  transform: translateX(4px);
  letter-spacing: 0.01em;
}
.featured-project-card {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}
.featured-project-card .featured-project-image {
  transition:
    transform 0.55s ease,
    filter 0.4s ease;
}
.featured-project-card:hover .featured-project-image {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.02);
}
.city-kpi,
.city-hero-mini-card,
.city-portfolio-card,
.case-summary-card,
.case-metric,
.case-live-card {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}
.city-kpi:hover,
.city-hero-mini-card:hover,
.city-portfolio-card:hover,
.case-summary-card:hover,
.case-metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}
.case-live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(4, 12, 28, 0.22);
}
@media (max-width: 980px) {
  .card:hover,
  .city-kpi:hover,
  .city-hero-mini-card:hover,
  .city-portfolio-card:hover,
  .case-summary-card:hover,
  .case-metric:hover,
  .case-live-card:hover {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .card,
  .card::after,
  .featured-project-card .featured-project-image,
  .card a.mini-link,
  .card .mini-link,
  .card .project-link,
  .city-kpi,
  .city-hero-mini-card,
  .city-portfolio-card,
  .case-summary-card,
  .case-metric,
  .case-live-card {
    transition: none !important;
  }
}

.city-landing {
  padding-top: 28px !important;
  padding-bottom: 78px !important;
}
.city-landing .container.wide {
  max-width: 1380px;
}
.city-copy {
  max-width: 960px !important;
}
.city-copy .hero-title,
.city-copy h1.hero-title {
  font-size: clamp(54px, 4.9vw, 78px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  margin: 10px 0 16px !important;
  max-width: 12.2ch !important;
}
.city-copy .lead {
  max-width: 44ch !important;
}
.city-copy .hero-actions {
  margin-top: 20px !important;
}
.city-copy .city-trust {
  margin-top: 16px !important;
}
@media (min-width: 1280px) {
  .city-landing {
    padding-top: 18px !important;
    padding-bottom: 72px !important;
  }
  .city-copy .hero-title,
  .city-copy h1.hero-title {
    font-size: clamp(58px, 4.6vw, 84px) !important;
    max-width: 11.6ch !important;
  }
}
@media (max-width: 980px) {
  .city-landing {
    padding-top: 20px !important;
    padding-bottom: 62px !important;
  }
  .city-copy .hero-title,
  .city-copy h1.hero-title {
    font-size: clamp(44px, 8vw, 64px) !important;
    max-width: 12.5ch !important;
    margin-bottom: 14px !important;
  }
}
@media (max-width: 560px) {
  .city-landing {
    padding-top: 12px !important;
    padding-bottom: 54px !important;
  }
  .city-copy .hero-title,
  .city-copy h1.hero-title {
    font-size: clamp(34px, 9.5vw, 54px) !important;
    line-height: 0.99 !important;
    max-width: none !important;
    margin: 8px 0 14px !important;
  }
  .city-copy .lead {
    max-width: none !important;
  }
}

.card,
.project-card,
.featured-project-card,
.city-kpi,
.case-summary-card,
.case-metric,
.case-live-card,
.city-smart-links,
.city-contact-band {
  will-change: transform, box-shadow, border-color;
}
.card::before,
.project-card::after,
.featured-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0) 42%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.card:hover,
.project-card:hover,
.featured-project-card:hover,
.city-kpi:hover,
.case-summary-card:hover,
.case-metric:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12) !important;
}
.card:hover::before,
.project-card:hover::after,
.featured-project-card:hover::after {
  opacity: 1;
}
.project-card:hover .project-thumb img,
.featured-project-card:hover .featured-project-image {
  transform: scale(1.055) translateY(-2px);
}
.project-card:hover .project-info h3,
.featured-project-card:hover h3,
.card:hover h3 {
  color: #0f172a;
}
.project-card .project-info h3,
.featured-project-card h3,
.card h3 {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.project-card:hover .project-info h3,
.featured-project-card:hover h3,
.card:hover h3 {
  transform: translateY(-1px);
}
.project-card .project-link,
.featured-project-card .project-link,
.card .mini-link {
  position: relative;
}
.project-card .project-link::after,
.featured-project-card .project-link::after,
.card .mini-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: width 0.28s ease;
}
.project-card:hover .project-link::after,
.featured-project-card:hover .project-link::after,
.card:hover .mini-link::after {
  width: 100%;
}
@media (max-width: 980px) {
  .card:hover,
  .project-card:hover,
  .featured-project-card:hover,
  .city-kpi:hover,
  .case-summary-card:hover,
  .case-metric:hover {
    transform: translateY(-4px) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card::before,
  .project-card::after,
  .featured-project-card::after {
    transition: none !important;
  }
}

@media (min-width: 981px) {
  .section-hero.hero-full.city-landing {
    min-height: auto !important;
    padding: 0 !important;
  }

  .section-hero.hero-full.city-landing > .container.wide,
  .section-hero.hero-full.city-landing .container.wide.city-shell {
    min-height: auto !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding-top: 72px !important;
    padding-bottom: 54px !important;
  }

  .section-hero.hero-full.city-landing .hero-logo {
    margin-bottom: 18px !important;
  }

  .section-hero.hero-full.city-landing .city-copy .hero-title,
  .section-hero.hero-full.city-landing .city-copy h1.hero-title {
    font-size: clamp(52px, 4.35vw, 74px) !important;
    max-width: 12.1ch !important;
    margin: 8px 0 14px !important;
  }

  .section-hero.hero-full.city-landing .city-copy .lead {
    max-width: 42ch !important;
    margin-top: 14px !important;
  }

  .section-hero.hero-full.city-landing .city-copy .hero-actions {
    margin-top: 18px !important;
  }

  .section-hero.hero-full.city-landing .city-copy .city-trust {
    margin-top: 14px !important;
  }
}

.testimonials-section {
  position: relative;
  padding: 48px 0 18px;
  background:
    radial-gradient(circle at 15% 0%, rgba(70, 85, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.03) 100%);
}
.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.testimonials-shell {
  position: relative;
  margin-top: 26px;
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(8, 15, 31, 0.96),
    rgba(12, 28, 59, 0.92) 42%,
    rgba(4, 77, 108, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.22);
  overflow: hidden;
}
.testimonials-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(96, 165, 250, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(99, 102, 241, 0.18),
      transparent 28%
    );
  pointer-events: none;
}
.testimonials-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.testimonials-marquee {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: d2TestimonialsMarquee 46s linear infinite;
  will-change: transform;
}
.testimonials-shell:hover .testimonials-track {
  animation-play-state: paused;
}
@keyframes d2TestimonialsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}
.testimonial-card-finalboss {
  position: relative;
  min-width: min(410px, calc(100vw - 82px));
  max-width: 410px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.16);
  display: grid;
  gap: 18px;
  backdrop-filter: blur(18px);
  color: #f8fafc;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}
.testimonial-card-finalboss:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(2, 6, 23, 0.28);
  border-color: rgba(148, 163, 184, 0.24);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.08)
  );
}
.testimonial-noise {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}
.testimonial-card-top,
.testimonial-card-bottom,
.testimonial-person,
.testimonial-name-row {
  display: flex;
  align-items: center;
}
.testimonial-card-top {
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.testimonial-person {
  gap: 14px;
  min-width: 0;
}
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(191, 219, 254, 0.95),
    rgba(224, 231, 255, 0.95)
  );
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.testimonial-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-avatar-fallback {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #1d4ed8;
}
.testimonial-name-row {
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.1;
}
.testimonial-name-row strong {
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #fff;
}
.testimonial-company {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.18);
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(191, 219, 254, 0.18);
}
.testimonial-role {
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
}
.testimonial-stars {
  flex: 0 0 auto;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #fbbf24;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.24);
}
.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.02em;
  color: #f8fafc;
}
.testimonial-card-bottom {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}
.testimonial-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
}
.testimonial-site.is-passive {
  color: #cbd5e1;
  opacity: 0.85;
}
.testimonial-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
}
.testimonial-loading {
  padding: 32px 20px;
  color: #cbd5e1;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .testimonial-card-finalboss {
    min-width: min(82vw, 360px);
    max-width: 360px;
  }
}
@media (max-width: 640px) {
  .testimonials-section {
    padding-top: 18px;
  }
  .testimonials-shell {
    padding: 14px;
    border-radius: 24px;
  }
  .testimonials-shell::after {
    border-radius: 23px;
  }
  .testimonials-track {
    gap: 14px;
  }
  .testimonial-card-finalboss {
    min-width: 82vw;
    padding: 18px;
    border-radius: 20px;
  }
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.65;
  }
  .testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .testimonial-stars {
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}

.featured-projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 10px;
}
.featured-project-card,
.featured-project-card--1,
.featured-project-card--2,
.featured-project-card--3,
.featured-project-card--4 {
  grid-column: span 1 !important;
  min-height: unset !important;
  border-radius: 28px !important;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7f8fb) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07) !important;
}
.featured-project-card::after,
.featured-project-orb,
.featured-project-meta,
.featured-project-line,
.featured-project-overlay {
  display: none !important;
  content: none !important;
}
.featured-project-media-wrap {
  min-height: 220px !important;
  position: relative !important;
  overflow: hidden !important;
  background: #eef2ff;
}
.featured-project-image {
  min-height: 220px !important;
  transform: none !important;
  transition: transform 0.45s ease !important;
}
.featured-project-card:hover .featured-project-image {
  transform: scale(1.04) !important;
}
.featured-project-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.featured-project-body {
  padding: 18px 18px 20px !important;
  gap: 14px !important;
  display: grid !important;
}
.featured-project-card h3 {
  font-size: clamp(28px, 2vw, 34px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  margin: 0 !important;
}
.featured-project-card .lead {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  min-height: 82px;
}
.featured-project-footer {
  align-items: flex-end !important;
  gap: 14px !important;
  justify-content: space-between !important;
}
.featured-project-pills {
  gap: 8px !important;
}
.featured-project-pills .pill {
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: none !important;
}
.featured-project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}
.featured-project-link::after {
  content: "↗";
  font-size: 13px;
}

.testimonials-section {
  padding: 42px 0 36px !important;
}
.testimonials-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px) !important;
  align-items: end !important;
  gap: 28px !important;
  margin-bottom: 24px !important;
}
.testimonials-head .lead {
  max-width: 520px;
  margin: 0;
}
.testimonials-shell {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.testimonials-shell::before,
.testimonials-shell::after {
  display: none !important;
  content: none !important;
}
.testimonials-marquee {
  overflow: visible !important;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card-finalboss {
  min-width: 0 !important;
  max-width: none !important;
  padding: 22px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
  color: #0f172a !important;
}
.testimonial-card-finalboss:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.09) !important;
}
.testimonial-noise {
  display: none !important;
}
.testimonial-name-row strong {
  color: #0f172a !important;
}
.testimonial-role {
  color: #64748b !important;
}
.testimonial-quote {
  color: #1e293b !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}
.testimonial-card-bottom {
  padding-top: 12px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.testimonial-site {
  color: #0f172a !important;
  font-weight: 800 !important;
}
.testimonial-site.is-passive {
  color: #475569 !important;
  opacity: 1 !important;
}
.testimonial-chip {
  display: none !important;
}
.testimonial-company {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.14) !important;
  color: #2563eb !important;
}

.dark + .footer,
.testimonials-section + .dark {
  margin-top: 0 !important;
}
.testimonials-section .container.wide {
  padding-bottom: 0 !important;
}

.blog-page {
  padding-top: 26px;
  padding-bottom: 72px;
}
.blog-hero {
  padding: 34px 0 24px;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: end;
}
.blog-hero-copy .eyebrow {
  margin-bottom: 18px;
}
.blog-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 11ch;
}
.blog-hero-copy .lead {
  margin: 18px 0 0;
  max-width: 56ch;
}
.blog-hero-card {
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(24, 31, 60, 0.96),
    rgba(4, 26, 49, 0.98)
  );
  color: #e2e8f0;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}
.blog-hero-card h3 {
  margin: 0 0 10px;
  color: #fff;
}
.blog-hero-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
}
.blog-card-media {
  position: relative;
  min-height: 220px;
  background: #e2e8f0;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}
.blog-card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 20px 20px 22px;
}
.blog-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.blog-card h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.blog-card p {
  margin: 0;
  color: #475569;
  line-height: 1.72;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #0f172a;
}
.blog-empty {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}
.article-page {
  padding-top: 18px;
  padding-bottom: 76px;
}
.article-hero {
  padding: 36px 0 22px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #475569;
  margin-bottom: 18px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-head {
  display: grid;
  gap: 18px;
}
.article-head h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 14ch;
}
.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}
.article-cover {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
}
.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.article-body {
  margin-top: 24px;
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  font-size: 18px;
  line-height: 1.9;
  color: #1e293b;
}
.article-body h2,
.article-body h3 {
  margin: 1.6em 0 0.6em;
  line-height: 1.1;
  color: #0f172a;
}
.article-body p {
  margin: 0 0 1em;
}
.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}
.article-side-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}
.article-side-card h3 {
  margin: 0 0 10px;
}
.article-side-card p {
  margin: 0;
  color: #475569;
  line-height: 1.72;
}
.article-side-card .cta {
  margin-top: 16px;
}
@media (max-width: 1100px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonials-grid,
  .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-hero-grid,
  .article-layout,
  .testimonials-head {
    grid-template-columns: 1fr !important;
  }
  .article-sidebar {
    position: static;
  }
}
@media (max-width: 720px) {
  .featured-projects-grid,
  .testimonials-grid,
  .blog-list-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card .lead {
    min-height: 0;
  }
  .testimonials-section {
    padding: 32px 0 28px !important;
  }
  .blog-page,
  .article-page {
    padding-top: 14px;
  }
  .blog-hero-copy h1 {
    font-size: clamp(36px, 11vw, 54px);
    max-width: none;
  }
  .article-head h1 {
    font-size: clamp(32px, 11vw, 48px);
    max-width: none;
  }
  .article-body {
    padding: 20px;
    font-size: 17px;
  }
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin-top: 18px !important;
}
.featured-project-card,
.featured-project-card--1,
.featured-project-card--2,
.featured-project-card--3,
.featured-project-card--4,
.featured-project-card-clean {
  grid-column: span 1 !important;
  min-height: 100% !important;
  border-radius: 26px !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05) !important;
  overflow: hidden !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
}
.featured-project-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}
.featured-project-card::after,
.featured-project-orb,
.featured-project-meta,
.featured-project-line,
.featured-project-overlay,
.featured-project-badge {
  display: none !important;
  content: none !important;
}
.featured-project-media-wrap {
  min-height: 190px !important;
  background: #eef2f7 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}
.featured-project-image {
  width: 100% !important;
  height: 190px !important;
  min-height: 190px !important;
  object-fit: cover !important;
  transform: none !important;
  transition: transform 0.45s ease !important;
}
.featured-project-card:hover .featured-project-image {
  transform: scale(1.03) !important;
}
.featured-project-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding: 20px 20px 22px !important;
}
.featured-project-card h3 {
  margin: 0 !important;
  font-size: clamp(22px, 1.8vw, 28px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
}
.featured-project-card .lead {
  margin: 0 !important;
  color: #536275 !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  min-height: 78px !important;
}
.featured-project-footer {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
}
.featured-project-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
.featured-project-pills .pill {
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: none !important;
  color: #0f172a !important;
}
.featured-project-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.featured-project-link::after {
  content: "↗";
  font-size: 13px;
}

.testimonials-section {
  padding: 26px 0 18px !important;
}
.testimonials-head,
.testimonials-head--single {
  display: block !important;
  margin-bottom: 18px !important;
}
.testimonials-head .lead {
  display: none !important;
}
.testimonials-shell {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.testimonials-shell::before,
.testimonials-shell::after {
  display: none !important;
  content: none !important;
}
.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.testimonial-card-finalboss,
.testimonial-card-clean {
  min-width: 0 !important;
  padding: 22px !important;
  border-radius: 24px !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05) !important;
  color: #0f172a !important;
}
.testimonial-card-finalboss:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}
.testimonial-card-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 14px !important;
}
.testimonial-person {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}
.testimonial-avatar {
  width: 58px !important;
  height: 58px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #e8eefc, #dbe7ff) !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
}
.testimonial-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.testimonial-avatar-fallback {
  font-size: 28px !important;
  color: #2456d3 !important;
  font-weight: 800 !important;
}
.testimonial-name-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
.testimonial-name-row strong {
  font-size: 17px !important;
  color: #0f172a !important;
}
.testimonial-company {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.testimonial-role {
  margin-top: 6px !important;
  color: #64748b !important;
  font-size: 14px !important;
}
.testimonial-stars {
  color: #f59e0b !important;
  font-size: 15px !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap !important;
}
.testimonial-quote {
  margin: 18px 0 0 !important;
  color: #1f2937 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.testimonial-card-bottom {
  margin-top: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.testimonial-site {
  color: #0f172a !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}
.testimonial-site:hover {
  text-decoration: underline !important;
}
.testimonial-site.is-passive,
.testimonial-chip,
.testimonial-noise {
  display: none !important;
}
.testimonials-section + .dark {
  margin-top: 10px !important;
}

.blog-page {
  padding-top: 16px !important;
  padding-bottom: 64px !important;
}
.blog-hero {
  padding: 22px 0 12px !important;
}
.blog-hero-copy h1 {
  max-width: 12ch !important;
}
.blog-list-grid {
  margin-top: 12px !important;
}

@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  .featured-projects-grid,
  .testimonials-grid,
  .blog-list-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card .lead {
    min-height: 0 !important;
  }
  .featured-project-media-wrap,
  .featured-project-image {
    height: 220px !important;
    min-height: 220px !important;
  }
}

.featured-projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.featured-project-card-v2 {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  background: linear-gradient(180deg, #ffffff, #fbfbfc) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 30px !important;
  padding: 14px !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05) !important;
  text-decoration: none !important;
  overflow: hidden !important;
}
.featured-project-card-v2:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09) !important;
}
.featured-project-media-wrap-v2 {
  min-height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
}
.featured-project-media-wrap-v2 .featured-project-image {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  object-fit: cover !important;
}
.featured-project-body-v2 {
  padding: 18px 4px 4px !important;
  gap: 12px !important;
}
.featured-project-type {
  display: inline-flex !important;
  width: max-content !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(108, 99, 255, 0.08) !important;
  color: #44516b !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.featured-project-card-v2 h3 {
  font-size: clamp(22px, 1.8vw, 32px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
  margin: 0 !important;
}
.featured-project-card-v2 .lead {
  margin: 0 !important;
  min-height: 0 !important;
  color: #5b6373 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.featured-project-footer-v2 {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
  align-items: flex-end !important;
  gap: 12px !important;
}
.featured-project-pills {
  gap: 8px !important;
}
.featured-project-pills .pill {
  padding: 8px 11px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.featured-project-link {
  font-size: 14px !important;
  font-weight: 800 !important;
}

.testimonials-section {
  padding: 26px 0 24px !important;
}
.testimonials-head {
  margin-bottom: 18px !important;
}
.testimonials-grid-v2 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.testimonial-card-v2 {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff, #fbfbfd) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05) !important;
}
.testimonial-card-v2 .testimonial-quote {
  margin: 0 0 22px !important;
  color: #1e293b !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}
.testimonial-card-bottom-v2 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 16px !important;
}
.testimonial-name-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
.testimonial-name-row strong {
  font-size: 15px !important;
  color: #0f172a !important;
}
.testimonial-company {
  display: inline-flex !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  background: rgba(108, 99, 255, 0.08) !important;
  color: #3b5bcc !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.testimonial-role {
  margin-top: 6px !important;
  color: #64748b !important;
  font-size: 14px !important;
}
.testimonial-avatar {
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  background: linear-gradient(
    135deg,
    rgba(76, 129, 255, 0.18),
    rgba(108, 99, 255, 0.1)
  ) !important;
  color: #2753d7 !important;
}
.testimonial-site {
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.testimonials-section + .dark {
  margin-top: 4px !important;
}

@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonials-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 740px) {
  .featured-projects-grid,
  .testimonials-grid-v2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card-v2,
  .testimonial-card-v2 {
    border-radius: 24px !important;
  }
  .testimonial-card-bottom-v2 {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

.featured-projects-grid {
  align-items: stretch !important;
}
.featured-project-card-v2 {
  height: 100% !important;
}
.featured-project-body-v2 {
  display: grid !important;
  grid-template-rows: auto minmax(78px, auto) minmax(92px, 1fr) auto !important;
  align-content: start !important;
  min-height: 100% !important;
}
.featured-project-card-v2 h3 {
  min-height: 78px !important;
  display: block !important;
}
.featured-project-card-v2 .lead {
  min-height: 92px !important;
}
.featured-project-footer-v2 {
  margin-top: 0 !important;
}
@media (max-width: 1180px) {
  .featured-project-body-v2 {
    grid-template-rows: auto auto auto auto !important;
  }
  .featured-project-card-v2 h3,
  .featured-project-card-v2 .lead {
    min-height: 0 !important;
  }
}

.blog-hero-copy .lead,
.blog-hero-card p,
.blog-empty p {
  max-width: unset !important;
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}
.featured-project-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  padding: 14px !important;
  border-radius: 30px !important;
  background: linear-gradient(180deg, #fff, #fbfcff) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden !important;
}
.featured-project-media-wrap-v3 {
  position: relative !important;
  display: block !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #edf2f9 !important;
}
.featured-project-media-wrap-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 20, 0.02),
    rgba(7, 10, 20, 0.16)
  );
  pointer-events: none;
}
.featured-project-card-v3 .featured-project-image {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1) !important;
}
.featured-project-card-v3:hover .featured-project-image {
  transform: scale(1.04) !important;
}
.featured-project-type-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #3f4a63;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured-project-body-v3 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  gap: 18px !important;
  padding: 20px 6px 6px !important;
}
.featured-project-copy {
  display: grid !important;
  gap: 12px !important;
  min-height: 164px;
}
.featured-project-card-v3 h3 {
  margin: 0 !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
}
.featured-project-card-v3 .lead {
  margin: 0 !important;
  color: #5b6373 !important;
  line-height: 1.7 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-project-footer-v3 {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.featured-project-pills {
  gap: 10px !important;
}
.featured-project-pills .pill {
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  color: #1f2937 !important;
}
.featured-project-link {
  font-weight: 800 !important;
  color: #0f172a !important;
  text-decoration: none !important;
}
.testimonials-head {
  margin-bottom: 22px !important;
}
.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
.testimonial-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  min-height: 100% !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #fff, #fbfcff) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05) !important;
}
.testimonial-card-v3 .testimonial-quote {
  margin: 0 !important;
  color: #1f2937 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
}
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.testimonial-site {
  font-weight: 800 !important;
  text-decoration: none !important;
  color: #0f172a !important;
}
.testimonial-site.is-passive {
  color: #475569 !important;
  opacity: 1 !important;
}
.blog-hero-copy h1 {
  max-width: 11ch !important;
}
.blog-hero-card p,
.blog-empty p {
  max-width: 60ch;
}
@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card-v3,
  .testimonial-card-v3 {
    border-radius: 24px !important;
  }
  .featured-project-copy {
    min-height: unset !important;
  }
  .featured-project-body-v3 {
    padding: 18px 4px 4px !important;
  }
  .featured-project-type-badge {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 11px;
  }
  .blog-hero-copy h1 {
    max-width: none !important;
  }
}

.featured-projects-grid {
  align-items: stretch !important;
}
.featured-project-card-v3 {
  height: 100% !important;
  min-height: 590px !important;
  display: flex !important;
  flex-direction: column !important;
}
.featured-project-media-wrap-v3 {
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
}
.featured-project-type-badge {
  display: none !important;
}
.featured-project-body-v3 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  gap: 18px !important;
}
.featured-project-copy {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.featured-project-card-v3 h3 {
  min-height: 2.3em !important;
}
.featured-project-card-v3 .lead {
  min-height: 4.8em !important;
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-project-footer-v3 {
  margin-top: auto !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
  align-items: flex-end !important;
}
.featured-project-pills {
  min-height: 42px !important;
}
.featured-project-link.project-link {
  white-space: nowrap !important;
}
.testimonials-grid-v3 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}
.testimonial-card-v3 {
  height: 100% !important;
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
}
.testimonial-card-v3 .testimonial-quote {
  flex: 1 1 auto !important;
  min-height: 96px !important;
}
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
}
@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
  }
  .featured-project-card-v3 {
    min-height: auto !important;
  }
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
}
.featured-project-card-v3 {
  height: 100% !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  padding: 14px !important;
}
.featured-project-media-wrap-v3 {
  aspect-ratio: 16/10 !important;
  min-height: 0 !important;
}
.featured-project-body-v3 {
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 18px !important;
  padding: 18px 6px 6px !important;
}
.featured-project-copy {
  min-height: 0 !important;
  display: grid !important;
  align-content: start !important;
  gap: 12px !important;
}
.featured-project-card-v3 h3 {
  min-height: 2.45em !important;
  margin: 0 !important;
  display: block !important;
}
.featured-project-card-v3 .lead {
  min-height: 5.2em !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.featured-project-footer-v3 {
  margin-top: auto !important;
  display: grid !important;
  gap: 14px !important;
  align-items: start !important;
  padding-top: 16px !important;
}
.featured-project-pills {
  min-height: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}
.featured-project-link.project-link {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}
.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
}
.testimonial-card-v3 {
  height: 100% !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  gap: 18px !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05) !important;
  position: relative;
  overflow: hidden;
}
.testimonial-card-v3::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 84px;
  background:
    radial-gradient(
      120px 80px at 20% 20%,
      rgba(108, 99, 255, 0.08),
      transparent 72%
    ),
    radial-gradient(
      120px 80px at 90% 0%,
      rgba(0, 212, 255, 0.08),
      transparent 70%
    );
  pointer-events: none;
}
.testimonial-card-v3 .testimonial-card-top,
.testimonial-card-v3 .testimonial-quote,
.testimonial-card-v3 .testimonial-card-bottom-v3 {
  position: relative;
  z-index: 1;
}
.testimonial-card-v3 .testimonial-quote {
  margin: 0 !important;
  min-height: 5.6em !important;
  color: #18202f !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
@media (max-width: 1180px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card-v3 h3,
  .featured-project-card-v3 .lead,
  .testimonial-card-v3 .testimonial-quote {
    min-height: 0 !important;
  }
}

.topbar .navwrap {
  gap: 18px !important;
}
.topbar .nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.topbar .nav a {
  white-space: nowrap !important;
  font-size: 13px !important;
  padding: 9px 8px !important;
}
.topbar .nav a[href="/blog/"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 1380px) {
  .topbar .social-links {
    display: none !important;
  }
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
}
.featured-project-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 14px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}
.featured-project-media-wrap-v3 {
  flex: none !important;
  aspect-ratio: 16/9 !important;
  min-height: 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}
.featured-project-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.featured-project-body-v3 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  gap: 16px !important;
  padding: 18px 8px 8px !important;
}
.featured-project-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.featured-project-card-v3 h3 {
  margin: 0 !important;
  min-height: 2.15em !important;
  line-height: 1.05 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.featured-project-card-v3 .lead {
  margin: 0 !important;
  min-height: 6.4em !important;
  line-height: 1.62 !important;
  color: #556074 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.featured-project-footer-v3 {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.featured-project-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  align-content: flex-start !important;
  gap: 10px !important;
  min-height: 42px !important;
}
.featured-project-link.project-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
}
.testimonial-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06) !important;
}
.testimonial-card-v3 .testimonial-card-top {
  margin-bottom: 14px !important;
}
.testimonial-card-v3 .testimonial-quote {
  margin: 0 !important;
  min-height: 6.3em !important;
  line-height: 1.7 !important;
  color: #18202f !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.testimonial-site {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}
.testimonial-site:hover {
  text-decoration: underline !important;
}

@media (max-width: 1240px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card-v3 h3,
  .featured-project-card-v3 .lead,
  .testimonial-card-v3 .testimonial-quote {
    min-height: 0 !important;
  }
}

.topbar .navwrap {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
}
.topbar .nav {
  grid-column: 2 !important;
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  min-width: max-content !important;
  flex: none !important;
}
.topbar .nav a {
  display: inline-flex !important;
  white-space: nowrap !important;
  flex: none !important;
  font-size: 14px !important;
  padding: 10px 8px !important;
}
.topbar .nav a[href="/blog/"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.topbar .social-links {
  justify-self: end !important;
}
@media (max-width: 1280px) {
  .topbar .nav {
    gap: 6px !important;
  }
  .topbar .nav a {
    font-size: 13px !important;
    padding: 9px 6px !important;
  }
}
@media (max-width: 1040px) {
  .topbar .social-links {
    display: none !important;
  }
}
@media (max-width: 980px) {
  .topbar .nav {
    display: none !important;
  }
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: start !important;
  grid-auto-rows: auto !important;
}
.featured-project-card-v3 {
  display: grid !important;
  grid-template-rows: 170px auto 1fr auto !important;
  gap: 0 !important;
  min-height: 590px !important;
  height: 590px !important;
  padding: 14px !important;
  border-radius: 26px !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden !important;
}
.featured-project-media-wrap-v3 {
  display: block !important;
  height: 170px !important;
  min-height: 170px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}
.featured-project-card-v3 .featured-project-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
}
.featured-project-body-v3 {
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  gap: 0 !important;
  padding: 18px 6px 6px !important;
  min-height: 0 !important;
}
.featured-project-copy {
  min-height: 0 !important;
}
.featured-project-card-v3 h3 {
  margin: 0 0 14px 0 !important;
  font-size: 24px !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
  height: 76px !important;
  max-height: 76px !important;
  overflow: hidden !important;
  display: block !important;
}
.featured-project-card-v3 .lead {
  margin: 0 !important;
  color: #5d6678 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  height: 154px !important;
  max-height: 154px !important;
  overflow: hidden !important;
  display: block !important;
}
.featured-project-footer-v3 {
  margin-top: auto !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  gap: 14px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.featured-project-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  min-height: 44px !important;
  align-content: flex-start !important;
}
.featured-project-link.project-link {
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 800 !important;
}

.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}
.testimonial-card-v3 {
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  min-height: 300px !important;
  height: 300px !important;
  padding: 22px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
}
.testimonial-card-v3 .testimonial-quote {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #18202f !important;
  height: 110px !important;
  max-height: 110px !important;
  overflow: hidden !important;
}
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
@media (max-width: 1240px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .featured-projects-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card-v3,
  .testimonial-card-v3 {
    height: auto !important;
    min-height: 0 !important;
  }
  .featured-project-card-v3 h3,
  .featured-project-card-v3 .lead,
  .testimonial-card-v3 .testimonial-quote {
    height: auto !important;
    max-height: none !important;
  }
}

@media (min-width: 981px) {
  .topbar .navwrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    height: 74px !important;
  }
  .topbar .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
  }
  .topbar .nav a {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    padding: 10px 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .topbar .nav a[href="/blog/"] {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .topbar .social-links,
  .topbar .trustlinks,
  .topbar .hamb {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .topbar .nav {
    display: none !important;
  }
  .topbar .hamb {
    display: flex !important;
  }
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

.featured-project-card,
.featured-project-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 620px !important;
  padding: 14px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06) !important;
}

.featured-project-media-wrap,
.featured-project-media-wrap-v3 {
  display: block !important;
  flex: none !important;
  height: 170px !important;
  min-height: 170px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

.featured-project-card .featured-project-image,
.featured-project-card-v3 .featured-project-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
}

.featured-project-body,
.featured-project-body-v3 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  gap: 0 !important;
  padding: 18px 8px 8px !important;
}

.featured-project-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  min-height: 0 !important;
}

.featured-project-card h3,
.featured-project-card-v3 h3 {
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  min-height: 100px !important;
  max-height: 100px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
}

.featured-project-card .lead,
.featured-project-card-v3 .lead {
  margin: 0 !important;
  color: #5d6678 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  min-height: 136px !important;
  max-height: 136px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
}

.featured-project-footer,
.featured-project-footer-v3 {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.featured-project-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  min-height: 44px !important;
  align-content: flex-start !important;
}

.featured-project-link,
.featured-project-link.project-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.testimonials-grid,
.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.testimonial-card-finalboss,
.testimonial-card-v3 {
  display: flex !important;
  flex-direction: column !important;
  min-height: 340px !important;
  height: 100% !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
}

.testimonial-card-v3 .testimonial-card-top,
.testimonial-card-finalboss .testimonial-card-top {
  margin-bottom: 16px !important;
}

.testimonial-card-v3 .testimonial-quote,
.testimonial-card-finalboss .testimonial-quote {
  margin: 0 !important;
  min-height: 132px !important;
  max-height: 132px !important;
  overflow: hidden !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #18202f !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
}

.testimonial-card-bottom,
.testimonial-card-bottom-v3 {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.testimonial-site {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

@media (max-width: 1240px) {
  .featured-projects-grid,
  .testimonials-grid,
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .featured-projects-grid,
  .testimonials-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .featured-project-card,
  .featured-project-card-v3,
  .testimonial-card-finalboss,
  .testimonial-card-v3 {
    min-height: unset !important;
  }
  .featured-project-card h3,
  .featured-project-card-v3 h3,
  .featured-project-card .lead,
  .featured-project-card-v3 .lead,
  .testimonial-card-v3 .testimonial-quote,
  .testimonial-card-finalboss .testimonial-quote {
    min-height: 0 !important;
    max-height: none !important;
  }
}

.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  color: rgba(11, 13, 18, 0.78);
  padding: 10px 8px;
  border-radius: 12px;
}
.social-links:empty {
  display: none;
}
@media (max-width: 1100px) {
  .nav {
    gap: 10px;
  }
  .nav a {
    font-size: 12.5px;
    padding: 10px 7px;
  }
}

.testimonials-section {
  position: relative !important;
  padding: 44px 0 38px !important;
}

.testimonials-head {
  margin-bottom: 26px !important;
  align-items: end !important;
}

.testimonials-head .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(241, 245, 249, 0.92) 100%
  ) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05) !important;
  color: #334155 !important;
  letter-spacing: 0.14em !important;
}

.testimonials-head .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.testimonials-shell {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.testimonials-shell::before,
.testimonials-shell::after,
.testimonials-marquee::before,
.testimonials-marquee::after {
  display: none !important;
}

.testimonials-grid,
.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.testimonial-card-finalboss,
.testimonial-card-v3 {
  position: relative !important;
  isolation: isolate !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 356px !important;
  height: 100% !important;
  padding: 26px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 56%, #f2f7ff 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  box-shadow:
    0 20px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  overflow: hidden !important;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease !important;
}

.testimonial-card-finalboss::before,
.testimonial-card-v3::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.12);
  pointer-events: none;
}

.testimonial-card-finalboss::after,
.testimonial-card-v3::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 45%, #7c3aed 100%);
  opacity: 0.96;
}

.testimonial-card-finalboss:hover,
.testimonial-card-v3:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  box-shadow:
    0 26px 70px rgba(15, 23, 42, 0.12),
    0 8px 26px rgba(37, 99, 235, 0.1) !important;
}

.testimonial-card-v3 .testimonial-card-top,
.testimonial-card-finalboss .testimonial-card-top {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 18px !important;
}

.testimonial-person {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
}

.testimonial-avatar {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12) !important;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%) !important;
}

.testimonial-avatar-fallback {
  font-size: 24px !important;
  color: #2456d3 !important;
  font-weight: 800 !important;
}

.testimonial-name-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 9px !important;
}

.testimonial-name-row strong {
  font-size: 17px !important;
  line-height: 1.35 !important;
  color: #0f172a !important;
}

.testimonial-company {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  color: #2456d3 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

.testimonial-role {
  margin-top: 7px !important;
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.testimonial-stars {
  display: inline-flex !important;
  align-items: center !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  background: rgba(245, 158, 11, 0.1) !important;
  border: 1px solid rgba(245, 158, 11, 0.18) !important;
  color: #f59e0b !important;
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.testimonial-card-v3 .testimonial-quote,
.testimonial-card-finalboss .testimonial-quote {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  min-height: 145px !important;
  max-height: none !important;
  overflow: visible !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
  color: #18202f !important;
  font-weight: 500 !important;
  display: block !important;
}

.testimonial-card-bottom,
.testimonial-card-bottom-v3 {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: auto !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.testimonial-site {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

.testimonial-site:hover {
  transform: translateY(-2px) !important;
  background: #111c31 !important;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18) !important;
  text-decoration: none !important;
}

.testimonial-site.is-passive {
  background: #eef2ff !important;
  color: #334155 !important;
  box-shadow: none !important;
}

@media (max-width: 1240px) {
  .testimonials-grid,
  .testimonials-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .testimonials-section {
    padding: 36px 0 26px !important;
  }

  .testimonials-head {
    margin-bottom: 18px !important;
  }

  .testimonials-grid,
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .testimonial-card-finalboss,
  .testimonial-card-v3 {
    min-height: 0 !important;
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .testimonial-card-v3 .testimonial-card-top,
  .testimonial-card-finalboss .testimonial-card-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .testimonial-card-v3 .testimonial-quote,
  .testimonial-card-finalboss .testimonial-quote {
    min-height: 0 !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .testimonial-card-bottom,
  .testimonial-card-bottom-v3 {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

.testimonials-head .eyebrow {
  display: none !important;
}
.testimonials-head {
  margin-bottom: 18px !important;
}
.testimonials-grid,
.testimonials-grid-v3 {
  gap: 18px !important;
}
.testimonial-card-minimal {
  min-height: 290px !important;
  padding: 22px !important;
  border-radius: 22px !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
}
.testimonial-card-minimal:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.16) !important;
}
.testimonial-card-minimal::before,
.testimonial-card-minimal::after {
  display: none !important;
  content: none !important;
}
.testimonial-card-minimal .testimonial-card-top {
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  display: block !important;
}
.testimonial-card-minimal .testimonial-person {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}
.testimonial-card-minimal .testimonial-avatar {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  background: #f6f8fc !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: none !important;
}
.testimonial-card-minimal .testimonial-avatar-fallback {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}
.testimonial-card-minimal .testimonial-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  min-width: 0 !important;
}
.testimonial-card-minimal .testimonial-name {
  font-size: 1.05rem !important;
  line-height: 1.2 !important;
  color: #0f172a !important;
}
.testimonial-card-minimal .testimonial-company-min,
.testimonial-card-minimal .testimonial-role {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  color: #64748b !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.testimonial-card-minimal .testimonial-quote {
  margin: 0 0 22px !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
  color: #1e293b !important;
  letter-spacing: -0.01em !important;
}
.testimonial-card-minimal .testimonial-card-bottom {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.testimonial-card-minimal .testimonial-site-min {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  text-decoration: none !important;
}
.testimonial-card-minimal .testimonial-site-min:hover {
  color: #2563eb !important;
  transform: none !important;
}
.testimonial-stars {
  display: none !important;
}
@media (max-width: 767px) {
  .testimonial-card-minimal {
    min-height: auto !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }
  .testimonial-card-minimal .testimonial-quote {
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
  }
}

.blog-page--premium {
  padding-bottom: 88px;
}
.blog-hero--aligned {
  padding: 34px 0 26px !important;
}
.blog-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}
.blog-hero-copy {
  max-width: 760px;
}
.blog-hero-copy h1 {
  max-width: 8.5ch !important;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 0;
}
.blog-hero-copy .lead {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.72);
}
.blog-topic-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pill.soft {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.blog-hero-panel {
  padding: 28px 28px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f224a 0%, #07162d 100%);
  color: #fff;
  box-shadow: 0 34px 90px rgba(8, 15, 34, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 520px;
  justify-self: end;
}
.blog-hero-panel-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.blog-hero-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}
.blog-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 16px;
}
.blog-hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.blog-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.section-head--blog {
  margin-bottom: 28px;
  max-width: 700px;
}
.section-head--blog h2 {
  margin: 10px 0 12px;
}
.blog-index-section {
  padding-top: 6px;
}
.blog-featured-wrap {
  margin-top: 18px;
}
.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 32px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 252, 0.88)
  );
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.12);
}
.blog-featured-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 10px 8px 8px;
}
.blog-featured-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.blog-card-badge--inline {
  position: static;
  background: #0f224a;
  color: #fff;
}
.blog-featured-card h3 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 11ch;
}
.blog-featured-card p {
  margin: 0;
  max-width: 62ch;
  color: #475569;
  line-height: 1.8;
  font-size: 17px;
}
.blog-featured-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.blog-featured-points div,
.blog-empty-points div {
  min-height: 108px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 8px;
  align-content: start;
}
.blog-featured-points strong,
.blog-empty-points strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #0f224a;
}
.blog-featured-points span,
.blog-empty-points span {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}
.blog-featured-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 100%;
  background: #dbe6f5;
}
.blog-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-featured-card:hover .blog-featured-media img {
  transform: scale(1.03);
}
.blog-featured-placeholder {
  height: 100%;
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.62),
    rgba(15, 34, 74, 0.1) 42%,
    rgba(15, 34, 74, 0.18) 100%
  );
  color: #0f172a;
}
.blog-featured-placeholder span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52);
}
.blog-featured-placeholder strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.blog-list-grid--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.blog-card--clean {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}
.blog-card--clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.12);
}
.blog-card--clean .blog-card-media {
  min-height: 240px;
  background: #dce5ef;
}
.blog-card--clean .blog-card-body {
  padding: 22px 22px 24px;
  gap: 12px;
}
.blog-card--clean h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.blog-card-fallback {
  height: 100%;
  display: grid;
  place-content: center;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(15, 34, 74, 0.14),
    rgba(15, 34, 74, 0.04)
  );
}
.blog-card-fallback span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f224a;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-empty--premium {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 252, 0.9)
  );
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
.blog-empty--premium h3 {
  margin: 12px 0 10px;
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.blog-empty--premium p {
  max-width: 70ch;
  margin: 0;
  color: #475569;
  line-height: 1.8;
}
.blog-empty-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.article-hero--premium {
  padding-top: 28px;
}
.article-head--premium {
  gap: 16px;
}
.article-meta--top {
  align-items: center;
}
.article-intro {
  margin: 0;
  max-width: 56ch;
  line-height: 1.8;
  color: #475569 !important;
}
.article-cover--premium {
  margin-top: 24px !important;
}
.article-body--premium {
  font-size: 19px;
  line-height: 1.95;
}
.article-side-card--dark {
  background: linear-gradient(135deg, #0f224a 0%, #07162d 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(8, 15, 34, 0.22);
}
.article-side-card--dark h3,
.article-side-card--dark p {
  color: #fff;
}
.article-side-card--dark p {
  opacity: 0.84;
}
.article-side-meta {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.article-side-meta div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.article-side-meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.article-side-meta span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.article-side-meta strong {
  font-size: 16px;
  color: #0f172a;
}
@media (max-width: 1100px) {
  .blog-hero-shell,
  .blog-featured-card,
  .article-layout {
    grid-template-columns: 1fr !important;
  }
  .blog-hero-panel {
    justify-self: start;
    max-width: none;
  }
  .blog-featured-card h3 {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .blog-page--premium {
    padding-bottom: 64px;
  }
  .blog-hero--aligned {
    padding: 18px 0 20px !important;
  }
  .blog-hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
    max-width: none !important;
  }
  .blog-hero-copy .lead {
    font-size: 17px;
  }
  .blog-hero-panel {
    padding: 22px 20px 20px;
    border-radius: 24px;
  }
  .blog-hero-panel h3 {
    font-size: clamp(24px, 8vw, 34px);
  }
  .blog-featured-card {
    padding: 16px;
    border-radius: 24px;
    gap: 16px;
  }
  .blog-featured-card h3 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .blog-featured-points,
  .blog-empty-points,
  .blog-list-grid--balanced {
    grid-template-columns: 1fr;
  }
  .blog-card--clean .blog-card-media {
    min-height: 210px;
  }
  .blog-empty--premium {
    padding: 20px;
    border-radius: 24px;
  }
  .blog-empty--premium h3 {
    font-size: clamp(28px, 9vw, 40px);
    max-width: none;
  }
  .article-body--premium {
    font-size: 17px;
    line-height: 1.8;
  }
}

.blog-inline-author {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.blog-featured-card .blog-inline-author {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}
.article-author-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}
.article-side-meta {
  display: grid;
  gap: 14px;
}
.article-side-meta div {
  display: grid;
  gap: 4px;
}

.article-body--premium h2,
.article-body--premium h3 {
  margin: 40px 0 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0b1220;
}
.article-body--premium h2 {
  font-size: clamp(28px, 3.3vw, 42px);
}
.article-body--premium h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}
.article-body--premium ul {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body--premium li {
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.9;
}
.article-body--premium blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid #0b1f4d;
  background: #f5f8ff;
  border-radius: 16px;
  color: #10224f;
  font-weight: 600;
}
.article-body--premium a {
  color: #0b3aa2;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 58, 162, 0.2);
}

.testimonials-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.testimonial-card-v3,
.testimonial-card-finalboss {
  height: 100% !important;
}
@media (max-width: 640px) {
  .testimonials-grid-v3 {
    grid-template-columns: 1fr !important;
  }
}

.toc-card {
  position: sticky;
  top: 120px;
}
.toc-nav {
  display: grid;
  gap: 10px;
}
.toc-link {
  color: #334155;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.toc-link:hover {
  color: #0f172a;
}
.toc-level-3 {
  padding-left: 14px;
  color: #64748b;
}
.article-related {
  margin-top: 56px;
}
.article-related .section-head {
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .toc-card {
    position: relative;
    top: auto;
  }
}

.article-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 34, 74, 0.05), transparent 34%),
    radial-gradient(
      circle at 88% 10%,
      rgba(59, 130, 246, 0.05),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
}
.article-reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  z-index: 120;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.06);
}
.article-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0f224a 0%, #3b82f6 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}
.article-hero--premium {
  padding-top: 34px;
  padding-bottom: 38px;
}
.article-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}
.article-back {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.article-hero-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.84)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.article-hero-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.28),
    transparent
  );
}
.article-meta-pills {
  gap: 10px;
}
.article-pill,
.article-meta-pills .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-meta-pills .eyebrow {
  background: linear-gradient(135deg, #0f224a, #17346f);
  color: #fff;
  border-color: transparent;
}
.article-head-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.article-mini-facts span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}
.article-author-row {
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.article-cover--premium {
  margin-top: 28px !important;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}
.article-cover--premium img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-body--premium {
  position: relative;
  margin-top: 24px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.06);
}
.article-body-accent {
  margin: 0 0 26px;
  padding: 16px 18px 16px 20px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(15, 34, 74, 0.08),
    rgba(59, 130, 246, 0.05)
  );
  border: 1px solid rgba(15, 34, 74, 0.08);
  color: #24364d;
  line-height: 1.7;
}
.article-body-accent strong {
  color: #0f224a;
}
.article-body--premium > p:first-of-type {
  font-size: 20px;
  line-height: 1.9;
  color: #24364d;
}
.article-body--premium hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.5),
    transparent
  );
  margin: 28px 0;
}
.article-body--premium ul {
  padding-left: 0;
  list-style: none;
}
.article-body--premium li {
  position: relative;
  padding-left: 24px;
}
.article-body--premium li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0f224a;
  box-shadow: 0 0 0 5px rgba(15, 34, 74, 0.08);
}
.article-sidebar {
  gap: 20px;
}
.article-side-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.92)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.article-side-card:before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.25),
    transparent
  );
}
.article-side-card--dark {
  padding: 26px;
  background: linear-gradient(160deg, #0d1f44 0%, #081327 100%);
}
.article-side-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.article-side-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.article-side-points span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
.article-side-meta div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.article-side-meta div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.toc-nav {
  gap: 8px;
}
.toc-link {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.22s ease;
}
.toc-link:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  transform: translateX(3px);
}
.toc-level-3 {
  padding-left: 24px;
}
.article-related {
  margin-top: 62px;
}
.article-related .blog-card--clean {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-radius: 26px;
}
.article-related .blog-card--clean .blog-card-body {
  padding: 24px;
}
@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: 1fr !important;
  }
  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }
}
@media (max-width: 760px) {
  .article-reading-progress {
    height: 3px;
  }
  .article-hero--premium {
    padding-top: 18px;
    padding-bottom: 28px;
  }
  .article-back {
    margin-bottom: 16px;
  }
  .article-hero-card {
    padding: 18px;
    border-radius: 24px;
  }
  .article-meta-pills {
    gap: 8px;
  }
  .article-pill,
  .article-meta-pills .eyebrow {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 11px;
  }
  .article-head h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .article-head-footer {
    align-items: flex-start;
  }
  .article-mini-facts {
    justify-content: flex-start;
  }
  .article-cover--premium {
    margin-top: 20px !important;
    border-radius: 20px;
  }
  .article-body--premium {
    padding: 22px;
    border-radius: 24px;
    font-size: 17px;
    line-height: 1.82;
  }
  .article-body--premium > p:first-of-type {
    font-size: 18px;
  }
  .article-sidebar {
    grid-template-columns: 1fr;
  }
  .article-side-card {
    padding: 20px;
    border-radius: 22px;
  }
}

.note--timestamp {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 72px;
  justify-content: center;
}
.note--timestamp strong {
  color: #0f172a;
  font-size: 15px;
}
.note--timestamp span {
  color: #64748b;
  line-height: 1.55;
}
.blog-editor-toolbar--pro {
  grid-template-columns: repeat(5, max-content);
  align-items: center;
}
@media (min-width: 1200px) {
  .blog-editor-toolbar--pro {
    grid-template-columns: repeat(7, max-content);
  }
}
@media (max-width: 860px) {
  .blog-editor-toolbar--pro {
    grid-template-columns: repeat(4, max-content);
  }
}
.editor-tool {
  white-space: nowrap;
}
.article-hero-card {
  padding: 34px;
  border-radius: 38px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.09);
}
.article-head h1 {
  max-width: 12ch;
}
.article-intro {
  max-width: 60ch;
  color: #526277;
}
.article-insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.article-insight-strip div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.article-insight-strip span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-insight-strip strong {
  font-size: 15px;
  color: #0f172a;
}
.article-body--premium {
  margin-top: 26px;
}
.article-body-accent {
  font-size: 16px;
}
.article-body--premium h4 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}
.article-body--premium ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.article-body--premium ol li {
  padding-left: 0;
}
.article-body--premium ol li:before {
  display: none;
}
.article-end-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f224a 0%, #163b82 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 34, 74, 0.22);
}
.article-end-cta .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.article-end-cta h2 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
  color: #fff;
  max-width: 14ch;
}
.article-end-cta p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
}
.article-end-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.article-end-cta .btn-secondary {
  background: #fff;
  border-color: #fff;
  color: #0f224a;
}
.article-side-card .article-side-meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
}
@media (max-width: 760px) {
  .article-insight-strip {
    grid-template-columns: 1fr;
  }
  .article-end-cta {
    padding: 22px;
    border-radius: 24px;
  }
  .article-end-cta h2 {
    font-size: 30px;
  }
}

.article-sidebar {
  position: static !important;
  align-self: start;
}
.toc-card {
  position: relative !important;
  top: auto !important;
}
.article-side-card {
  isolation: isolate;
}
.article-meta--top.article-meta-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.article-pill,
.article-meta-pills .eyebrow {
  line-height: 1 !important;
  vertical-align: middle;
  min-height: 38px;
}
.article-meta-pills .eyebrow {
  min-height: 38px;
}
.article-end-cta {
  align-items: center;
}
.article-end-cta-copy {
  flex: 1 1 520px;
  min-width: 0;
}
.article-end-cta-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.article-end-cta-actions .btn,
.article-end-cta-actions .btn-secondary,
.article-end-cta-actions a {
  width: auto !important;
  min-width: 168px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.article-end-cta-actions .btn,
.article-end-cta-actions a:first-child {
  background: #fff;
  color: #0f224a;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(7, 19, 39, 0.22);
}
.article-end-cta-actions .btn-secondary,
.article-end-cta-actions a:last-child {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.article-end-cta-actions .btn:hover,
.article-end-cta-actions .btn-secondary:hover,
.article-end-cta-actions a:hover {
  transform: translateY(-2px);
}
.article-end-cta-actions .btn:hover,
.article-end-cta-actions a:first-child:hover {
  box-shadow: 0 22px 42px rgba(7, 19, 39, 0.28);
}
.article-end-cta-actions .btn-secondary:hover,
.article-end-cta-actions a:last-child:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}
@media (max-width: 1100px) {
  .article-end-cta-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .article-meta--top.article-meta-pills {
    gap: 8px;
  }
  .article-pill,
  .article-meta-pills .eyebrow {
    min-height: 34px;
  }
  .article-end-cta-actions {
    width: 100%;
  }
  .article-end-cta-actions .btn,
  .article-end-cta-actions .btn-secondary,
  .article-end-cta-actions a {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.blog-topic-row a.pill {
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.blog-topic-row a.pill:hover {
  transform: translateY(-1px);
}
.blog-topic-row a.pill.is-active {
  background: #0f224a;
  color: #fff;
  border-color: #0f224a;
  box-shadow: 0 12px 28px rgba(15, 34, 74, 0.16);
}
.article-meta--top.article-meta-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.article-pill,
.article-meta-pills .eyebrow,
.article-topic-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  margin: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box;
}
.article-pill {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
}
.article-meta-pills .eyebrow,
.article-topic-link {
  background: linear-gradient(135deg, #0f224a, #17346f);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(15, 34, 74, 0.12);
}
.article-topic-link:hover {
  transform: translateY(-1px);
}
.article-topic-link--soft {
  background: transparent;
  color: #0f224a;
  border: none;
  box-shadow: none;
  height: auto;
  min-height: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: inherit;
  white-space: normal;
}
.article-topic-link--soft strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 34, 74, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.article-topic-link--soft:hover strong {
  background: rgba(15, 34, 74, 0.1);
}
@media (max-width: 760px) {
  .article-meta--top.article-meta-pills {
    gap: 8px;
  }
  .article-pill,
  .article-meta-pills .eyebrow,
  .article-topic-link {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
}

.article-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.article-topic-link--soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef2f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #102a56;
  text-decoration: none;
  transition: 0.2s ease;
}
.article-topic-link--soft:hover {
  transform: translateY(-1px);
  background: #e8edf5;
}
.article-topic-link--soft.is-current {
  background: #102a56;
  color: #fff;
  border-color: #102a56;
}
.article-topic-link--soft strong {
  font-weight: 800;
}

.blog-topic-row {
  gap: 8px;
  margin-top: 22px;
}
.blog-topic-row a.pill {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
}
.article-side-card--topic-clean h3 {
  margin-bottom: 10px;
}
.article-topic-links--single {
  margin-top: 4px;
}
.article-topic-link--soft {
  padding: 8px 14px;
  min-height: 0;
  font-size: 13px;
}
.article-topic-link--soft strong {
  font-size: inherit;
  line-height: 1.1;
}
@media (max-width: 760px) {
  .blog-topic-row a.pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .article-topic-link--soft {
    padding: 7px 12px;
    font-size: 12px;
  }
}

.blog-topic-row {
  display: none !important;
}
.article-side-card--topic-clean {
  display: none !important;
}

.section-head--blog-premium {
  margin-bottom: 20px;
}
.blog-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.blog-head-row h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.section-head--blog-premium .lead {
  max-width: 62ch;
  margin-top: 12px;
}
.blog-archive-badge {
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid rgba(15, 34, 74, 0.08);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.07);
  text-align: left;
}
.blog-archive-badge strong {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f224a;
}
.blog-archive-badge span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-featured-wrap--solo .blog-featured-card {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 520px;
}
.blog-featured-card {
  position: relative;
  overflow: hidden;
}
.blog-featured-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(83, 112, 255, 0.12),
    rgba(83, 112, 255, 0)
  );
  pointer-events: none;
}
.blog-featured-copy {
  position: relative;
  z-index: 1;
}
.blog-card--clean {
  position: relative;
}
.blog-card--clean::after {
  content: "";
  position: absolute;
  inset: auto auto -60px -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 162, 255, 0.12),
    rgba(120, 162, 255, 0)
  );
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  opacity: 0.9;
}
.blog-card--clean:hover::after {
  transform: translate(10px, -8px);
  opacity: 1;
}
.blog-card--clean .blog-card-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card--clean .blog-card-link {
  margin-top: 4px;
}
.blog-card--clean h3 {
  max-width: 15ch;
}
@media (max-width: 980px) {
  .blog-head-row {
    grid-template-columns: 1fr;
  }
  .blog-archive-badge {
    min-width: 0;
    max-width: 180px;
  }
  .blog-featured-wrap--solo .blog-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .section-head--blog-premium {
    margin-bottom: 14px;
  }
  .blog-head-row h2 {
    font-size: clamp(30px, 10vw, 42px);
  }
  .blog-archive-badge {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }
}

.blog-archive-badge {
  display: none !important;
}
.blog-head-row {
  align-items: end;
}
.blog-head-row > div:first-child {
  max-width: 820px;
}
.blog-card--clean {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.blog-card--clean::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(15, 42, 82, 0.08), transparent 68%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.blog-card--clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 42, 82, 0.14);
}
.blog-card--clean:hover::after {
  opacity: 1;
}
.blog-card--clean .blog-card-link {
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}
.blog-card--clean:hover .blog-card-link {
  transform: translateX(4px);
}
.article-topic-link,
.article-side-card--topic-clean {
  display: none !important;
}

.blog-featured-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(245, 248, 252, 0.94)
    );
}
.blog-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 34, 74, 0.02),
    rgba(15, 34, 74, 0) 40%,
    rgba(59, 130, 246, 0.04) 100%
  );
  pointer-events: none;
}
.blog-featured-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 34, 74, 0.06);
  border: 1px solid rgba(15, 34, 74, 0.08);
  color: #0f224a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-featured-card h3 {
  max-width: 12ch;
  font-size: clamp(38px, 4.6vw, 66px);
}
.blog-featured-copy {
  gap: 16px;
  padding: 12px 10px 10px;
}
.blog-featured-card p {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.82;
}
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #0f224a;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(15, 34, 74, 0.14);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}
.blog-featured-card:hover .blog-featured-cta {
  transform: translateX(4px);
  box-shadow: 0 20px 42px rgba(15, 34, 74, 0.18);
}
.blog-featured-media {
  min-height: 420px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.blog-featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 34, 74, 0) 10%,
    rgba(15, 34, 74, 0.08) 100%
  );
  pointer-events: none;
}
.blog-featured-wrap--solo .blog-featured-card {
  min-height: 560px;
}
@media (max-width: 1100px) {
  .blog-featured-card h3 {
    max-width: none;
  }
  .blog-featured-media {
    min-height: 360px;
  }
}
@media (max-width: 760px) {
  .blog-featured-card {
    padding: 18px;
    gap: 18px;
    border-radius: 26px;
  }
  .blog-featured-copy {
    padding: 4px 2px 2px;
  }
  .blog-featured-card h3 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .blog-featured-media {
    min-height: 260px;
  }
  .blog-featured-cta {
    padding: 11px 14px;
    font-size: 14px;
  }
}

.article-page .article-hero,
.article-page .article-layout,
.article-page .article-main,
.article-page .article-sidebar,
.article-page .article-hero-card,
.article-page .article-body,
.article-page .article-related,
.article-page .article-end-cta,
.blog-page .blog-hero,
.blog-page .blog-archive,
.blog-page .blog-featured-card,
.blog-page .blog-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}
:root {
  --safe-bottom: max(16px, env(safe-area-inset-bottom));
}
body {
  -webkit-text-size-adjust: 100%;
}
main,
section,
article,
aside,
footer,
header,
.container,
.container.wide {
  min-width: 0;
}
.card,
.blog-card,
.blog-featured-card,
.article-hero-card,
.article-side-card,
.table-wrap,
.preview-stage,
.preview-window {
  min-width: 0;
}

@media (max-width: 980px) {
  .topbar {
    backdrop-filter: blur(12px);
  }
  .topbar .navwrap {
    height: 68px !important;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
  }
  .hamb {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .drawer .panel {
    width: min(100vw, 420px);
    padding: 20px 18px calc(var(--safe-bottom) + 18px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer .panel .head {
    position: sticky;
    top: 0;
    background: linear-gradient(
      180deg,
      rgba(11, 13, 18, 0.96),
      rgba(11, 13, 18, 0.88)
    );
    padding-bottom: 12px;
    z-index: 2;
  }
  .drawer .panel .links {
    gap: 12px;
    margin-top: 12px;
  }
  .drawer .panel .links a {
    min-height: 54px;
    display: flex;
    align-items: center;
    font-size: 17px;
    border-radius: 18px;
  }
  .section-hero,
  .section-hero.hero-full,
  .section-hero.hero-home {
    min-height: auto !important;
    padding-top: 110px !important;
    padding-bottom: 64px !important;
  }
  .section-hero.hero-full > .container.wide,
  .section-hero.hero-full.hero-home > .container.wide,
  .section-hero .container.wide,
  .section-hero .container {
    justify-content: flex-start !important;
    align-content: flex-start !important;
    gap: 18px;
  }
  .hero-logo {
    margin-bottom: 16px !important;
  }
  .hero-logo img {
    height: 60px !important;
  }
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal,
  .hero-full h1,
  .section-hero h1 {
    font-size: clamp(38px, 10vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em;
    max-width: 10ch;
  }
  .section-hero .lead,
  .hero-full .lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 42ch;
  }
  .hero-actions,
  .actions,
  .cta-row {
    width: 100%;
    align-items: stretch;
    gap: 12px !important;
  }
  .hero-actions .cta,
  .actions .cta,
  .cta-row .cta,
  .article-end-cta-actions .btn,
  .article-end-cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .grid,
  .grid-2,
  .grid-3,
  .cards,
  .service-grid,
  .home-services-grid,
  .services-grid,
  .caseGrid,
  .workFeed,
  .blog-list-grid,
  .blog-hero-shell,
  .article-layout,
  .footer .cols,
  .site-footer .cols {
    grid-template-columns: 1fr !important;
  }
  .blog-featured-card,
  .blog-hero-shell,
  .article-layout {
    gap: 18px !important;
  }
  .blog-featured-media,
  .blog-card-media,
  .article-cover {
    order: -1;
  }
  .blog-featured-media img,
  .blog-card-media img,
  .article-cover img {
    aspect-ratio: 16/10;
    object-fit: cover;
  }
  .article-sidebar {
    order: -1;
  }
  .article-side-card,
  .toc-card {
    position: relative !important;
    top: auto !important;
  }
  .article-body,
  .article-body--premium {
    font-size: 16px;
    line-height: 1.8;
  }
  .article-body h2,
  .article-body--premium h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.1;
  }
  .article-body h3,
  .article-body--premium h3 {
    font-size: clamp(21px, 5.8vw, 28px);
    line-height: 1.18;
  }
  .article-insight-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .logo-strip,
  .city-logo-strip {
    height: auto !important;
    padding: 22px 0 !important;
  }
  .logo-strip .logo-marquee,
  .city-logo-strip .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .logo-strip .logos[data-marquee="true"] img,
  .city-logo-strip .logos[data-marquee="true"] img {
    height: 24px !important;
  }
  .contact-section .container,
  body .contact-section .container,
  .onama-perfect-center > .container {
    grid-template-columns: 1fr !important;
  }
  .table-wrap {
    overflow: auto hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .container,
  .container.wide {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .topbar .navwrap {
    height: 64px !important;
  }
  .hamb {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .drawer .panel {
    width: 100vw;
    border-radius: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-hero,
  .section-hero.hero-full,
  .section-hero.hero-home {
    padding-top: 100px !important;
    padding-bottom: 54px !important;
  }
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal,
  .hero-full h1,
  .section-hero h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }
  .section-hero .lead,
  .hero-full .lead,
  .blog-hero-copy .lead,
  .blog-card p,
  .blog-featured-card p,
  .article-intro,
  .article-body,
  .article-body--premium {
    font-size: 15px !important;
  }
  .pill,
  .article-pill,
  .badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .scroll-indicator {
    display: none !important;
  }
  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .card,
  .blog-card,
  .blog-featured-card,
  .article-hero-card,
  .article-side-card,
  .blog-empty,
  .blog-hero-panel {
    border-radius: 22px !important;
    padding: 18px !important;
  }
  .article-insight-strip {
    grid-template-columns: 1fr;
  }
  .article-head-footer,
  .article-mini-facts,
  .article-end-cta,
  .blog-head-row,
  .toolbar,
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-end-cta-actions,
  .toolbar .actions,
  .actions {
    width: 100%;
  }
  .footer .cols,
  .site-footer .cols,
  footer .cols {
    gap: 16px !important;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-full h1.reveal,
  .section-hero.hero-home h1.reveal,
  .hero-full h1,
  .section-hero h1 {
    font-size: 32px !important;
  }
  .hero-logo img {
    height: 52px !important;
  }
  .drawer .panel .links a {
    font-size: 16px;
  }
  .card,
  .blog-card,
  .blog-featured-card,
  .article-hero-card,
  .article-side-card {
    border-radius: 20px !important;
    padding: 16px !important;
  }
}

.article-side-card--dark .cta {
  margin-top: 18px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  color: #0f224a;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(7, 19, 39, 0.22);
}
.article-side-card--dark .cta:hover {
  background: #f8fbff;
  color: #0f224a;
  border-color: #ffffff;
  box-shadow: 0 22px 44px rgba(7, 19, 39, 0.28);
}
@media (max-width: 760px) {
  .article-end-cta {
    gap: 18px;
    align-items: stretch;
  }
  .article-end-cta-copy {
    flex: 1 1 auto;
    width: 100%;
  }
  .article-end-cta-copy h2 {
    max-width: none;
    font-size: clamp(24px, 8vw, 38px);
  }
  .article-end-cta-copy p {
    max-width: none;
  }
  .article-end-cta-actions {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .article-end-cta {
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
  }
}

.article-end-cta {
  width: min(100%, calc(100% - 24px));
  margin: 32px auto 0;
  padding: 34px 36px;
}
.article-end-cta-copy {
  max-width: 720px;
}
.article-end-cta h2 {
  max-width: 16ch;
  line-height: 1.08;
}
.article-end-cta p {
  line-height: 1.7;
}
.article-end-cta-actions {
  gap: 12px;
}
@media (max-width: 760px) {
  .article-end-cta {
    width: calc(100% - 20px);
    margin: 24px auto 0;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .article-end-cta-copy {
    max-width: 100%;
  }
  .article-end-cta h2 {
    max-width: 12ch;
    font-size: clamp(26px, 7.2vw, 36px);
    margin: 12px 0 12px;
  }
  .article-end-cta p {
    font-size: 17px;
    line-height: 1.65;
  }
  .article-end-cta-actions {
    width: 100%;
    justify-content: stretch;
  }
  .article-end-cta-actions .btn,
  .article-end-cta-actions .btn-secondary,
  .article-end-cta-actions a {
    flex: 1 1 100%;
    width: 100% !important;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .article-end-cta {
    width: calc(100% - 52px);
    margin: 28px auto 0;
    padding: 28px 24px 24px;
    border-radius: 30px;
    background: linear-gradient(160deg, #0d1f44 0%, #081327 100%);
    box-shadow: 0 24px 56px rgba(7, 19, 39, 0.22);
    gap: 18px;
  }
  .article-end-cta .eyebrow {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }
  .article-end-cta-copy {
    max-width: 100%;
    padding-inline: 2px;
  }
  .article-end-cta h2 {
    max-width: none;
    font-size: clamp(21px, 6.1vw, 30px);
    line-height: 1.12;
    margin: 14px 0 12px;
    letter-spacing: -0.03em;
  }
  .article-end-cta p {
    max-width: none;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.86);
  }
  .article-end-cta-actions {
    width: 100%;
    gap: 12px;
    margin-top: 4px;
  }
  .article-end-cta-actions .btn,
  .article-end-cta-actions .btn-secondary,
  .article-end-cta-actions a {
    width: 100% !important;
    min-height: 56px;
    border-radius: 999px;
    padding: 15px 20px;
  }
  .article-end-cta-actions .btn,
  .article-end-cta-actions a:first-child {
    background: #fff;
    border-color: #fff;
    color: #0f224a;
    box-shadow: 0 16px 36px rgba(7, 19, 39, 0.22);
  }
  .article-end-cta-actions .btn-secondary,
  .article-end-cta-actions a:last-child {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
  }
}
@media (max-width: 520px) {
  .article-end-cta {
    width: calc(100% - 60px);
    padding: 26px 22px 22px;
    border-radius: 28px;
  }
  .article-end-cta-copy {
    padding-inline: 0;
  }
  .article-end-cta h2 {
    font-size: clamp(20px, 7.2vw, 28px);
    line-height: 1.11;
  }
  .article-end-cta p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 420px) {
  .article-end-cta {
    width: calc(100% - 64px);
    padding: 24px 20px 20px;
  }
  .article-end-cta .eyebrow {
    padding: 9px 14px;
    font-size: 11px;
  }
  .article-end-cta h2 {
    font-size: clamp(19px, 7.6vw, 26px);
  }
  .article-end-cta-actions .btn,
  .article-end-cta-actions .btn-secondary,
  .article-end-cta-actions a {
    min-height: 54px;
    padding: 14px 18px;
  }
}

/* final mobile CTA tighten fix */
@media (max-width: 760px) {
  .article-end-cta {
    width: auto !important;
    margin: 28px 24px 0 !important;
    padding: 30px 24px 24px !important;
    box-sizing: border-box;
  }
  .article-end-cta-copy,
  .article-end-cta-actions {
    width: 100%;
    max-width: 100%;
  }
  .article-end-cta h2 {
    max-width: 13ch !important;
    font-size: clamp(20px, 7.8vw, 30px) !important;
    line-height: 1.12 !important;
    margin: 14px 0 14px !important;
  }
  .article-end-cta p {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }
}
@media (max-width: 520px) {
  .article-end-cta {
    margin: 24px 22px 0 !important;
    padding: 28px 22px 22px !important;
  }
}
@media (max-width: 420px) {
  .article-end-cta {
    margin: 22px 18px 0 !important;
    padding: 26px 18px 20px !important;
  }
}
