:root {
  color-scheme: light;
  --ink: #111315;
  --muted: #6e7479;
  --soft: #8a9095;
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --surface-warm: #f7f2ea;
  --line: rgba(17, 19, 21, 0.1);
  --line-strong: rgba(17, 19, 21, 0.16);
  --blue: #0066cc;
  --blue-dark: #004f9f;
  --sky: #dff0ff;
  --lime: #d9f99d;
  --rose: #ffe1dc;
  --gold: #b8914f;
  --teal: #0d9b92;
  --shadow: 0 24px 70px rgba(20, 24, 31, 0.12);
  --shadow-soft: 0 18px 54px rgba(20, 24, 31, 0.08);
  --radius: 8px;
  --content: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(251, 251, 253, 0.96) 36%, #fbfbfd),
    var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(17, 19, 21, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 21, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 58%);
}

::selection {
  background: rgba(0, 102, 204, 0.16);
}

body.menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--teal), #f0184d);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 14px 18px auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1160px;
  margin-inline: auto;
  padding: 10px 12px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 999px;
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 14px 38px rgba(20, 24, 31, 0.08);
  transition:
    inset 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.topbar.scrolled {
  inset-block-start: 10px;
  background: rgba(251, 251, 253, 0.92);
  border-color: rgba(17, 19, 21, 0.12);
  box-shadow: 0 18px 46px rgba(20, 24, 31, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111315;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17, 19, 21, 0.14);
}

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

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.nav-cta {
  position: relative;
  border-radius: 999px;
  color: rgba(17, 19, 21, 0.74);
  padding: 9px 12px;
  font-size: 0.86rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(17, 19, 21, 0.06);
}

.nav-links a.active {
  color: var(--ink);
  background: rgba(17, 19, 21, 0.055);
}

.nav-links a::after {
  position: absolute;
  inset: auto 14px 5px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.button:focus-visible,
.tab:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.2);
  outline-offset: 3px;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding-inline: 16px;
}

.nav-cta:hover {
  background: #2b2f33;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  place-items: center;
  gap: 4px;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar.menu-active .nav-toggle {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.topbar.menu-active .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.topbar.menu-active .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu-footer {
  display: none;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  gap: clamp(22px, 3vw, 34px);
  padding: 118px clamp(18px, 5vw, 72px) 58px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  content: "";
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 225, 220, 0.58), transparent 26%),
    radial-gradient(circle at 10% 22%, rgba(223, 240, 255, 0.86), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 251, 253, 0.97) 56%, #fbfbfd);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 220px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(245, 245, 247, 0.82));
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.16;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(38px, 5.8vw, 86px);
  align-items: center;
  width: min(var(--content), 100%);
}

.hero-content {
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
  width: 18px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 3.55vw, 3.65rem);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.35vw, 3.35rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-lede {
  max-width: 560px;
  margin-inline: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.62;
}

.hero-actions,
.board-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button.primary {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 102, 204, 0.18);
}

.button.primary::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 42%, transparent 64%);
  transform: translateX(-120%);
}

.button.primary:hover::after {
  animation: buttonShine 760ms ease;
}

.button.primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(0, 102, 204, 0.24);
}

.button.ghost {
  border-color: rgba(0, 102, 204, 0.22);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.35;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 250, 0.94)),
    #f7f8fa;
  box-shadow:
    0 28px 74px rgba(20, 24, 31, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-media::before {
  inset: 18px;
  border: 1px solid rgba(17, 19, 21, 0.045);
  border-radius: 8px;
}

.hero-media::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.48));
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.hero-map-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
  display: grid;
  gap: 3px;
  max-width: min(260px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow-soft);
  animation: markerPulse 2.8s ease-in-out infinite;
}

.hero-map-note strong {
  font-size: 0.92rem;
}

.hero-map-note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-mini span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), 100%);
  gap: 16px;
  margin-top: 0;
}

.hero-proof div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(20, 24, 31, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-proof div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--blue);
  opacity: 0.45;
}

.hero-proof div:nth-child(2)::before {
  background: var(--teal);
}

.hero-proof div:nth-child(3)::before {
  background: #f0184d;
}

.hero-proof div:hover {
  border-color: rgba(17, 19, 21, 0.14);
  box-shadow: 0 24px 62px rgba(20, 24, 31, 0.09);
  transform: translateY(-2px);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ticker {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 76px;
}

.feature-band article {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(20, 24, 31, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-band article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(13, 155, 146, 0.65));
  opacity: 0.72;
}

.feature-band article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--teal), rgba(217, 249, 157, 0.92));
}

