@font-face {
  font-family: "Urbanist";
  src:
    url("/assets/fonts/Urbanist-Google-Light.ttf") format("truetype"),
    url("/assets/fonts/Urbanist-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src:
    url("/assets/fonts/Urbanist-Google-Regular.ttf") format("truetype"),
    url("/assets/fonts/Urbanist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src:
    url("/assets/fonts/Urbanist-Google-Medium.ttf") format("truetype"),
    url("/assets/fonts/Urbanist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src:
    url("/assets/fonts/Urbanist-Google-SemiBold.ttf") format("truetype"),
    url("/assets/fonts/Urbanist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src:
    url("/assets/fonts/Urbanist-Google-Bold.ttf") format("truetype"),
    url("/assets/fonts/Urbanist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Google-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/Outfit-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #11120f;
  --muted: #686b63;
  --paper: #f8f7f2;
  --surface: #ffffff;
  --line: #dedbd1;
  --lime: #b8f05a;
  --aqua: #3dd6c6;
  --coral: #ff7a59;
  --blue: #2657ff;
  --charcoal: #1d211c;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(20, 22, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-left, 16%) 18%, rgba(184, 240, 90, 0.2), transparent 30%),
    radial-gradient(circle at var(--glow-right, 88%) 66%, rgba(61, 214, 198, 0.16), transparent 28%);
  opacity: 0.95;
  transition: opacity 240ms ease;
}

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

.is-hidden {
  display: none !important;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 18, 15, 0.1);
  background: rgba(248, 247, 242, 0.9);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(248, 247, 242, 0.96);
  box-shadow: 0 12px 34px rgba(17, 18, 15, 0.08);
}

.brand img {
  width: 80px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.header-action {
  background: #111111;
  color: var(--surface);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #111111;
}

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

.header-action:hover {
  background: #111111;
  color: var(--surface);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 72px) 44px;
}

.hero-copy {
  animation: hero-copy-in 820ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font: 700 13px/1.2 "Outfit", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Urbanist", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 6.5vw, 96px);
}

h2 {
  font-size: clamp(30px, 4.1vw, 58px);
}

h3 {
  font-size: clamp(22px, 1.9vw, 30px);
}

h4 {
  font-size: clamp(20px, 1.5vw, 24px);
}

h5 {
  font-size: clamp(18px, 1.2vw, 21px);
}

h6 {
  font-size: 16px;
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
}

.hero-actions,
.hero-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(17, 18, 15, 0.12);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: #111111;
  color: var(--surface);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.72), rgba(61, 214, 198, 0.48) 44%, rgba(255, 122, 89, 0.5)),
    #e7eee1;
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: hero-stage-in 960ms cubic-bezier(0.2, 0.72, 0.18, 1) 120ms both;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 45%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 46px);
  transform: translate3d(var(--stage-drift-x, 0), var(--stage-drift-y, 0), 0) rotate(8deg);
  animation: stage-sheen 8s linear infinite;
}

.hero-visual {
  min-height: 620px;
}

.hero-visual-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.78;
  pointer-events: none;
}

.hero-visual-glow-a {
  right: -80px;
  top: 42px;
  width: 390px;
  height: 390px;
  background: rgba(61, 214, 198, 0.48);
  animation: fallback-pulse 5.8s ease-in-out infinite;
}

.hero-visual-glow-b {
  left: -100px;
  bottom: -120px;
  width: 470px;
  height: 470px;
  background: rgba(184, 240, 90, 0.52);
  animation: fallback-pulse 6.5s ease-in-out -2s infinite;
}

.hero-browser,
.hero-mini-card,
.hero-kpi-card,
.hero-stat-stack {
  position: absolute;
  z-index: 2;
}

.hero-browser {
  right: 44px;
  bottom: 56px;
  width: min(650px, 82%);
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 34px 80px rgba(17, 18, 15, 0.28);
  transform: translate3d(0, var(--parallax-screen-one, 0), 0) rotate(-1.5deg);
  animation: hero-float-main 7s ease-in-out infinite;
}

.browser-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a59;
}

.browser-top span:nth-child(2) {
  background: #f4d35e;
}

.browser-top span:nth-child(3) {
  background: #b8f05a;
}

.browser-top strong {
  margin-left: 8px;
  font-weight: 700;
}

