:root {
  --bg: #f6f4ed;
  --bg-soft: #ece8dc;
  --ink: #101714;
  --ink-2: #26352f;
  --muted: #64706a;
  --line: rgba(16, 23, 20, .12);
  --line-strong: rgba(16, 23, 20, .22);
  --panel: #fffdf7;
  --dark: #0b2018;
  --dark-2: #123326;
  --accent: #a9ff68;
  --accent-2: #1e6bff;
  --accent-3: #d98b2b;
  --shadow: 0 24px 70px rgba(16, 23, 20, .11);
  --max: 1180px;
  --wide: 1320px;
  --nav-h: 78px;
  --radius: 8px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-body: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Geist", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(169, 255, 104, .2), transparent 25%),
    radial-gradient(circle at 88% 0, rgba(30, 107, 255, .11), transparent 28%),
    linear-gradient(180deg, #fbfaf5 0, var(--bg) 42%, #f0ede4 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(16, 23, 20, .08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.scrolled {
  background: rgba(251, 250, 245, .88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 23, 20, .08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--wide));
  height: var(--nav-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-brand {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(16, 23, 20, .08);
  border-radius: 999px;
  background: rgba(255, 253, 247, .78);
}

.nav-link {
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  transition: color .22s var(--ease), background .22s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: #f1eee5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  color: #fffdf7;
  background: var(--dark);
  box-shadow: 0 12px 30px rgba(16, 23, 20, .14);
  font-weight: 750;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  background: #132d23;
  box-shadow: 0 18px 38px rgba(16, 23, 20, .18);
}

.btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #fffdf7;
}

.btn.light {
  color: var(--dark);
  background: var(--accent);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, .88);
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  display: block;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

body.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::before {
  opacity: 0;
}

body.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 14px auto;
  z-index: 49;
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

main {
  min-height: 65vh;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 64px 0;
}

.wrap {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.wide {
  width: min(100% - 44px, var(--wide));
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 990px;
  font-size: clamp(3.05rem, 7vw, 6.35rem);
  line-height: .98;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.1rem, 4.5vw, 4.45rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.08;
}

h4 {
  font-size: 1rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 720px;
  color: #536159;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 253, 247, .76);
  font-size: .76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(169, 255, 104, .22);
}

.hero {
  padding: calc(var(--nav-h) + 86px) 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
  gap: 54px;
  align-items: center;
}

.hero-grid.compact {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

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

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

.proof {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .72);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.proof b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 80px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9d5c8;
  box-shadow: var(--shadow);
}

.hero-photo img,
.image-panel img,
.card-image img,
.office-image img,
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img[src^="data:image/svg"],
.image-panel img[src^="data:image/svg"],
.card-image img[src^="data:image/svg"],
.article-image img[src^="data:image/svg"] {
  object-fit: fill;
}

.hero-photo::after,
.card-image::after,
.office-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 32, 24, .62));
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  left: -28px;
  right: 42px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  color: #fffdf7;
  background: rgba(11, 32, 24, .92);
  box-shadow: 0 22px 60px rgba(16, 23, 20, .24);
  backdrop-filter: blur(16px);
}

.mini-stat {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.mini-stat span {
  color: rgba(255, 253, 247, .68);
  font-size: .76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mini-stat b {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0;
}

.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 68px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 0, rgba(169, 255, 104, .18), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 247, .9), rgba(246, 244, 237, 0));
}

.page-hero .hero-grid {
  align-items: end;
}

.hero-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .76);
}

.hero-note b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: #fffdf7;
  background: var(--dark);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 34s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  white-space: nowrap;
  color: rgba(255, 253, 247, .84);
  font-weight: 700;
}

.ticker span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 36px;
}

.centered {
  text-align: center;
  justify-items: center;
}

.centered h2,
.centered .lead {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

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

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

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

.card,
.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .78);
  box-shadow: 0 14px 38px rgba(16, 23, 20, .07);
  overflow: hidden;
}

.card {
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 23, 20, .24);
  box-shadow: var(--shadow);
}

.card-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #d9d5c8;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.card:hover .card-image img {
  transform: scale(1.045);
}

