:root {
  --ink: #111214;
  --charcoal: #26292d;
  --text: #3f4851;
  --muted: #66717b;
  --surface: #ffffff;
  --paper: #faf7f0;
  --section: #ebe7df;
  --section-soft: #f2eee7;
  --warm-gray: #eeeae2;
  --soft-gray: #e1ddd4;
  --line: #d1ccc2;
  --line-dark: #bdb7ac;
  --slate: #52697c;
  --slate-dark: #31485a;
  --navy: #172536;
  --shadow: 0 18px 48px rgba(17, 18, 20, 0.11);
  --soft-shadow: 0 12px 30px rgba(17, 18, 20, 0.075);
  --card-shadow: 0 14px 34px rgba(17, 18, 20, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(82, 105, 124, 0.09), transparent 30rem),
    linear-gradient(180deg, var(--paper) 0%, #f4f0e8 46%, var(--paper) 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

.section-shell,
.trust-strip,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem max(1rem, calc((100% - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(107, 143, 179, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(27, 36, 48, 0.97), rgba(22, 32, 42, 0.97));
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--paper);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  color: rgba(251, 250, 247, 0.76);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  transition: color 170ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--surface);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.header-cta {
  min-width: max-content;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--ink);
  background: var(--paper);
  font-size: 0.88rem;
}

.btn {
  min-height: 3.15rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 10px 22px rgba(17, 18, 20, 0.12);
}

.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line-dark);
}

.btn-secondary:hover {
  border-color: var(--slate);
  box-shadow: var(--soft-shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(3.75rem, 7vw, 5.5rem);
}

.hero-copy {
  max-width: 45rem;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--slate-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 45rem;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.028em;
}

p {
  color: var(--text);
}

.hero-text {
  max-width: 42rem;
  margin-bottom: 1.85rem;
  color: var(--charcoal);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-card {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.96)),
    radial-gradient(circle at 78% 12%, rgba(82, 105, 124, 0.12), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 105, 124, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 105, 124, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  pointer-events: none;
}

.hero-card-top,
.workflow-stack,
.hero-note {
  position: relative;
  z-index: 1;
}

.hero-card-top,
.hero-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-label {
  display: inline-flex;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--slate);
  box-shadow: 0 0 0 0.3rem rgba(82, 105, 124, 0.13);
}

.workflow-stack {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0;
}

.workflow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(189, 183, 172, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(17, 18, 20, 0.055);
}

.workflow-item.is-active {
  border-color: rgba(49, 72, 90, 0.5);
  background: rgba(240, 244, 246, 0.96);
  box-shadow: 0 14px 30px rgba(49, 72, 90, 0.13);
}

