@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --ink: #111315;
  --ink-soft: #1a1d1f;
  --muted: #697078;
  --muted-light: #8a9095;
  --line: #e4e7e8;
  --paper: #ffffff;
  --soft: #f5f6f5;
  --soft-dark: #ecefee;
  --accent: #d9ff4a;
  --accent-dark: #c6eb35;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

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

h1,
h2,
h3,
.brand {
  font-family: "Manrope", sans-serif;
}

h2 {
  font:
    700 clamp(38px, 5vw, 64px) / 1.02 "Manrope",
    sans-serif;
  letter-spacing: -3px;
  margin: 0;
}

h2 em,
h1 em {
  font-style: normal;
  color: #727a80;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #777e83;
  margin: 0 0 20px;
  text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  height: 82px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-bottom: 1px solid var(--line);

  position: sticky;
  top: 0;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
}

.brand span {
  display: inline-flex;
  width: 28px;
  height: 28px;

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  background: var(--ink);
  color: #fff;

  margin-right: 5px;

  font-size: 15px;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 27px;

  font-size: 13px;
  color: #555d62;
}

.nav nav a {
  position: relative;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--ink);

  transition: width 0.2s ease;
}

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

.nav nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d3d7d8;
  padding: 10px 17px;
  border-radius: 99px;

  font-size: 13px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border-radius: 99px;
  padding: 14px 21px;

  font-size: 14px;
  font-weight: 600;

  border: 1px solid transparent;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.dark:hover {
  background: #292d30;
}

.button.light {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.light:hover {
  border-color: var(--ink);
  background: #fff;
}

.button.white {
  background: #fff;
  color: var(--ink);
}

.button.white:hover {
  background: var(--accent);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 82px);

  padding: 9vw 6vw;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 7vw;

  align-items: center;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(217, 255, 74, 0.14),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      #fbfcfb 100%
    );
}

.hero-copy {
  max-width: 950px;
}

.hero h1 {
  font:
    800 clamp(48px, 7vw, 94px) / 0.98 "Manrope",
    sans-serif;

  letter-spacing: -5px;
  max-width: 920px;

  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);

  max-width: 680px;

  margin: 28px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
  background: var(--soft);

  padding: 38px;

  border: 1px solid #eceeee;
  border-radius: 6px;

  box-shadow:
    0 20px 50px rgba(17, 19, 21, 0.035);
}