.hero-browser img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-mini-card {
  overflow: hidden;
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(17, 18, 15, 0.2);
  backdrop-filter: blur(12px);
}

.hero-mini-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-mini-card div {
  padding: 14px 16px 16px;
}

.hero-mini-card span,
.hero-kpi-card span,
.hero-stat-stack span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-mini-card strong,
.hero-kpi-card strong {
  display: block;
  margin-top: 3px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.05;
}

.hero-mini-card-left {
  left: 32px;
  top: 82px;
  width: min(330px, 45%);
  transform: translate3d(0, var(--parallax-screen-two, 0), 0) rotate(0deg);
  animation: hero-float-card 6.2s ease-in-out -1.4s infinite;
}

.hero-mini-card-right {
  right: 34px;
  top: 112px;
  width: min(285px, 38%);
  transform: rotate(0deg);
  animation: hero-float-card 6.8s ease-in-out -2.2s infinite;
}

.hero-kpi-card {
  left: 36px;
  bottom: 46px;
  width: min(310px, 45%);
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: 14px;
  padding: 20px;
  background: rgba(17, 18, 15, 0.92);
  color: #ffffff;
  box-shadow: 0 24px 62px rgba(17, 18, 15, 0.24);
  transform: translate3d(0, var(--parallax-card, 0), 0);
}

.hero-kpi-card span,
.hero-kpi-card p {
  color: rgba(255, 255, 255, 0.68);
}

.hero-kpi-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.4;
}

.hero-stat-stack {
  right: 42px;
  top: 320px;
  display: grid;
  gap: 8px;
  width: 180px;
  transform: translate3d(0, var(--parallax-grid, 0), 0);
}

.hero-stat-stack div {
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(17, 18, 15, 0.12);
}

.hero-stat-stack strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.hero-stage-lottie {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.lottie-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translate3d(0, var(--parallax-screen-one, 0), 0);
}

.lottie-scene svg {
  width: 100% !important;
  height: 100% !important;
}

.lottie-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  transition: opacity 280ms ease;
}

.hero-stage.is-lottie-loaded .lottie-fallback {
  opacity: 0;
}

.fallback-window,
.fallback-card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(17, 18, 15, 0.18);
}

.fallback-window-large {
  right: 58px;
  bottom: 72px;
  width: min(560px, 74%);
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(#11120f 0 12%, transparent 12%),
    url("/assets/images/uploads/flightfares-thumb-900x506.png") center 58% / cover no-repeat;
  animation: fallback-float 5.4s ease-in-out infinite;
}

.fallback-window-small {
  left: 50px;
  top: 150px;
  width: min(320px, 46%);
  aspect-ratio: 4 / 3;
  background:
    url("/assets/images/uploads/fxnholdings-thumb-900x506.png") center / cover no-repeat;
  border: 1px solid rgba(17, 18, 15, 0.12);
  animation: fallback-float 6.2s ease-in-out -1.8s infinite;
}

.fallback-card {
  left: 34px;
  bottom: 46px;
  width: min(260px, 42%);
  aspect-ratio: 5 / 3;
  background:
    url("/assets/images/uploads/nxt-bargains-thumb-900x506.png") center / cover no-repeat;
  border: 1px solid rgba(17, 18, 15, 0.12);
  animation: fallback-float 5s ease-in-out -0.8s infinite;
}

.fallback-dots {
  position: absolute;
  right: 34px;
  top: 40px;
  display: flex;
  gap: 10px;
}

.fallback-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  animation: fallback-pulse 1.8s ease-in-out infinite;
}

.fallback-dots span:nth-child(2) {
  background: var(--aqua);
  animation-delay: 180ms;
}

.fallback-dots span:nth-child(3) {
  background: var(--lime);
  animation-delay: 360ms;
}

.studio-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(17, 18, 15, 0.14);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--parallax-card, 0), 0);
}

.studio-card-large {
  top: 30px;
  left: 30px;
  width: min(380px, calc(100% - 60px));
  padding: 28px;
}

.studio-card span,
.work-card span,
.process-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.studio-card strong {
  display: block;
  margin-top: 8px;
  font: 700 28px/1.05 "Outfit", Arial, sans-serif;
}

