@font-face {
  font-display: swap;
  font-family: "GDF Futura";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/futura-light-bt.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GDF Futura";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/futura-heavy-bt.ttf") format("truetype");
}

:root {
  --ink: #231f20;
  --ink-2: #332f30;
  --muted: #62666a;
  --line: #dfe8ec;
  --paper: #f8fafb;
  --panel: #ffffff;
  --teal: #0f99c9;
  --cyan: #19b5ef;
  --blue: #086e9e;
  --amber: #b76624;
  --mist: #edf8fc;
  --charcoal: #231f20;
  --deep: #171415;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  background: rgba(248, 250, 251, 0.95);
  padding: 15px clamp(20px, 5vw, 74px);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(320px, 64vw);
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.primary-nav a {
  min-height: 40px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: white;
  color: var(--ink);
  outline: 1px solid var(--line);
}

.nav-call {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.nav-call span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero,
.detail-hero {
  display: grid;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.hero {
  min-height: calc(92vh - 74px);
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  background:
    linear-gradient(90deg, rgba(247, 249, 248, 1) 0%, rgba(247, 249, 248, 0.9) 45%, rgba(247, 249, 248, 0) 70%),
    var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 74px);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.detail-hero h1,
.section h2,
.conversion-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.9rem, 5vw, 5.35rem);
}

.detail-hero h1 {
  max-width: 940px;
  font-size: clamp(2.65rem, 5vw, 5.6rem);
}

.hero-subhead,
.strategy-copy > p,
.section-heading > p:not(.eyebrow),
.conversion-band p,
.service-card p,
.practice-card p,
.practice-card strong,
.practice-detail-grid p,
.detail-grid p,
.buyer-panel p {
  color: #42535c;
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
  line-height: 1.68;
}

.hero-subhead {
  max-width: 720px;
  margin: 28px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
  font-weight: 880;
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: white;
}

.proof-band div {
  min-height: 96px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px clamp(18px, 3vw, 44px);
  font-size: clamp(1rem, 1.35vw, 1.26rem);
  font-weight: 900;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 74px);
  scroll-margin-top: 88px;
}

.strategy-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 5vw, 80px);
}

.section-heading {
  max-width: 820px;
}

.section-heading.wide {
  max-width: 1040px;
}

.section h2,
.conversion-band h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.65vw, 4.45rem);
}

.strategy-copy > p {
  margin: 0;
}

.driver-grid,
.service-grid,
.practice-grid,
.practice-detail-grid,
.insight-grid,
.case-study-grid,
.detail-grid,
.authority-grid,
.team-list,
.locations-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.driver-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.driver-card,
.service-card,
.practice-card,
.practice-detail-grid article,
.insight-grid article,
.case-study-grid article,
.detail-grid article,
.buyer-panel,
.proof-callout,
.authority-panel,
.team-list div,
.locations-grid div {
  border: 1px solid var(--line);
  background: var(--panel);
}

.driver-card {
  padding: 22px;
}

.driver-card strong {
  display: block;
  color: var(--teal);
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.driver-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.driver-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.services-section {
  background: #eef8fb;
}

.service-grid {
  margin-top: 42px;
}

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

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
}

.service-card h3,
.detail-grid h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.service-card p {
  margin: 16px 0 0;
}

.service-card > span {
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal);
  font-weight: 900;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(8, 123, 140, 0.4);
  outline: none;
  transform: translateY(-2px);
}

.service-index-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  padding: 14px;
}

.service-index-strip span,
.service-index-strip a {
  font-size: 0.88rem;
  font-weight: 820;
  line-height: 1.2;
}

.service-index-strip span {
  color: var(--ink);
  margin-right: 6px;
}

.service-index-strip a {
  border: 1px solid rgba(15, 153, 201, 0.2);
  background: #f8fdff;
  padding: 8px 10px;
  color: #31505b;
}

.service-index-strip a:hover,
.service-index-strip a:focus-visible {
  border-color: rgba(15, 153, 201, 0.52);
  color: var(--teal);
  outline: none;
}

.service-kicker {
  margin: 18px 0 0 !important;
  color: var(--blue) !important;
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
  font-size: 0.78rem !important;
  font-weight: 900;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
}

.practice-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2fafc 100%);
  border-bottom: 1px solid var(--line);
}

.practice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.practice-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
}

.practice-card:hover,
.practice-card:focus-visible {
  border-color: rgba(25, 181, 239, 0.52);
  outline: none;
  transform: translateY(-2px);
}

