:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: #a7a7a7;
  --soft: #d4d4d4;
  --accent: #d1d5db;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--bg);
  background-size: 46px 46px, 46px 46px, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, margin 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-shell {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.center-heading h2,
.about-copy h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.05vw, 5.35rem);
  line-height: 1;
}

.hero-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: #ffffff;
  color: #050505;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel,
.glass-card,
.choice-panel,
.workshop-wrap,
.cta-card,
.contact-grid a,
.about-image {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  align-self: center;
  margin-top: 0;
  padding: 28px;
  border-radius: 28px;
}

.hero-panel::after {
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 170px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  filter: blur(80px);
}

.panel-topline,
.metric-strip div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline {
  color: var(--muted);
  font-size: 0.86rem;
}

.panel-topline strong {
  color: var(--text);
}

.panel-topline b {
  color: var(--text);
  font-size: 1.05rem;
  margin-right: 5px;
}

.signal-board {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}

.signal-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.signal-board span,
.metric-strip span,
.contact-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-board strong {
  font-size: 1.05rem;
}

.metric-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.metric-strip div {
  align-items: flex-start;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.metric-strip p {
  max-width: 250px;
  margin: 0;
  color: var(--soft);
}

.ambient {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.ambient-one {
  top: 16%;
  right: -18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
}

.ambient-two {
  bottom: 10%;
  left: -18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 120px;
}

.section-heading h2,
.center-heading h2,
.about-copy h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.copy-stack,
.choice-panel {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.copy-stack p,
.choice-panel p,
.workshop-wrap p,
.about-copy p,
.center-heading p,
.section-note {
  margin: 0;
  color: var(--muted);
}

.copy-stack p + p,
.copy-stack ul + p,
.choice-panel p + p,
.choice-panel div + p,
.about-copy p + p {
  margin-top: 24px;
}

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

.plain-list li {
  position: relative;
  padding-left: 24px;
}

.plain-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.center-heading {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}

.center-heading p {
  max-width: 700px;
  margin: 22px auto 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-grid article,
.process-step,
.pill-grid span,
.workshop-topics span {
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--soft);
}

.pill-grid span,
.workshop-topics span {
  background: rgba(255, 255, 255, 0.05);
}

.industry-grid article {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: flex-end;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.industry-grid article::before,
.process-step::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      180px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.16),
      transparent 58%
    );
  transition: opacity 180ms ease;
}

.industry-grid article:hover,
.process-step:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(13, 13, 13, 0.96));
  transform: translateY(-3px);
}

.industry-grid article:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.industry-grid article,
.process-step {
  isolation: isolate;
}

.industry-grid article > *,
.process-step > * {
  position: relative;
  z-index: 1;
}

.section-note {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.75;
}

.partner-section {
  position: relative;
  width: 100%;
  padding: 72px 0 84px;
  overflow: hidden;
}

.partner-heading {
  margin-bottom: 30px;
}

.partner-heading h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #030303;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(18vw, 220px);
  pointer-events: none;
  content: "";
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #030303, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #030303, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 38s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 8px;
}

.logo-pill {
  position: relative;
  display: inline-flex;
  min-width: 164px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #171717, #080808);
  color: #c9cdd3;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  isolation: isolate;
}

.logo-pill::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      180px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.16),
      transparent 58%
    );
  transition: opacity 180ms ease;
}

.logo-pill:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, #202020, #0b0b0b);
  transform: translateY(-3px);
}

.logo-pill:hover::before {
  opacity: 1;
}

.logo-pill img,
.logo-pill span {
  position: relative;
  z-index: 1;
}

.logo-pill img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.logo-pill img[src*="salesforce"] {
  width: 36px;
}

.logo-pill.wordmark span {
  font-size: 1.05rem;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

#services {
  min-height: 100vh;
  padding-top: 86px;
  padding-bottom: 56px;
}

#services .center-heading {
  margin-bottom: 38px;
}

#services .center-heading h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

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

.glass-card {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.glass-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      220px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.14),
      transparent 58%
    );
  transition: opacity 180ms ease;
}

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

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(13, 13, 13, 0.96));
  transform: translateY(-4px);
}

.glass-card:hover::before {
  opacity: 1;
}

.wide-card {
  grid-column: auto;
  min-height: 218px;
}

.card-number {
  color: rgba(255, 255, 255, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 800;
}

.glass-card h3,
.process-step h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.12;
}

.glass-card p,
.process-step p,
.workshop-wrap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-section {
  width: min(1280px, calc(100% - 36px));
}

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

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-step span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.choice-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-panel::before,
.pill-grid span::before,
.workshop-wrap::before,
.workshop-topics span::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      220px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.14),
      transparent 58%
    );
  transition: opacity 180ms ease;
}

.choice-panel:hover,
.pill-grid span:hover,
.workshop-wrap:hover,
.workshop-topics span:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(13, 13, 13, 0.96));
  transform: translateY(-3px);
}

.choice-panel:hover::before,
.pill-grid span:hover::before,
.workshop-wrap:hover::before,
.workshop-topics span:hover::before {
  opacity: 1;
}

.choice-panel,
.pill-grid span,
.workshop-wrap,
.workshop-topics span {
  isolation: isolate;
}

.choice-panel > *,
.pill-grid span,
.workshop-wrap > *,
.workshop-topics span {
  position: relative;
  z-index: 1;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.pill-grid span,
.workshop-topics span {
  padding: 12px 14px;
  font-weight: 750;
}

.pill-grid span,
.workshop-topics span {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workshop-wrap {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.94));
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workshop-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 26px;
}

.about-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.about-copy p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.final-cta {
  padding-bottom: 80px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 42px;
  border-radius: 28px;
}

.cta-card p {
  max-width: 740px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.contact-grid a {
  padding: 20px;
  border-radius: 18px;
}

.contact-grid strong {
  display: block;
  margin-top: 10px;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding: 40px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
}

.footer-brand p,
.copyright {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--soft);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(20px);
  }

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

  .nav-toggle {
    display: grid;
  }

  .hero-grid,
  .split-section,
  .about-section,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 0;
  }

  .section-heading {
    position: static;
  }

  .industry-grid,
  .service-grid,
  .process-line,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 1120px);
  }

  .brand span {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .ambient-one,
  .ambient-two {
    width: 260px;
    height: 260px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10.7vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-panel,
  .glass-card,
  .choice-panel,
  .workshop-wrap,
  .cta-card {
    padding: 22px;
    border-radius: 20px;
  }

  .industry-grid,
  .service-grid,
  .process-line,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .process-step {
    min-height: auto;
  }

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

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

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