.studio-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.signal-grid {
  position: absolute;
  right: 28px;
  top: 188px;
  z-index: 3;
  width: min(320px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transform: translate3d(0, var(--parallax-grid, 0), 0);
}

.signal-grid div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 18, 15, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(17, 18, 15, 0.88);
  color: var(--surface);
  transition: transform 180ms ease, background 180ms ease;
}

.signal-grid div:hover {
  transform: translateY(-4px);
  background: rgba(17, 18, 15, 0.96);
}

.signal-grid span {
  font: 700 34px/1 "Outfit", Arial, sans-serif;
}

.signal-grid small {
  color: rgba(255, 255, 255, 0.68);
}

.hero-screen {
  position: absolute;
  width: min(580px, 78%);
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(17, 18, 15, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-screen-one {
  right: 58px;
  bottom: 52px;
  transform: translate3d(0, var(--parallax-screen-one, 0), 0) rotate(-1deg);
}

.hero-screen-two {
  left: 44px;
  bottom: 134px;
  width: min(450px, 58%);
  transform: translate3d(0, var(--parallax-screen-two, 0), 0) rotate(2deg);
}

.hero-stage:hover .hero-screen-one {
  transform: translate3d(0, var(--parallax-screen-one, 0), 0) rotate(0deg) scale(1.015);
}

.hero-stage:hover .hero-screen-two {
  transform: translate3d(0, var(--parallax-screen-two, 0), 0) rotate(0deg) scale(1.02);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 72px) 34px;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 15px;
  animation: ticker-pop 620ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.proof-strip span:nth-child(2) { animation-delay: 70ms; }
.proof-strip span:nth-child(3) { animation-delay: 140ms; }
.proof-strip span:nth-child(4) { animation-delay: 210ms; }
.proof-strip span:nth-child(5) { animation-delay: 280ms; }
.proof-strip span:nth-child(6) { animation-delay: 350ms; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(74px, 11vw, 148px) clamp(20px, 5vw, 72px) clamp(54px, 8vw, 94px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(46px, 7vw, 104px);
}

.page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
}

.page-hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 46px rgba(17, 18, 15, 0.08);
}

.page-hero-card span,
.portfolio-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero-card strong {
  display: block;
  margin-top: 10px;
  font: 700 28px/1.05 "Outfit", Arial, sans-serif;
}

.page-hero-card p {
  margin-top: 14px;
  font-size: 16px;
}

.contact-page-section {
  background: var(--ink);
  color: var(--surface);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-page-details h2 {
  font-size: clamp(34px, 4.4vw, 66px);
}

.contact-page-details p {
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.portfolio-filter-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.portfolio-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(17, 18, 15, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 18, 15, 0.28);
  box-shadow: var(--shadow);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 15, 0.04) 1px, transparent 1px),
    #f6f5ee;
  background-size: 18px 18px;
}

.portfolio-item div {
  padding: 22px;
}

.portfolio-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.portfolio-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: #111111;
  color: #ffffff;
}

.portfolio-item-featured img {
  min-height: 420px;
  object-fit: cover;
  padding: 0;
  background: #111111;
}

.portfolio-item-featured span {
  color: var(--lime);
}

.portfolio-item-featured p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.portfolio-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #eaf1df;
}

.services-page-hero {
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.2), transparent 42%),
    linear-gradient(315deg, rgba(61, 214, 198, 0.18), transparent 44%);
}

.services-page-section {
  background: var(--charcoal);
  color: var(--surface);
}

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

.service-detail-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 240, 90, 0.42);
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.07);
}

.service-detail-card > span,
.service-metric span,
.method-card span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail-card h2 {
  margin-top: 18px;
  font-size: clamp(27px, 2.7vw, 40px);
}

.service-detail-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.service-metric {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
}

.service-metric strong {
  display: block;
  margin-top: 8px;
  font: 700 22px/1.08 "Outfit", Arial, sans-serif;
}

.service-card-link {
  width: max-content;
  margin-top: 22px;
  color: var(--lime);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-page-hero {
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(255, 122, 89, 0.14), transparent 44%),
    var(--paper);
}

.service-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.68);
}

.service-subnav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-subnav a.is-active,
.service-subnav a:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.service-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--surface);
}

.service-detail-section p {
  color: var(--muted);
}

.service-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.service-detail-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #f8f7f2;
}

