:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6a6a6a;
  --soft: #efeff2;
  --line: #dedede;
  --dark: #0f0f0f;
  --dark-2: #171717;
  --lime: #eaff2f;
  --radius: 22px;
  --container: 1190px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  color: #1d1d1d;
}

.site-nav a:not(.nav-cta):hover {
  color: #727272;
}

.nav-cta,
.btn,
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.nav-cta,
.btn-primary {
  color: #ffffff;
  background: #050505;
}

.btn-secondary {
  color: #101010;
  background: var(--lime);
}

.nav-cta:hover,
.btn:hover,
.service-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f4f4f4;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #777777;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 80px 0 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1771223546326-556cd8382c48?auto=format&fit=crop&w=2200&q=85");
  background-position: 72% 48%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(70, 70, 70, 0.84) 0%, rgba(85, 85, 85, 0.64) 42%, rgba(80, 80, 80, 0.16) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.12), rgba(15, 15, 15, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-copy {
  width: min(100%, 730px);
  padding: 110px 0 76px;
  color: #ffffff;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 8.7vw, 126px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  width: min(100%, 520px);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.45;
}

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

.about-heading {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: #0f0f0f;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.badge span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.badge-dark {
  color: #111111;
  background: var(--soft);
}

.lead {
  max-width: 840px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.wide-image,
.expertise-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.wide-image {
  aspect-ratio: 1190 / 650;
}

.expertise {
  padding-top: 30px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 72px;
  align-items: center;
}

.expertise-copy h2,
.service-head h2,
.vendor-head h2,
.careers-copy h2,
.cta-card h2 {
  margin: 24px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.expertise-copy p,
.service-head p,
.vendor-head p,
.careers-copy p,
.footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.expertise-copy p {
  max-width: 470px;
  margin: 28px 0 0;
}

.expertise-image {
  aspect-ratio: 1.13 / 1;
}

.services {
  color: #ffffff;
  background: var(--dark);
}

.service-head {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 76px;
}

.service-head p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 710px;
  margin: 0 0 8px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item {
  min-height: 270px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1.18fr minmax(280px, 0.82fr);
  align-items: center;
  gap: 42px;
  padding: 34px max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.35s ease;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item:hover,
.service-item:hover .service-meta {
  color: #0f0f0f;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.62);
}

.service-meta span {
  font-size: 17px;
}

.service-link {
  min-height: 44px;
  color: #0f0f0f;
  background: var(--lime);
}

.service-item h3 {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.service-visual {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 18px;
  opacity: 0.78;
  transform: translateX(20px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-item:hover .service-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.vendors {
  background: #ffffff;
}

.vendor-head {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}

.vendor-head h2 {
  max-width: 720px;
}

.vendor-head p {
  max-width: 600px;
  margin: 0 0 8px;
}

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

.vendor-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.vendor-card:nth-child(2n) {
  background: var(--soft);
  border-color: var(--soft);
}

.vendor-card:hover {
  transform: translateY(-4px);
  border-color: #cecece;
}

.vendor-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vendor-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--ink);
}

.vendor-logo img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 6px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 0 0 1px #e6e6e6;
}

.vendor-logo strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-card-top a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.vendor-card-top a:hover {
  color: var(--ink);
}

.vendor-card h3 {
  margin: 46px 0 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
}

.vendor-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

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

.vendor-tags span {
  padding: 7px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  color: #202020;
  font-size: 12px;
  font-weight: 600;
}

.testimonials {
  background: #ffffff;
}

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

.testimonial-card {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #ededed;
}

.testimonial-card.muted {
  background: var(--soft);
  border-color: var(--soft);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  flex: 0 0 auto;
  object-fit: cover;
}

.testimonial-card p {
  margin: 0;
  color: #1d1d1d;
  font-size: 22px;
  line-height: 1.3;
}

.testimonial-card div:last-child {
  margin-top: auto;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 20px;
  font-weight: 500;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
}

.careers {
  color: #ffffff;
  background: var(--dark);
}

.careers-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 72px;
  align-items: start;
}

.careers-copy {
  position: sticky;
  top: 118px;
}

.careers-copy h2 {
  max-width: 650px;
}

.careers-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.careers-copy .btn {
  margin-top: 34px;
}

.role-list {
  display: grid;
  gap: 14px;
}

.role-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: var(--dark-2);
}

.role-card span {
  color: var(--lime);
  font-size: 18px;
}

.role-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.role-card p {
  grid-column: 2;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.cta-section {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #ffffff;
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 15, 15, 0.18);
  font-size: clamp(78px, 13vw, 190px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-bottom {
  top: auto;
  bottom: 36px;
  animation-direction: reverse;
}

.marquee div {
  width: max-content;
}

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

.cta-wrap {
  position: relative;
  z-index: 2;
}

.cta-card {
  width: min(100%, 720px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px;
  border-radius: 28px;
  background: #101010;
}

.cta-card h2 {
  margin: 0;
  max-width: 470px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.footer {
  color: #ffffff;
  background: var(--dark);
  padding: 94px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr 0.55fr;
  gap: 76px;
}

.footer-brand .brand-mark {
  color: var(--dark);
  background: #ffffff;
}

.footer p {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.66);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 86px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1024px) {
  .section-pad {
    padding: 86px 0;
  }

  .about-heading,
  .expertise-grid,
  .service-head,
  .vendor-head,
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .service-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-meta {
    justify-content: space-between;
  }

  .service-visual {
    width: min(520px, 100%);
    transform: none;
  }

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

  .careers-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media,
  .hero-shade {
    top: 66px;
  }

  .hero-media {
    background-position: 28% 50%;
  }

  .hero-copy {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(48px, 17vw, 78px);
  }

  .hero p {
    font-size: 18px;
  }

  .lead {
    font-size: clamp(28px, 10vw, 42px);
  }

  .wide-image,
  .expertise-image {
    aspect-ratio: 1 / 0.78;
    border-radius: 16px;
  }

  .service-head {
    margin-bottom: 44px;
  }

  .service-item {
    min-height: auto;
    padding-block: 30px;
  }

  .service-item h3 {
    font-size: clamp(38px, 13vw, 64px);
  }

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

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

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

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

  .vendor-card h3 {
    margin-top: 36px;
  }

  .role-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .role-card p {
    grid-column: auto;
  }

  .cta-card,
  .footer-grid,
  .footer-bottom {
    display: grid;
  }

  .cta-card {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    justify-items: start;
  }
}