.practice-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.practice-card h3,
.practice-detail-grid h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  line-height: 1.08;
}

.practice-card > p {
  margin: 24px 0 0;
}

.practice-card strong {
  display: block;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 22px;
  font-weight: 850;
}

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

.practice-tags span {
  border: 1px solid rgba(15, 153, 201, 0.24);
  background: #f7fcfe;
  padding: 8px 10px;
  color: #28434d;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.practice-detail-section {
  background: #f8fafb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-detail-grid {
  grid-template-columns: minmax(0, 1fr);
}

.practice-detail-grid article {
  padding: clamp(24px, 3vw, 36px);
}

.industries-section,
.products-section {
  background: var(--paper);
}

.products-section {
  border-bottom: 1px solid var(--line);
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.industry-cloud span,
.locations-grid div,
.team-list div {
  border: 1px solid var(--line);
  background: white;
  padding: 16px 18px;
  color: #33434b;
  font-weight: 800;
}

.insights-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
}

.insight-grid article,
.case-study-grid article {
  padding: clamp(22px, 2.4vw, 30px);
}

.insight-grid span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.insight-grid h3,
.case-study-grid h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.5vw, 1.55rem);
  line-height: 1.12;
}

.insight-grid p,
.case-study-grid p {
  color: #42535c;
  line-height: 1.58;
}

.case-study-section {
  background: #f4fbfd;
}

.case-study-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.authority-section,
.proof-section {
  background: #f8fafb;
}

.authority-panel,
.proof-callout {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(25, 181, 239, 0.08), rgba(255, 255, 255, 0)),
    #ffffff;
  padding: clamp(30px, 5vw, 62px);
}

.authority-panel h2,
.proof-callout h2 {
  color: var(--ink);
}

.authority-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.authority-grid div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.authority-grid strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.authority-grid p {
  color: #42535c;
  line-height: 1.55;
}

.team-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.detail-hero {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  min-height: 620px;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 74px);
  background:
    radial-gradient(circle at top right, rgba(19, 169, 189, 0.18), transparent 32%),
    linear-gradient(135deg, #f8fbfa 0%, #edf5f3 100%);
}

.detail-hero .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}

.buyer-panel {
  padding: 28px;
}

.buyer-panel span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-panel p {
  margin: 14px 0 0;
}

.detail-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 78px);
}

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

.detail-grid article {
  padding: clamp(24px, 3vw, 36px);
}

.detail-grid ul,
.detail-grid ol {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding-left: 1.2rem;
  color: #33434b;
  line-height: 1.55;
}

.proof-callout h2 {
  font-size: clamp(1.6rem, 2.7vw, 3.2rem);
  line-height: 1.12;
}

.product-panel h2 {
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.12;
}

.product-panel small {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.workflow-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 28px 0 0;
  padding-left: 1.2rem;
  color: #42535c;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.58;
}

.related-section {
  padding-top: 0;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 74px);
}

.conversion-band.dark {
  border-color: var(--line);
  background: #ffffff;
}

.conversion-band p {
  max-width: 760px;
}

.conversion-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.conversion-actions span {
  flex-basis: 100%;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.locations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.locations-grid div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.locations-grid span {
  color: var(--teal);
}

.site-footer {
  background: #231f20;
  color: white;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 74px) 28px;
}

.footer-brand img {
  width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: white;
  padding: 11px 14px;
}

.footer-brand p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  margin-top: 38px;
}

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

.footer-grid h3 {
  margin: 0 0 6px;
  color: white;
  font-family: "GDF Futura", Helvetica, Arial, sans-serif;
}

.footer-grid a,
.footer-grid span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 40px;
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero,
  .detail-hero,
  .strategy-section,
  .detail-section,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .driver-grid,
  .service-grid.expanded,
  .service-grid.compact,
  .practice-grid,
  .insight-grid,
  .case-study-grid,
  .authority-grid,
  .detail-grid,
  .team-list,
  .locations-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-actions,
  .conversion-actions span {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-call {
    border-left: 0;
    padding-left: 0;
  }

  .brand img {
    width: 300px;
  }

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

  .hero-copy,
  .detail-hero {
    padding-top: 46px;
  }

  .proof-band,
  .driver-grid,
  .service-grid.expanded,
  .service-grid.compact,
  .practice-grid,
  .insight-grid,
  .case-study-grid,
  .authority-grid,
  .detail-grid,
  .team-list,
  .locations-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