.service-detail-list dt {
  color: var(--ink);
  font-weight: 700;
}

.service-detail-list dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.ai-scope-section {
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.05fr) minmax(240px, 0.52fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 122, 89, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(25, 116, 132, 0.1), transparent 38%),
    #f7f5ef;
}

.ai-scope-intro {
  align-self: center;
}

.ai-scope-intro > p:not(.eyebrow) {
  max-width: 560px;
}

.ai-scope-stat {
  margin-top: 28px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 55px rgba(17, 17, 17, 0.08);
}

.ai-scope-stat span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.ai-scope-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.08;
}

.ai-scope-stat p {
  margin: 10px 0 0;
}

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

.ai-scope-card {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ai-scope-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 34px;
  background: rgba(255, 122, 89, 0.09);
  transform: rotate(16deg);
}

.ai-scope-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
}

.ai-scope-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 24px;
  background: #111111;
  color: #ff7a59;
}

.ai-scope-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-scope-card h3,
.ai-scope-card p {
  position: relative;
  z-index: 1;
}

.ai-scope-card h3 {
  margin-bottom: 10px;
}

.ai-scope-card p {
  margin: 0;
  color: var(--muted);
}

.ai-scope-path {
  border-radius: var(--radius);
  padding: 18px 18px 24px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

.ai-scope-path-art {
  display: block;
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  margin-bottom: 22px;
  background: #161616;
}

.ai-scope-path > span {
  display: block;
  color: #ff7a59;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-scope-path ol {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: aiPath;
}

.ai-scope-path li {
  position: relative;
  padding-left: 46px;
  counter-increment: aiPath;
}

.ai-scope-path li::before {
  content: counter(aiPath, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.ai-scope-path strong,
.ai-scope-path small {
  display: block;
}

.ai-scope-path strong {
  font-size: 18px;
}

.ai-scope-path small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.service-outcome-section {
  background: var(--charcoal);
  color: var(--surface);
}

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

.service-outcome-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.service-outcome-card span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.service-outcome-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-fit-section {
  background: #eef3e7;
}

.ai-fit-section {
  background:
    linear-gradient(135deg, rgba(223, 234, 210, 0.92), rgba(247, 245, 239, 0.78)),
    #eef3e7;
}

.ai-fit-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.ai-fit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: stretch;
}

.ai-fit-feature,
.ai-fit-grid article,
.ai-fit-readiness {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(17, 18, 15, 0.07);
}

.ai-fit-feature {
  padding: clamp(24px, 3vw, 34px);
}

.ai-fit-feature > span,
.ai-fit-grid span,
.ai-fit-readiness span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: #111111;
  color: #ff7a59;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-fit-feature h3 {
  max-width: 560px;
  margin-top: 26px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.ai-fit-feature p,
.ai-fit-feature li,
.ai-fit-grid p,
.ai-fit-readiness p {
  color: var(--muted);
}

.ai-fit-feature ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ai-fit-feature li {
  position: relative;
  padding-left: 30px;
}

.ai-fit-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff7a59;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.ai-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ai-fit-grid article {
  min-height: 260px;
  padding: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ai-fit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 24px 52px rgba(17, 18, 15, 0.1);
}

.ai-fit-grid h3 {
  margin: 28px 0 12px;
}

.ai-fit-readiness {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 24px;
  background: #111111;
}

.ai-fit-readiness p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

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

.service-fit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
}

.service-fit-grid h3 {
  margin-bottom: 12px;
}

.service-fit-grid p {
  color: var(--muted);
}

.services-method-section {
  background: #eef3e7;
}

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

.method-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(17, 18, 15, 0.07);
}

.method-card h3 {
  margin-top: 28px;
}

.method-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.services-stack-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--surface);
}

.services-stack-band p {
  color: var(--muted);
}

.services-stack-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.services-stack-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #f8f7f2;
}

.services-stack-list dt {
  color: #4e5f2f;
  font-weight: 700;
}

.services-stack-list dd {
  margin: 0;
  color: var(--muted);
}

.legal-page-section {
  background: var(--surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #f8f7f2;
}

.legal-aside span {
  display: block;
  color: #4e5f2f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-aside strong {
  display: block;
  margin-top: 8px;
  font: 700 24px/1.08 "Outfit", Arial, sans-serif;
}

.legal-aside p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 54px);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(17, 18, 15, 0.08);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p:first-child {
  margin-top: 0;
}