.feature-band article:nth-child(3)::before {
  background: linear-gradient(90deg, #f0184d, rgba(255, 225, 220, 0.92));
}

.feature-band article:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 19, 21, 0.14);
  box-shadow: 0 24px 58px rgba(20, 24, 31, 0.09);
}

.feature-band span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 760;
}

.feature-band h3 {
  max-width: 260px;
  margin-bottom: 12px;
}

.feature-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.96rem;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 16px 0;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 0;
  gap: 1px;
}

.trust-panel div {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.84)),
    rgba(255, 255, 255, 0.8);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.trust-panel div:hover {
  z-index: 1;
  transform: translateY(-2px);
  border-color: rgba(17, 19, 21, 0.14);
  box-shadow: 0 22px 58px rgba(20, 24, 31, 0.08);
}

.trust-panel div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-panel div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust-panel span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
}

.trust-panel strong {
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.2;
}

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

.signature-section {
  display: grid;
  gap: 44px;
  background:
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 38%, #ffffff 100%),
    linear-gradient(90deg, rgba(217, 249, 157, 0.22), transparent);
}

.signature-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  width: 100%;
  margin-inline: auto;
}

.signature-grid article {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(20, 24, 31, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.signature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 19, 21, 0.14);
  box-shadow: 0 26px 68px rgba(20, 24, 31, 0.1);
}

.signature-grid article:hover::after {
  opacity: 1;
  transform: scale(1.04);
}

.signature-grid article::before {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  content: "";
  background: var(--sky);
}

.signature-grid article:nth-child(2)::before {
  background: var(--lime);
}

.signature-grid article:nth-child(3)::before {
  background: var(--rose);
}

.signature-grid article::after {
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(17, 19, 21, 0.08) 49%, rgba(17, 19, 21, 0.08) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(17, 19, 21, 0.08) 49%, rgba(17, 19, 21, 0.08) 51%, transparent 52%);
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.signature-grid span {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 750;
}

.signature-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  font-size: clamp(1.32rem, 1.75vw, 1.78rem);
  line-height: 1.15;
}

.section {
  padding: clamp(78px, 8vw, 118px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.intro-section,
.studio-section,
.deliverable-section {
  background: var(--surface);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  max-width: var(--content);
  margin-inline: auto;
}

.section-grid p,
.panel-copy p,
.studio-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--content);
  margin: 32px auto 0;
}

.outcome-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.8);
  color: rgba(17, 19, 21, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 48px auto 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7f8fa),
    linear-gradient(135deg, rgba(223, 240, 255, 0.72), transparent 38%);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto 24px 22px auto;
  width: 54px;
  height: 54px;
  content: "";
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 102, 204, 0.18) 49%, rgba(0, 102, 204, 0.18) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 102, 204, 0.18) 49%, rgba(0, 102, 204, 0.18) 51%, transparent 52%);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.active {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 24px 52px rgba(20, 24, 31, 0.09);
}

.service-card:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.18);
  outline-offset: 3px;
}

.service-card.active {
  border-color: rgba(0, 102, 204, 0.24);
}

.service-card:hover::after,
.service-card.active::after {
  opacity: 0.95;
  transform: rotate(45deg) scale(1.06);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--blue);
  font-weight: 750;
}

.service-card p,
.process-list p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card small {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
  color: rgba(17, 19, 21, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.solution-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f6f7f9),
    radial-gradient(circle at 86% 22%, rgba(217, 249, 157, 0.28), transparent 34%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 52px auto 0;
}

.solution-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(20, 24, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.solution-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 19, 21, 0.14);
  box-shadow: 0 26px 64px rgba(20, 24, 31, 0.09);
}

.solution-grid article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 88px;
  height: 88px;
  content: "";
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(0, 102, 204, 0.14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 102, 204, 0.14) 50%, transparent 51%);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.solution-grid article:hover::after {
  opacity: 1;
  transform: rotate(45deg) scale(1.04);
}

.solution-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 760;
}

.solution-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 290px;
  font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  line-height: 1.18;
}

.dark-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 88% 18%, rgba(120, 183, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(120, 183, 255, 0.13), transparent 34%),
    #111315;
  background-size:
    74px 74px,
    74px 74px,
    auto,
    auto,
    auto;
  color: #f5f5f7;
  overflow: hidden;
}