.card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
  height: 100%;
}

.card-body > p {
  min-height: 4.9em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: 230px 1fr;
}

.case-card {
  min-height: 610px;
  display: grid;
  grid-template-rows: 250px 1fr;
}

.blog-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.card-kicker {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .48);
  font-size: .78rem;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: var(--dark);
  font-weight: 750;
}

.text-link::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width .22s var(--ease);
}

.text-link:hover::after {
  width: 42px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-tile {
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .7);
}

.logo-word {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  opacity: .74;
  transition: opacity .22s var(--ease), transform .22s var(--ease), color .22s var(--ease);
}

.logo-tile:hover .logo-word {
  color: var(--dark);
  opacity: 1;
  transform: translateY(-2px);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 14px 38px rgba(16, 23, 20, .07);
}

.team-photo {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #d9d5c8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s var(--ease);
}

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

.team-copy {
  padding: 22px;
}

.team-copy h3 {
  font-size: 1.18rem;
}

.team-copy span {
  display: block;
  margin-top: 6px;
  color: var(--dark);
  font-weight: 750;
}

.team-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.dark-band {
  color: #fffdf7;
  background:
    radial-gradient(circle at 20% 0, rgba(169, 255, 104, .18), transparent 32%),
    linear-gradient(135deg, #0b2018, #123326);
}

.dark-band h2,
.dark-band h3,
.dark-band h4 {
  color: #fffdf7;
}

.dark-band p {
  color: rgba(255, 253, 247, .72);
}

.dark-band .panel {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.dark-band .eyebrow {
  color: #fffdf7;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

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

.method-step {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 22px;
}

.method-step small {
  color: var(--accent);
  font-weight: 750;
}

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

.case-card .metric-row,
.blog-card .metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .52);
}

.metric b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(0, 1.26fr);
  gap: 24px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .84);
  box-shadow: var(--shadow);
}

.image-panel {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9d5c8;
}

.detail-stack {
  display: grid;
  gap: 14px;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .76);
}

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

.feature-item {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .48);
}

.chart-grid {
  display: grid;
  gap: 14px;
}

.bar-chart {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 54px;
  gap: 12px;
  align-items: center;
}

.bar-label {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.bar-track {
  display: block;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(16, 23, 20, .08);
  overflow: hidden;
}

.bar-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #33b96b);
  transform-origin: left center;
}

.reveal.in-view .bar-fill {
  animation: chartGrow 1.25s var(--ease) var(--delay, 0ms) forwards;
}

.bar-row-1 .bar-fill {
  background: linear-gradient(90deg, #2563eb, #7dd3fc);
}

.bar-row-2 .bar-fill {
  background: linear-gradient(90deg, #0f766e, #a9ff68);
}

.bar-row-3 .bar-fill {
  background: linear-gradient(90deg, #f59e0b, #fde68a);
}

.bar-row-4 .bar-fill {
  background: linear-gradient(90deg, #7c3aed, #f0abfc);
}

.reveal.in-view .bar-row-1 .bar-fill {
  animation-duration: 1.45s;
}

.reveal.in-view .bar-row-2 .bar-fill {
  animation-name: chartGrowSoft;
  animation-duration: 1.3s;
}

.reveal.in-view .bar-row-3 .bar-fill {
  animation-name: chartGrowGlow;
  animation-duration: 1.55s;
}

.reveal.in-view .bar-row-4 .bar-fill {
  animation-name: chartGrowSlide;
  animation-duration: 1.4s;
}

.bar-value {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .46);
}

.timeline-item b {
  color: var(--ink);
}

.case-doc-grid,
.artifact-grid,
.finding-grid,
.image-duo {
  display: grid;
  gap: 12px;
}

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

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

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

.doc-block,
.finding,
.artifact {
  min-height: 150px;
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .48);
}

.doc-block {
  display: flex;
  flex-direction: column;
}

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

.article-image {
  min-height: 310px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9d5c8;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pull-quote {
  padding: 28px;
  border-left: 4px solid var(--dark);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(169, 255, 104, .18);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.split-media {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 28px;
  align-items: center;
}

.office-image {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9d5c8;
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1.22fr);
  gap: 22px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 14px 38px rgba(16, 23, 20, .07);
}

.contact-form-extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-extra {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .5);
}

.contact-extra b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-extra span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a,
.contact-list span {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.contact-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--dark);
  background: #e8f7df;
  font-style: normal;
}

.contact-list svg {
  width: 17px;
  height: 17px;
}

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

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

.field.full,
.consent {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf5;
  outline: 0;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(30, 107, 255, .46);
  box-shadow: 0 0 0 4px rgba(30, 107, 255, .1);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.map-card {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.map-card iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(.1) saturate(.86);
}

.contact-route {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-route div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .5);
}

.contact-route b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--dark);
  background: #e8f7df;
  font-family: var(--font-display);
}