.legal-content a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-content .header-style {
  display: block;
  margin-top: 30px;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.15;
}

.about-page-hero {
  background:
    linear-gradient(135deg, rgba(61, 214, 198, 0.2), transparent 44%),
    linear-gradient(315deg, rgba(255, 122, 89, 0.14), transparent 42%);
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--surface);
}

.about-story-section p {
  color: var(--muted);
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-story-copy p {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 24px);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-principles article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #f8f7f2;
}

.about-principles span,
.about-proof-card span {
  color: #4e5f2f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-principles h3 {
  margin-top: 18px;
}

.about-principles p {
  margin: 12px 0 0;
  font-size: 16px;
}

.about-process-section {
  background: var(--charcoal);
  color: var(--surface);
}

.about-process-section .section-heading p,
.about-process-section .process-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.about-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #eef3e7;
}

.about-proof-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.about-proof-card strong {
  display: block;
  margin-top: 22px;
  font: 700 clamp(28px, 3vw, 44px)/1 "Outfit", Arial, sans-serif;
}

.about-proof-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 70px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.intro-section .section-heading {
  display: block;
  margin: 0;
}

.intro-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 4px var(--ink);
  transition: transform 180ms ease;
}

.check-list li:hover::before {
  transform: scale(1.18);
}

.services {
  background: var(--charcoal);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: auto -16% -28% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(61, 214, 198, 0.16);
  pointer-events: none;
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.services-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.services-panel span,
.service-grid span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.services-panel strong {
  display: block;
  margin-top: 18px;
  font: 700 clamp(26px, 2.7vw, 40px)/1.04 "Outfit", Arial, sans-serif;
}

.services-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.services-panel-copy {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.services-panel-copy p {
  margin: 0;
  border-left: 3px solid var(--aqua);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.services-panel-copy strong {
  display: inline;
  margin: 0;
  color: var(--surface);
  font: 700 15px/1.45 "Outfit", Arial, sans-serif;
}

.services-panel-label {
  display: block;
  margin-top: 24px;
}

.services-panel-visual {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(61, 214, 198, 0.16), transparent 52%),
    rgba(17, 18, 15, 0.28);
  overflow: hidden;
}

.services-panel-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.service-dash-bg {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2;
}

.service-browser rect:first-child,
.service-chart rect,
.service-stack rect {
  fill: rgba(255, 255, 255, 0.92);
}

.service-browser circle:nth-of-type(1) {
  fill: var(--coral);
}

.service-browser circle:nth-of-type(2) {
  fill: var(--lime);
}

.service-browser circle:nth-of-type(3) {
  fill: var(--aqua);
}

.service-browser rect:not(:first-child) {
  fill: #111111;
  opacity: 0.88;
}

.service-chart path {
  fill: none;
  stroke: #111111;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-chart circle {
  fill: var(--lime);
}

.service-stack rect:nth-child(1) {
  fill: var(--lime);
}

.service-stack rect:nth-child(2) {
  fill: var(--aqua);
}

.service-stack rect:nth-child(3) {
  fill: var(--coral);
}

.service-flow-line {
  fill: none;
  stroke: rgba(184, 240, 90, 0.64);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
}

.service-pulse {
  fill: var(--coral);
  opacity: 0.9;
  animation: fallback-pulse 2.4s ease-in-out infinite;
}

.service-pulse-alt {
  fill: var(--aqua);
  animation-delay: 320ms;
}

.service-spark {
  fill: none;
  stroke: #111111;
  stroke-width: 5;
  stroke-linecap: round;
}

.service-visual-label {
  fill: rgba(255, 255, 255, 0.72);
  font: 700 13px "Outfit", Arial, sans-serif;
  text-transform: uppercase;
}

.services-panel ul,
.service-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.services-panel li,
.service-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.services-panel li::before,
.service-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

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

.service-grid article {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.045);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-grid article:hover {
  border-color: rgba(184, 240, 90, 0.42);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-4px);
}

.service-grid h3 {
  margin-top: 28px;
}

.service-grid p,
.process-list p,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid p {
  margin: 14px 0 0;
}

.work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: -34px 0 32px;
}