.dark-panel h2 {
  text-wrap: balance;
}

.dark-panel .section-kicker {
  color: #78b7ff;
}

.capability-board {
  align-self: center;
}

.board-tabs {
  margin-bottom: 16px;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.72);
  padding: 11px 16px;
  cursor: pointer;
}

.tab.active {
  color: #111315;
  background: #f5f5f7;
  border-color: #f5f5f7;
}

.board-screen {
  overflow: hidden;
  min-height: 386px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 80% 8%, rgba(120, 183, 255, 0.12), transparent 30%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.board-screen::after {
  display: block;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #78b7ff, #d9f99d, #ffe1dc);
}

.screen-header {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.screen-content {
  padding: clamp(22px, 4vw, 42px);
}

.screen-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.screen-title p {
  color: rgba(245, 245, 247, 0.68);
}

.screen-title strong {
  color: #f5f5f7;
  font-size: clamp(1.55rem, 3.25vw, 3rem);
  line-height: 1;
  text-align: right;
}

.screen-insights {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  margin-bottom: 18px;
}

.screen-insights article {
  min-height: 106px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.screen-insights span {
  display: block;
  margin-bottom: 16px;
  color: #78b7ff;
  font-size: 0.74rem;
  font-weight: 760;
}

.screen-insights strong {
  display: block;
  color: rgba(245, 245, 247, 0.9);
  font-size: 0.96rem;
  line-height: 1.42;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(24px, 1fr));
  gap: 10px;
  height: 128px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.signal-grid span {
  display: block;
  height: var(--h);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #78b7ff, #d8eaff);
  transform-origin: bottom;
  animation: barRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.signal-grid span:nth-child(2) {
  animation-delay: 70ms;
}

.signal-grid span:nth-child(3) {
  animation-delay: 130ms;
}

.signal-grid span:nth-child(4) {
  animation-delay: 190ms;
}

.signal-grid span:nth-child(5) {
  animation-delay: 250ms;
}

.signal-grid span:nth-child(6) {
  animation-delay: 310ms;
}

.screen-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.screen-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(245, 245, 247, 0.72);
}

.screen-list span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78b7ff;
}

.module-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.module-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(245, 245, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.process-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 26%, var(--surface-soft) 100%);
  color: var(--ink);
}

.process-section .section-kicker {
  color: var(--blue);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 48px auto 0;
}

.process-list article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.process-list article::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 38px;
  height: 4px;
  content: "";
  border-radius: 0 0 999px 999px;
  background: var(--blue);
}

.process-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(20, 24, 31, 0.08);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 750;
}

.deliverable-section {
  display: grid;
  gap: 48px;
}

.deliverable-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: var(--content);
  width: 100%;
  margin-inline: auto;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 70px rgba(20, 24, 31, 0.08);
}

.deliverable-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(17, 19, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 250, 0.86));
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.deliverable-grid article:hover {
  background:
    linear-gradient(180deg, #ffffff, rgba(223, 240, 255, 0.42));
  transform: translateY(-2px);
}

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

.deliverable-grid strong {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--blue);
  font-size: 0.82rem;
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.studio-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.studio-copy,
.contact-copy,
.panel-copy {
  max-width: 560px;
}

.nepal-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 42%, rgba(223, 240, 255, 0.72), transparent 38%),
    var(--surface-soft);
  box-shadow: 0 28px 78px rgba(20, 24, 31, 0.1);
}

.nepal-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background:
    linear-gradient(180deg, var(--surface-soft), #ffffff 72%),
    radial-gradient(circle at 14% 10%, rgba(223, 240, 255, 0.72), transparent 34%);
}

.faq-copy {
  max-width: 520px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 42px rgba(20, 24, 31, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 204, 0.16);
  box-shadow: 0 20px 52px rgba(20, 24, 31, 0.08);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 760;
}

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

.faq-list summary::after {
  float: right;
  content: "+";
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 24px 22px;
  color: var(--muted);
  line-height: 1.66;
}

.contact-section {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(223, 240, 255, 0.8), transparent 34%),
    linear-gradient(315deg, rgba(255, 225, 220, 0.68), transparent 30%),
    var(--surface-soft);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
}