.workflow-item span {
  display: grid;
  grid-row: span 2;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 8px;
  color: var(--surface);
  background: var(--slate-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.workflow-item small {
  color: var(--text);
}

.hero-note {
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.94rem;
}

.hero-note strong {
  color: var(--ink);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: 0;
  padding: 1.35rem max(1rem, calc((100% - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(107, 143, 179, 0.16), transparent 24rem),
    linear-gradient(180deg, #1b2430, #16202a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-strip span,
.engagement-grid .featured span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(30, 41, 59, 0.86);
  color: #e5edf5;
  font-size: 0.83rem;
  font-weight: 650;
}

.busy,
.simple,
.services,
.solutions,
.spotlight,
.engagement,
.final-cta {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.simple,
.solutions,
.engagement {
  position: relative;
  width: 100%;
  margin: clamp(4.5rem, 8vw, 7rem) 0 0;
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 16%, rgba(107, 143, 179, 0.14), transparent 28rem),
    linear-gradient(180deg, #1b2430, #16202a);
}

.simple::before,
.solutions::before,
.engagement::before {
  content: none;
}

.simple .eyebrow,
.solutions .eyebrow,
.engagement .eyebrow {
  color: #6b8fb3;
}

.simple h2,
.solutions h2,
.engagement h2 {
  color: #f8fafc;
}

.simple .section-heading p,
.solutions .section-heading p,
.engagement .section-heading p {
  color: #cbd5e1;
}

.busy {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.2rem, 5vw, 4.75rem);
  align-items: center;
}

.image-panel {
  min-height: 25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 24% 12%, rgba(95, 126, 151, 0.28), transparent 14rem),
    linear-gradient(145deg, #252b31, #15191e);
  box-shadow: 0 26px 64px rgba(17, 18, 20, 0.26);
}

.diagram-card {
  height: 100%;
  min-height: 22rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  background-size: 30px 30px;
}

.diagram-pill {
  display: inline-flex;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(251, 250, 247, 0.92);
  font-size: 0.78rem;
  font-weight: 750;
}

.diagram-line {
  height: 0.5rem;
  width: 72%;
  margin: 2.2rem 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7e2ea, rgba(95, 126, 151, 0.28));
}

.diagram-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.15fr;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.diagram-row span,
.diagram-node-grid i {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.diagram-row span {
  height: 4.2rem;
}

.diagram-node-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.diagram-node-grid i {
  height: 3.4rem;
}

.content-block {
  max-width: 46rem;
}

.content-block p,
.section-heading p,
.spotlight p,
.final-cta p {
  font-size: 1.04rem;
}

.quick-checks,
.feature-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-checks li,
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--charcoal);
  font-weight: 650;
}

.quick-checks li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--slate);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-cards,
.service-grid,
.engagement-grid {
  display: grid;
  gap: 1rem;
}

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

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

.process-cards article,
.service-card,
.engagement-grid article,
.use-case-grid article {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.process-cards article,
.service-card,
.engagement-grid article {
  padding: 1.18rem;
  border-radius: var(--radius-md);
}

.process-cards article {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(30, 41, 59, 0.88);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.process-cards span,
.service-card span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 9px;
  background: rgba(49, 72, 90, 0.12);
  color: var(--slate-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-cards span {
  background: rgba(107, 143, 179, 0.18);
  color: #d8e7f3;
}

.process-cards h3 {
  color: #f8fafc;
}

.process-cards p {
  color: #cbd5e1;
}

.process-cards p,
.service-card p,
.engagement-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-card {
  min-height: 16.5rem;
}

.service-card:nth-child(even),
.engagement-grid article:nth-child(odd) {
  background: rgba(250, 249, 246, 0.96);
}

.service-card:nth-child(4) {
  border-color: rgba(49, 72, 90, 0.44);
  background:
    linear-gradient(180deg, rgba(244, 247, 249, 0.98), rgba(255, 255, 255, 0.96));
}

.service-card:nth-child(4) span {
  background: var(--slate-dark);
  color: var(--surface);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.use-case-grid article {
  display: flex;
  align-items: center;
  min-height: 4.9rem;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: #e5edf5;
  font-weight: 650;
  background: rgba(30, 41, 59, 0.84);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.final-cta {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.engagement-grid .featured {
  border-color: rgba(107, 143, 179, 0.32);
  background:
    linear-gradient(180deg, rgba(49, 72, 90, 0.92), rgba(23, 37, 54, 0.96)),
    var(--navy);
  color: var(--surface);
}

.engagement-grid .featured h3,
.engagement-grid .featured p {
  color: var(--surface);
}

.engagement-grid .featured span {
  margin-bottom: 1rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.engagement-grid article {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(30, 41, 59, 0.84);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.engagement-grid article:nth-child(odd) {
  background: rgba(36, 49, 69, 0.82);
}

.engagement-grid h3 {
  color: #f8fafc;
}

.engagement-grid p {
  color: #cbd5e1;
}

.advisory-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.86);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  color: #cbd5e1;
}

.advisory-note strong {
  color: #f8fafc;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 44rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 2.25rem max(1rem, calc((100% - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 0%, rgba(107, 143, 179, 0.12), transparent 22rem),
    linear-gradient(180deg, #1b2430, #16202a);
  color: #aeb8c4;
}

.site-footer strong {
  color: #f8fafc;
}

.site-footer p {
  margin: 0.2rem 0 0;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-links a:hover {
  color: #f8fafc;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .busy,
  .spotlight {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .process-cards,
  .service-grid,
  .engagement-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 1rem, 1120px);
  }

  .simple,
  .solutions,
  .engagement {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-header {
    padding: 0.85rem;
  }

  .brand span:last-child {
    max-width: 9.25rem;
    line-height: 1.08;
  }

  .header-cta {
    padding: 0.72rem 0.82rem;
    font-size: 0.78rem;
  }

  .nav-links {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9vw, 3.05rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-card,
  .image-panel {
    border-radius: 18px;
  }

  .hero-note {
    flex-direction: column;
    gap: 0.2rem;
  }

  .process-cards,
  .service-grid,
  .engagement-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