.work-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.work-intro div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.work-intro span,
.work-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.work-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(17, 18, 15, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 18, 15, 0.28);
  box-shadow: var(--shadow);
}

.work-card-featured {
  grid-row: span 3;
  grid-template-columns: 1fr;
  background: #111111;
  color: #ffffff;
}

.work-media {
  overflow: hidden;
  background: #e7e5da;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.work-card:not(.work-card-featured) img {
  aspect-ratio: 16 / 11;
}

.work-card-fullshot .work-media {
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 15, 0.04) 1px, transparent 1px),
    #f6f5ee;
  background-size: 18px 18px;
}

.work-card-fullshot img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 18, 15, 0.08);
}

.work-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.work-card-fullshot:hover img {
  transform: scale(1.02);
}

.work-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.work-card-featured .work-content {
  padding: clamp(26px, 4vw, 42px);
}

.work-card-featured img {
  min-height: 430px;
}

.work-type {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-card-featured .work-type {
  color: var(--lime);
}

.work-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.work-card-featured p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.work-card-featured .work-meta span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.work-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.technology {
  padding-top: 0;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.logo-cloud img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.logo-cloud img:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 18, 15, 0.28);
  box-shadow: 0 12px 28px rgba(17, 18, 15, 0.08);
}

.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.32), transparent 34%),
    #eaf1df;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 15, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

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

.process-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: -34px 0 36px;
}

.process-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.process-intro span {
  border: 1px solid rgba(17, 18, 15, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.process-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 61px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--aqua), var(--coral));
}

.process-list article {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(17, 18, 15, 0.13);
  border-radius: var(--radius);
  background: rgba(248, 247, 242, 0.88);
  box-shadow: 0 16px 38px rgba(17, 18, 15, 0.08);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.process-list article:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(17, 18, 15, 0.12);
}

.process-list article > span {
  color: var(--muted);
}

.process-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 18px 0 26px;
  border-radius: 18px;
  background: #111111;
  color: var(--surface);
  font: 700 20px/1 "Outfit", Arial, sans-serif;
  box-shadow: 0 16px 34px rgba(17, 18, 15, 0.16);
}

.process-list article:nth-child(2) .process-icon {
  background: var(--aqua);
  color: #111111;
}

.process-list article:nth-child(3) .process-icon {
  background: var(--lime);
  color: #111111;
}

.process-list article:nth-child(4) .process-icon {
  background: var(--coral);
  color: #111111;
}

.process-list p {
  color: var(--muted);
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.process-tags span {
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

.brief-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.brief-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, 0.72);
  backdrop-filter: blur(12px);
}

.brief-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(184, 240, 90, 0.18), transparent 38%),
    #111111;
  color: var(--surface);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

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

.brief-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.brief-modal__close span {
  grid-area: 1 / 1;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.brief-modal__close span:first-child {
  transform: rotate(45deg);
}

.brief-modal__close span:last-child {
  transform: rotate(-45deg);
}

.brief-modal__intro {
  align-self: start;
  padding-right: 18px;
}

.brief-modal__intro h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.brief-modal__intro p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.contact-details div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
}

.contact-details dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hidden {
  display: none;
}

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

.form-row-full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #45483f;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(38, 87, 255, 0.12);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-stage-in {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stage-sheen {
  from {
    background-position: -280px 0, 0 0;
  }
  to {
    background-position: 480px 0, 92px 0;
  }
}

@keyframes ticker-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fallback-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes fallback-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

@keyframes hero-float-main {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes hero-float-card {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@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,
  .reveal-stagger > *,
  .hero-screen-one,
  .hero-screen-two,
  .studio-card,
  .signal-grid,
  .lottie-scene,
  .fallback-window,
  .fallback-card,
  .fallback-dots span,
  .hero-browser,
  .hero-mini-card,
  .hero-kpi-card,
  .hero-stat-stack {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
  }
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

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

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

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 72px) 32px;
  background: #080908;
  color: var(--surface);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(184, 240, 90, 0.14);
  pointer-events: none;
}

.site-footer img {
  width: 118px;
}

.site-footer p {
  max-width: 620px;
  margin: 16px 0 0;
}

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