.contact-points span,
.contact-points a {
  color: inherit;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-points a {
  color: var(--ink);
  transition: color 180ms ease;
}

.contact-points a:hover {
  color: var(--blue);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 102, 204, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue);
  font-size: 0.88rem;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(20, 24, 31, 0.13);
}

.contact-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), #f0184d);
}

.form-header {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
}

.form-header span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
}

.form-header strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

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

.contact-form label:focus-within span {
  color: var(--blue);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: var(--radius);
  background: #fbfbfd;
  color: var(--ink);
  padding: 15px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(17, 19, 21, 0.22);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 102, 204, 0.16);
  border-color: rgba(0, 102, 204, 0.38);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.form-button {
  width: 100%;
  border: 0;
}

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

.form-note.success {
  color: #0b7a48;
}

.form-note.error {
  color: #c22f3f;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--blue);
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

.reveal-group.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0.18);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes buttonShine {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .topbar.menu-active {
    background: rgba(251, 251, 253, 0.98);
    border-color: rgba(17, 19, 21, 0.12);
    box-shadow: 0 24px 70px rgba(20, 24, 31, 0.16);
  }

  .nav-links.open {
    position: fixed;
    z-index: 45;
    display: grid;
    inset: 76px 10px auto;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 18px;
    background: rgba(251, 251, 253, 0.96);
    backdrop-filter: blur(24px) saturate(160%);
    box-shadow: var(--shadow);
    animation: menuDrop 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-links.open a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: var(--ink);
    border-radius: 12px;
    border-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: rgba(0, 102, 204, 0.08);
    color: var(--blue);
  }

  .nav-links.open a::after {
    display: none;
  }

  .mobile-menu-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 19, 21, 0.08);
  }

  .nav-links.open .mobile-menu-footer a {
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(0, 102, 204, 0.16);
    background: rgba(255, 255, 255, 0.76);
    color: var(--blue);
    font-size: 0.9rem;
  }

  .section-grid,
  .hero-inner,
  .dark-panel,
  .studio-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    max-width: 760px;
  }

  .service-grid,
  .solution-grid,
  .signature-grid,
  .feature-band,
  .process-list,
  .trust-panel,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .deliverable-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .trust-panel div:first-child,
  .trust-panel div:last-child {
    border-radius: 8px;
  }

  .service-grid {
    max-width: 720px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer p {
    text-align: left;
  }

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

@media (max-width: 680px) {
  .topbar {
    inset: 10px 10px auto;
    border-radius: var(--radius);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 44px;
    text-align: left;
    place-items: start;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.18rem, 10.2vw, 3.05rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.92rem, 9vw, 2.8rem);
  }

  .hero-lede {
    margin-inline: 0;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-media {
    aspect-ratio: 16 / 8.9;
  }

  .hero-proof,
  .signature-grid,
  .feature-band,
  .service-grid,
  .solution-grid,
  .process-list,
  .nepal-visual,
  .trust-panel,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    margin-top: 34px;
  }

  .solution-grid article {
    min-height: auto;
  }

  .solution-grid span {
    margin-bottom: 28px;
  }

  .deliverable-grid article,
  .deliverable-grid article:nth-child(2),
  .deliverable-grid article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.08);
    min-height: auto;
  }

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

  .deliverable-grid strong {
    margin-bottom: 28px;
  }

  .hero-map-note {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .hero-map-note strong {
    font-size: 0.78rem;
  }

  .hero-map-note span {
    font-size: 0.72rem;
  }

  .hero-proof {
    gap: 12px;
    margin-top: 0;
  }

  .feature-band {
    width: calc(100% - 36px);
    padding: 16px 0 58px;
    gap: 12px;
  }

  .feature-band article {
    min-height: auto;
    padding: 22px;
  }

  .trust-panel {
    padding-top: 28px;
    gap: 10px;
  }

  .trust-panel div {
    border-radius: 8px;
    padding: 20px 22px;
  }

  .feature-band span {
    margin-bottom: 24px;
  }

  .section {
    padding: 72px 18px;
  }

  .signature-grid article,
  .service-card,
  .process-list article {
    min-height: auto;
  }

  .signature-grid span,
  .card-icon,
  .process-list span {
    margin-bottom: 28px;
  }

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

  .screen-title {
    display: grid;
  }

  .screen-title strong {
    text-align: left;
  }

  .screen-insights {
    grid-template-columns: 1fr;
  }

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

  .footer {
    display: grid;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}