.card-label {
  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.line {
  height: 1px;
  background: #d8dbdc;

  margin: 50px 0 24px;
}

.hero-card p {
  font:
    600 25px / 1.25 "Manrope",
    sans-serif;

  letter-spacing: -1px;
}

.stat {
  border-top: 1px solid #d8dbdc;

  margin-top: 45px;
  padding-top: 20px;

  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stat strong {
  font:
    700 28px / 1 "Manrope",
    sans-serif;
}

.stat span {
  font-size: 12px;
  line-height: 1.5;
  color: #777;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
  padding: 120px 6vw;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  margin-bottom: 55px;

  gap: 50px;
}

.section-head > p {
  max-width: 390px;

  color: #70767a;

  margin: 0;
}


/* =========================================================
   COMPANY
========================================================= */

.company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 10vw;

  border-top: 1px solid var(--line);
}

.text {
  max-width: 620px;

  color: #5d646a;
  font-size: 17px;
}

.text p {
  margin: 0 0 22px;
}

.text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities {
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  min-height: 145px;

  padding: 25px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.capability:hover {
  background: var(--soft);
}

.capability span {
  font-size: 11px;
  color: #969ca0;
}

.capability strong {
  font:
    700 19px / 1.2 "Manrope",
    sans-serif;

  letter-spacing: -0.6px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  background: var(--soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #dfe2e2;
  border-left: 1px solid #dfe2e2;
}

.grid article {
  min-height: 260px;

  padding: 30px;

  border-right: 1px solid #dfe2e2;
  border-bottom: 1px solid #dfe2e2;

  background: transparent;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.grid article:hover {
  background: #fff;
}

.grid span {
  font-size: 11px;
  color: #92989c;
}

.grid h3 {
  font:
    700 22px / 1.15 "Manrope",
    sans-serif;

  letter-spacing: -0.8px;

  margin: 55px 0 12px;
}

.grid p {
  font-size: 14px;
  line-height: 1.65;

  color: #72787c;

  margin: 0;
}


/* =========================================================
   BUSINESS SOLUTIONS
========================================================= */

.business-solutions {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solutions-grid article {
  min-height: 260px;

  padding: 30px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  transition:
    background 0.25s ease;
}

.solutions-grid article:hover {
  background: var(--soft);
}

.solutions-grid span {
  font-size: 11px;
  color: #92989c;
}

.solutions-grid h3 {
  font:
    700 21px / 1.2 "Manrope",
    sans-serif;

  letter-spacing: -0.7px;

  margin: 50px 0 12px;
}

.solutions-grid p {
  color: #72787c;

  font-size: 14px;
  line-height: 1.65;

  margin: 0;
}

.business-cta {
  margin-top: 60px;

  padding: 42px;

  background: var(--soft);

  border: 1px solid var(--line);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 50px;
}

.business-cta .eyebrow {
  margin-bottom: 12px;
}

.business-cta h3 {
  max-width: 720px;

  font:
    700 clamp(25px, 3vw, 38px) / 1.15 "Manrope",
    sans-serif;

  letter-spacing: -1.5px;

  margin: 0 0 12px;
}

.business-cta p:not(.eyebrow) {
  max-width: 650px;

  color: #6d7478;

  margin: 0;
}


/* =========================================================
   PROJECTS
========================================================= */

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

.project-note {
  min-height: 340px;

  border: 1px dashed #d1d5d6;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px;

  background:
    linear-gradient(
      135deg,
      rgba(245, 246, 245, 0.8),
      rgba(255, 255, 255, 0.8)
    );
}

.plus {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d6d9da;
  border-radius: 50%;

  font-size: 30px;
  font-weight: 200;

  color: #777;
}

.project-note h3 {
  font:
    700 25px / 1.2 "Manrope",
    sans-serif;

  letter-spacing: -1px;

  margin: 18px 0 10px;
}

.project-note p {
  color: #777;

  max-width: 520px;

  margin: 0;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
  background: var(--soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #dfe2e2;
  border-left: 1px solid #dfe2e2;
}

.why-grid article {
  min-height: 240px;

  padding: 30px;

  border-right: 1px solid #dfe2e2;
  border-bottom: 1px solid #dfe2e2;

  background: transparent;

  transition: background 0.25s ease;
}

.why-grid article:hover {
  background: #fff;
}

.why-grid strong {
  font:
    700 12px / 1 "Manrope",
    sans-serif;

  color: #8d9498;
}

.why-grid h3 {
  font:
    700 22px / 1.2 "Manrope",
    sans-serif;

  letter-spacing: -0.7px;

  margin: 55px 0 12px;
}

.why-grid p {
  color: #72787c;

  font-size: 14px;

  margin: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
  padding: 110px 6vw;

  background: var(--ink);
  color: #fff;

  display: flex;
  justify-content: space-between;

  gap: 70px;
}

.contact > div:first-child {
  max-width: 760px;
}

.contact .eyebrow {
  color: #9fa5a8;
}

.contact h2 {
  font-size: clamp(50px, 7vw, 90px);
}

.contact h2 em {
  color: #9fa5a8;
}

.contact > div:first-child > p:last-child {
  color: #aaa;

  font-size: 17px;

  max-width: 580px;

  margin: 28px 0 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;

  gap: 14px;

  min-width: 300px;
}

.contact-link {
  color: #b9bdc0;

  font-size: 14px;

  transition:
    color 0.2s ease;
}

a.contact-link:hover {
  color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 30px 6vw;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  color: #888;

  font-size: 12px;
}

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

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 2px 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .nav nav {
    gap: 18px;
  }

  .nav {
    padding: 0 5vw;
  }

  .hero {
    padding: 90px 5vw;
    gap: 5vw;
  }

  .section {
    padding: 100px 5vw;
  }

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

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

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

  .contact {
    padding: 90px 5vw;
  }

  footer {
    padding: 30px 5vw;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  html {
    scroll-padding-top: 75px;
  }

  .nav {
    height: 74px;
    padding: 0 5vw;
  }

  .nav nav {
    display: none;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand span {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding: 80px 5vw;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 70px);

    letter-spacing: -3px;
  }

  .lead {
    font-size: 16px;

    margin-top: 24px;
  }

  .actions {
    margin-top: 28px;
  }

  .button {
    padding: 13px 18px;
    font-size: 13px;
  }

  .hero-card {
    display: block;

    padding: 28px;
  }

  .hero-card p {
    font-size: 22px;
  }

  .line {
    margin: 35px 0 22px;
  }

  .stat {
    margin-top: 35px;
  }


  /* SECTIONS */

  .section {
    padding: 80px 5vw;
  }

  .section-head {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 40px;
  }

  h2 {
    font-size: clamp(37px, 10vw, 52px);

    letter-spacing: -2px;
  }


  /* COMPANY */

  .company {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .text {
    font-size: 16px;
  }


  /* CAPABILITIES */

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

  .capability {
    min-height: 120px;
  }


  /* SERVICES */

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

  .grid article {
    min-height: auto;

    padding: 28px;
  }

  .grid h3 {
    margin-top: 38px;
  }


  /* BUSINESS */

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

  .solutions-grid article {
    min-height: auto;

    padding: 28px;
  }

  .solutions-grid h3 {
    margin-top: 38px;
  }

  .business-cta {
    flex-direction: column;

    align-items: flex-start;

    padding: 30px;

    margin-top: 40px;

    gap: 28px;
  }


  /* PROJECTS */

  .project-note {
    min-height: 280px;

    padding: 28px;
  }


  /* WHY */

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

  .why-grid article {
    min-height: auto;

    padding: 28px;
  }

  .why-grid h3 {
    margin-top: 38px;
  }


  /* CONTACT */

  .contact {
    padding: 80px 5vw;

    flex-direction: column;

    gap: 45px;
  }

  .contact h2 {
    font-size: clamp(48px, 12vw, 68px);
  }

  .contact > div:first-child > p:last-child {
    font-size: 16px;
  }

  .contact-actions {
    min-width: 0;

    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }


  /* FOOTER */

  footer {
    padding: 30px 5vw;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .footer-info {
    text-align: left;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .hero {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .actions {
    flex-direction: column;

    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .nav-cta {
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card p {
    font-size: 20px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

}