.footer-cta {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.footer-cta > div {
  grid-column: 1 / 4;
}

.footer-cta h2 {
  max-width: 850px;
  margin-top: 0;
  font-size: clamp(36px, 5vw, 76px);
}

.footer-button {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: auto;
  display: inline-block;
  border: 0;
  border-radius: 0;
  padding: 0 4px;
  background: transparent;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: normal;
  text-align: left;
  box-shadow: none;
  transition: color 260ms ease;
  justify-self: start;
}

.footer-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 4px;
  background: var(--lime);
  transition: height 1.1s ease;
}

.footer-button:hover {
  color: #111111;
  transform: none;
  box-shadow: none;
}

.footer-button:hover::before {
  height: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(34px, 5vw, 58px) 0;
}

.footer-about a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--lime);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--surface);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.footer-bottom-link {
  color: var(--lime);
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-bottom-link:hover {
  color: var(--surface);
  transform: translateX(3px);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 80;
  width: min(560px, calc(100vw - 32px));
  border: 1px solid rgba(17, 18, 15, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(17, 18, 15, 0.18);
  backdrop-filter: blur(18px);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__label {
  display: block;
  color: #4e5f2f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin-top: 8px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.cookie-banner p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.cookie-banner a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner__actions .button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
}

.cookie-banner__secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

  .page-hero,
  .contact-page-layout,
  .portfolio-cta-band,
  .services-stack-band,
  .legal-layout,
  .service-detail-section,
  .ai-fit-layout,
  .about-story-section {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .portfolio-page-grid,
  .services-detail-grid,
  .method-grid,
  .ai-scope-board,
  .ai-fit-grid,
  .service-outcome-grid,
  .about-principles,
  .about-proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-modal__dialog {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-browser {
    width: min(620px, 78%);
  }

  .hero-mini-card-right {
    top: 92px;
    width: min(250px, 34%);
  }

  .hero-stat-stack {
    top: auto;
    bottom: 32px;
    right: 28px;
  }

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

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-panel {
    min-height: auto;
  }

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

  .work-intro {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .work-intro div {
    justify-content: flex-start;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .process-intro {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -22px;
  }

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

  .footer-cta > div {
    grid-column: auto;
  }

  .footer-main {
    gap: 28px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    background: var(--surface);
  }

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

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  h3 {
    font-size: clamp(21px, 6vw, 28px);
  }

  .hero-actions,
  .hero-copy .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-button {
    width: auto;
    max-width: 100%;
    text-align: left;
    font-size: 40px;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-browser {
    right: 18px;
    left: 18px;
    bottom: 34px;
    width: auto;
    border-width: 6px;
    transform: none;
  }

  .browser-top {
    height: 38px;
    font-size: 12px;
  }

  .hero-mini-card-left {
    left: 18px;
    top: 28px;
    width: 48%;
  }

  .hero-mini-card-right {
    right: 18px;
    top: 88px;
    width: 44%;
  }

  .hero-kpi-card {
    left: 18px;
    right: 18px;
    bottom: 252px;
    width: auto;
    padding: 16px;
  }

  .hero-stat-stack {
    display: none;
  }

  .studio-card-large {
    inset: 18px 18px auto;
    width: auto;
    padding: 20px;
  }

  .signal-grid {
    right: 18px;
    left: 18px;
    top: 190px;
    width: auto;
  }

  .hero-screen-one {
    right: 18px;
    bottom: 30px;
    width: 82%;
  }

  .hero-screen-two {
    left: 18px;
    bottom: 96px;
    width: 68%;
  }

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

  .ai-fit-readiness {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .services-detail-grid,
  .method-grid,
  .ai-scope-board,
  .ai-fit-grid,
  .service-outcome-grid,
  .service-fit-grid,
  .about-principles,
  .about-proof-band,
  .work-grid,
  .process-list,
  .contact-form,
  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-item-featured img {
    min-height: 260px;
  }

  .process-list article {
    min-height: auto;
  }

  .work-card-featured {
    grid-row: auto;
  }

  .work-card-featured img {
    min-height: 260px;
  }

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

  .service-grid article {
    min-height: 230px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 80px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-mini-card-left,
  .hero-mini-card-right {
    width: 48%;
  }

  .hero-kpi-card {
    bottom: 228px;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-grid div {
    min-height: 92px;
    padding: 12px;
  }

  .signal-grid span {
    font-size: 28px;
  }
}