.contact-route span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.45;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr);
  gap: 28px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body h3 {
  margin-top: 10px;
}

.article-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  margin-bottom: 22px;
}

.cta {
  padding: 40px;
  border-radius: var(--radius);
  color: #fffdf7;
  background:
    radial-gradient(circle at 86% 20%, rgba(169, 255, 104, .26), transparent 26%),
    linear-gradient(135deg, #0b2018, #163326);
  overflow: hidden;
}

.cta h2 {
  color: #fffdf7;
}

.cta p {
  color: rgba(255, 253, 247, .74);
}

.site-footer {
  padding: 54px 0 18px;
  border-top: 1px solid rgba(16, 23, 20, .07);
  background: #f0ede4;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(16, 23, 20, .08);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 12px 30px rgba(16, 23, 20, .04);
}

.footer-cta h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr 1.18fr;
  gap: 28px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.footer-mini span {
  min-width: 0;
  padding: 8px 8px;
  border: 1px solid rgba(16, 23, 20, .08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 247, .48);
  font-size: .74rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.footer-col h3 {
  font-size: .96rem;
  font-weight: 750;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  width: fit-content;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

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

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

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 23, 20, .08);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .6);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 23, 20, .07);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
}

.hidden-field {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}

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

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes chartGrow {
  from { width: 0; }
  to { width: calc(var(--value) * 1%); }
}

@keyframes chartGrowSoft {
  0% { width: 0; opacity: .45; }
  65% { opacity: 1; }
  100% { width: calc(var(--value) * 1%); opacity: 1; }
}

@keyframes chartGrowGlow {
  0% { width: 0; box-shadow: 0 0 0 rgba(169, 255, 104, 0); }
  70% { box-shadow: 0 0 24px rgba(169, 255, 104, .38); }
  100% { width: calc(var(--value) * 1%); box-shadow: 0 0 10px rgba(169, 255, 104, .2); }
}

@keyframes chartGrowSlide {
  0% { width: 0; filter: saturate(.7); }
  100% { width: calc(var(--value) * 1%); filter: saturate(1.18); }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: grid;
  }

  .hero-grid,
  .hero-grid.compact,
  .section-head,
  .detail-layout,
  .split-media,
  .contact-layout,
  .article-layout,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .method-grid,
  .team-grid,
  .footer-grid,
  .feature-list,
  .case-doc-grid,
  .artifact-grid,
  .finding-grid,
  .image-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sticky-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-h: 70px;
  }

  .nav,
  .wrap,
  .wide {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    font-size: 1.06rem;
    gap: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .hero,
  .page-hero {
    padding-top: calc(var(--nav-h) + 42px);
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-proof,
  .grid.two,
  .grid.three,
  .grid.four,
  .method-grid,
  .team-grid,
  .footer-grid,
  .feature-list,
  .logo-wall,
  .metric-row,
  .case-card .metric-row,
  .blog-card .metric-row,
  .case-doc-grid,
  .artifact-grid,
  .finding-grid,
  .image-duo,
  .form-grid,
  .contact-form-extras,
  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-panel {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .case-card,
  .blog-card {
    min-height: auto;
    grid-template-rows: 210px auto;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bar-value {
    text-align: left;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .footer-bottom {
    display: grid;
  }

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