:root {
  --ink: #07130f;
  --ink-2: #12251d;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --lime: #c8f04b;
  --mint: #b6e2cf;
  --line: rgba(7, 19, 15, 0.15);
  --muted: #607068;
  --radius: 1.25rem;
  --shell: min(1180px, calc(100% - 40px));
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--lime);
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img,
.footer-brand img {
  width: 122px;
  height: 64px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-size: 0.92rem;
}
.main-nav > a:not(.nav-cta) {
  opacity: 0.76;
  transition: 0.2s;
}
.main-nav > a:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}
.nav-cta span {
  margin-left: 0.55rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.7rem;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  min-height: 820px;
  padding: 190px 0 42px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -120px;
  top: 70px;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(200, 240, 75, 0.24),
    rgba(182, 226, 207, 0.05) 55%,
    transparent 68%
  );
  filter: blur(2px);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font: 600 0.72rem/1 var(--display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--lime);
}
.eyebrow.dark > span {
  background: var(--ink);
}
.hero h1 {
  margin: 0;
  max-width: 790px;
  font: 600 clamp(3.2rem, 6.5vw, 6.2rem)/0.98 var(--display);
  letter-spacing: -0.06em;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-lead {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #b7c2bd;
  font-size: 1.14rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--lime);
  color: var(--ink);
}
.text-link {
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.7rem 0;
}
.text-link span {
  margin-left: 0.7rem;
}
.hero-visual {
  position: relative;
  height: 390px;
}
.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(23, 42, 34, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.visual-card-main {
  width: 100%;
  top: 50px;
  right: 0;
  padding: 1.35rem;
  border-radius: 1.5rem;
  transform: rotate(3deg);
}
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #b7c2bd;
}
.status-dot {
  color: var(--lime);
}
.status-dot:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 6px;
}
.dashboard-lines {
  display: grid;
  gap: 0.6rem;
  margin: 2rem 0;
}
.dashboard-lines i {
  display: block;
  height: 14px;
  background: linear-gradient(
    90deg,
    rgba(200, 240, 75, 0.75),
    rgba(200, 240, 75, 0.08)
  );
  border-radius: 4px;
}
.dashboard-lines i:nth-child(2) {
  width: 73%;
}
.dashboard-lines i:nth-child(3) {
  width: 45%;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
}
.metric-row small {
  display: block;
  color: #899891;
}
.metric-row strong {
  font: 700 2.3rem var(--display);
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 45px;
}
.mini-chart b {
  width: 8px;
  background: var(--mint);
  border-radius: 3px;
  height: 40%;
}
.mini-chart b:nth-child(2) {
  height: 60%;
}
.mini-chart b:nth-child(3) {
  height: 48%;
}
.mini-chart b:nth-child(4) {
  height: 80%;
}
.mini-chart b:nth-child(5) {
  height: 100%;
  background: var(--lime);
}
.visual-card-float {
  left: -42px;
  bottom: 26px;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: rotate(-4deg);
}
.pulse {
  width: 14px;
  height: 14px;
  border: 3px solid var(--lime);
  border-radius: 50%;
}
.visual-card-float small {
  display: block;
  color: #899891;
}
.visual-card-float strong {
  font-size: 0.88rem;
}
.visual-badge {
  position: absolute;
  right: -20px;
  top: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  font: 800 1.5rem var(--display);
}
.visual-badge span {
  display: block;
  font: 600 0.58rem var(--body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-foot {
  position: relative;
  margin-top: clamp(5rem, 10vh, 8rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #829087;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}
.section {
  padding: 120px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.section-heading h2,
.about h2,
.cta-section h2 {
  font: 600 clamp(2.5rem, 4.5vw, 4.5rem)/1.08 var(--display);
  letter-spacing: -0.05em;
  margin: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 0.4rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  padding: 2.2rem 2.2rem 2.5rem;
  min-height: 380px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    transform 0.25s;
}
.service-card:hover {
  background: white;
}
.service-card.featured {
  background: var(--mint);
}
.service-card.accent-card {
  background: var(--lime);
}
.service-number {
  position: absolute;
  right: 1.7rem;
  top: 1.5rem;
  font: 600 0.72rem var(--display);
  color: var(--muted);
}
.service-icon {
  font-size: 2.6rem;
  height: 105px;
}
.service-card h3 {
  font: 650 1.65rem var(--display);
  letter-spacing: -0.03em;
  margin: 0.5rem 0;
}
.service-card p {
  color: #4f6058;
  max-width: 480px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.service-card li {
  border: 1px solid rgba(7, 19, 15, 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
}
.service-card > a {
  display: inline-flex;
  margin-top: 2rem;
  border-bottom: 1px solid;
  padding-bottom: 0.25rem;
  font-weight: 600;
}
.service-card > a span {
  margin-left: 2rem;
}
.about {
  background: var(--ink);
  color: white;
}
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8rem;
  align-items: center;
}
.about-art {
  position: relative;
  min-height: 620px;
  background: #10221b;
  border-radius: 50% 50% 8px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.art-number {
  position: absolute;
  top: 8%;
  left: -5%;
  font: 800 clamp(8rem, 19vw, 15rem)/0.8 var(--display);
  letter-spacing: -0.12em;
  color: var(--lime);
}
.art-number span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
}
.about-art > p {
  position: relative;
  font: 600 2rem/1.1 var(--display);
  margin: 0;
}
.art-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  right: -80px;
  bottom: -70px;
}
.art-ring:after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(200, 240, 75, 0.45);
  border-radius: 50%;
}
.about-copy > .eyebrow {
  color: var(--lime);
}
.about-lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #c1cbc6;
}
.values {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.values > div {
  display: grid;
  grid-template-columns: 45px 120px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: start;
}
.values span {
  color: var(--lime);
  font-size: 0.72rem;
}
.values h3 {
  font: 600 1rem var(--display);
  margin: 0;
}
.values p {
  color: #92a099;
  font-size: 0.88rem;
  margin: 0;
}
.process {
  background: var(--cream);
}
.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 850px;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    padding 0.25s;
}
.process-list li:hover {
  background: var(--lime);
  padding-left: 2rem;
  padding-right: 2rem;
}
.process-list li > span {
  font: 600 0.74rem var(--display);
}
.process-list h3 {
  font: 600 1.7rem var(--display);
  margin: 0;
}
.process-list p {
  color: var(--muted);
  margin: 0.2rem 0 0;
}
.process-list b {
  font-size: 1.5rem;
  font-weight: 400;
}
.cta-section {
  background: var(--lime);
  padding: 100px 0;
}
.cta-inner > h2 {
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  max-width: 1000px;
}
.cta-inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(7, 19, 15, 0.3);
  padding-top: 1.5rem;
}
.cta-inner p {
  max-width: 470px;
}
.button-light {
  background: var(--ink);
  color: white;
}
.footer {
  background: var(--ink);
  color: white;
  padding: 70px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.7fr 0.7fr;
  align-items: start;
  gap: 2rem;
}
.footer-top > p {
  margin: 0.5rem 0;
  color: #96a49d;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact {
  justify-self: end;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #77867e;
  font-size: 0.75rem;
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 2rem 20px;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 160px;
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    width: min(520px, 90%);
    margin-inline: auto;
  }
  .hero-foot {
    margin-top: 5rem;
  }
  .section-heading,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-art {
    min-height: 480px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    justify-self: start;
  }
}
@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }
  .header-inner {
    height: 78px;
  }
  .brand img {
    width: 96px;
    height: 54px;
  }
  .main-nav {
    top: 78px;
  }
  .hero {
    padding-top: 130px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-visual {
    height: 330px;
  }
  .visual-card-float {
    left: -10px;
  }
  .visual-badge {
    right: -8px;
  }
  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-line {
    display: none;
  }
  .section {
    padding: 82px 0;
  }
  .section-heading {
    margin-bottom: 2.5rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 340px;
    padding: 1.6rem;
  }
  .about-layout {
    gap: 3rem;
  }
  .about-art {
    min-height: 390px;
    padding: 2rem;
  }
  .art-number {
    font-size: 10rem;
  }
  .values > div {
    grid-template-columns: 35px 1fr;
  }
  .values p {
    grid-column: 2;
  }
  .process-list li {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
  .process-list li > b {
    display: none;
  }
  .process-list h3 {
    font-size: 1.35rem;
  }
  .process-list p {
    font-size: 0.88rem;
  }
  .cta-section {
    padding: 80px 0;
  }
  .cta-inner > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}

/* Projects and team */
.projects {
  background: var(--paper);
  padding-top: 40px;
}
.client-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client-logo {
  grid-column: span 4;
  min-height: 230px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}
.client-logo-wide {
  grid-column: span 8;
}
.client-logo img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: saturate(0.88);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.client-logo:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.client-logo-wide img {
  height: 130px;
}
.client-logo-dark {
  /* background: #101715; */
}
.client-logo-dark img {
  height: 170px;
}
.client-logo-illustrated img {
  height: 190px;
}
.client-logo-color {
  padding: 0;
  background: #ffae00;
}
.client-logo-color img {
  height: 230px;
  object-fit: cover;
}
.project-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.project-note span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.founders {
  background: var(--paper);
}
.founders-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7rem;
  align-items: start;
}
.founders-heading {
  position: sticky;
  top: 2rem;
}
.founders-heading h2 {
  font: 600 clamp(2.5rem, 4.5vw, 4.5rem)/1.06 var(--display);
  letter-spacing: -0.05em;
  margin: 0;
}
.founders-heading > p:last-child {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 2rem;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.founder-card-offset {
  margin-top: 5rem;
}
.founder-logo {
  aspect-ratio: 1/1;
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
}
.founder-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.founder-card:hover .founder-logo img {
  transform: scale(1.04);
}
.founder-meta {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.founder-meta span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.founder-meta h3 {
  font: 600 1.25rem var(--display);
  margin: 0.25rem 0 0;
}
@media (max-width: 900px) {
  .founders-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founders-heading {
    position: static;
  }
  .client-logo {
    grid-column: span 6;
  }
  .client-logo-wide {
    grid-column: span 12;
  }
}
@media (max-width: 620px) {
  .client-logo,
  .client-logo-wide {
    grid-column: span 12;
    min-height: 190px;
  }
  .client-logo img,
  .client-logo-wide img {
    height: 125px;
  }
  .client-logo-dark img,
  .client-logo-illustrated img {
    height: 150px;
  }
  .client-logo-color img {
    height: 190px;
  }
  .founder-grid {
    gap: 0.7rem;
  }
  .founder-card-offset {
    margin-top: 2.5rem;
  }
  .founder-logo {
    padding: 0.75rem;
  }
  .founder-meta h3 {
    font-size: 1rem;
  }
}
.client-logo-svg {
  grid-column: span 4;
  
}
.client-logo-svg img {
  height: 180px;
}
.client-logo-sam img {
  height: 180px;
}
@media (max-width: 620px) {
  .client-logo-svg {
    grid-column: span 12;
  }
}
