*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #080808;
  --bg2: #111;
  --bg3: #161616;
  --white: #f2f0eb;
  --muted: rgba(242, 240, 235, 0.4);
  --faint: rgba(255, 255, 255, 0.5);
  --lime: #c8f135;
  --lime-dim: rgba(200, 241, 53, 0.08);
  --border: rgba(242, 240, 235, 0.07);
  --border-mid: rgba(242, 240, 235, 0.12);
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Barlow', sans-serif;
  --navbar-height: 90px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 241, 53, 0.35);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-height);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer
}

.nav-logo span {
  color: var(--lime)
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-links a {
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.nav-links .nav-pill {
  display: inline-block;
}

.mobile-cta {
  display: none;
}

.nav-links .nav-pill {
  /* display: none; */
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

.nav-pill,
.mobile-cta a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--display)
}

.page {
  min-height: 100vh;
  padding-top: calc(var(--navbar-height) + 2%);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease forwards 0.2s;
  opacity: 0;
  background: #262525;
  width: 450px;
  padding: 15px;
}

.eyebrow-dot {
  width: 10px;
  height: 45px;
  background: var(--lime);
  position: absolute;
  left: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6)
  }
}

.eyebrow-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  padding-left: 10px;
}

.hero-hl {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  animation: fadeUp 0.9s ease forwards 0.4s;
  opacity: 0
}

.hero-hl .lime {
  color: var(--lime)
}

.hero-hl .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 240, 235, 0.2)
}

.hero-bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s ease forwards 0.7s;
  opacity: 0
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.8
}

.hero-q {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(200, 241, 53, 0.7);
  letter-spacing: 0.04em
}

.hero-q::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--lime);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer
}

.btn-big:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 rgba(200, 241, 53, 0.25)
}

.btn-ghost {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: 1px var(--lime) solid;
}

.btn-ghost:hover {
  color: var(--bg);
  background: var(--lime);
}

.hero-img img {
  cursor: pointer;
  transition: all 0.2s;
}

.hero-img img:hover {
  transform: scale(1.02);
}

.marquee-wrap {
  overflow: hidden;
  background: var(--lime);
  padding: 0.9rem 0
}

.marquee {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content
}

.marquee-item {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bg);
  padding: 0 2.5rem;
  white-space: nowrap
}

.marquee-sep {
  opacity: 0.35;
  margin-left: 1rem
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.sec-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 3rem 3rem 2rem;
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em
}

.sec-num {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint)
}

.svcs-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 3rem;
}

.svc {
  padding: 2rem 1.75rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  background: #191818;
  border-radius: 7px;
  width: 275px;
}

.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s
}

.svc:hover::before {
  transform: scaleX(1)
}

.svc:last-child {
  border-right: none
}

.svc:hover {
  background: var(--bg3)
}

.svc-n {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--faint);
  margin-bottom: 2rem
}

.svc-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em
}

.svc-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300
}

.svc-pill {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(200, 241, 53, 0.2);
  color: var(--lime)
}

.stats-lbl {
  padding: 1.5rem 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  border-bottom: 1px solid var(--border)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.stat {
  padding: 3rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat:last-child {
  border-right: none
}

.stat:hover {
  background: var(--bg2)
}

.stat-svc {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.25rem
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem
}

.stat-num .a {
  color: var(--lime)
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300
}

.qual {
  padding: 5rem 3rem;
}

.qual-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qual-r {
  display: flex;
  justify-content: center;
}

.qual-big {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem
}

.qual-big .lime {
  color: var(--lime)
}

.qual-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px
}

.qual-stmt {
  font-size: 1rem;
  font-style: italic;
  color: rgba(200, 241, 53, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem
}

.ind-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem
}

.ind-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  max-width: 800px;
  justify-content: center;
}

.ind-pill {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: 2rem;
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
}

.ind-pill:hover {
  border-color: var(--lime);
  color: var(--lime)
}

.wwa {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5rem 3rem;
  margin-top: 20px;
}

.wwa-l {
  width: 30%;
}

.wwa-r {
  background: #100f0f;
  border-radius: 10px 10px 0 0;
  padding: 35px;
  width: 65%;
}

.wwa .lime {
  color: var(--lime);
}

.wwa-hl {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem
}

.wwa-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 340px
}

.pillar {
  margin-bottom: 25px;
}

.pillar-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  justify-content: space-between;
}

.p-num {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--lime)
}

.p-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.p-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.logos-sec {
  padding: 4rem 3rem;
}

.logos-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  margin-bottom: 2rem
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  background: #191818;
  border: 1px solid #3f3e3e;
  border-radius: 19px;
  padding: 25px;
  width: 170px;
  height: 150px;
}


.logo-item:hover {
  background: var(--bg2)
}

.logo-name {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(242, 240, 235, 0.25);
  text-align: center;
  letter-spacing: -0.01em;
  transition: color 0.2s
}

.logo-item:hover .logo-name {
  color: rgba(242, 240, 235, 0.6)
}

.logo-type {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center
}

.logos-disc {
  font-size: 0.7rem;
  color: var(--faint);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic
}

.cta-sec {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 35vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 235, 0.02);
  pointer-events: none;
  letter-spacing: -0.03em;
  white-space: nowrap
}

.cta-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem;
  position: relative
}

.cta-hl {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cta-hl .lime {
  color: var(--lime)
}

.cta-hl .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 240, 235, 0.2)
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 515px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative
}

img.cta1 {
  position: absolute;
  left: 3rem;
  top: 8rem;
}

img.cta2 {
  position: absolute;
  right: 3rem;
  bottom: 8rem;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border-mid);
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
  cursor: pointer;
  background: none
}

.btn-outline:hover {
  color: var(--white);
  border-color: rgba(242, 240, 235, 0.25)
}

.cta-note {
  font-size: 0.72rem;
  color: var(--faint);
  margin-top: 1.5rem;
  font-style: italic;
  position: relative
}

footer {
  /* padding: 2.5rem 3rem; */
  width: 100%;

}

.f-top .f-logo {
  font-weight: 700;
  font-size: 44px;
  width: 50%;
  text-align: center;
}


.f-logo span {
  color: var(--lime)
}

.f-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 0;
}

.f-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer
}

.f-links a:hover {
  color: var(--white)
}

.f-copy {
  font-size: 0.7rem;
  color: var(--faint)
}

.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
}

.f-bottom {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-bottom .f-socials {
  display: flex;
  gap: 30px;
}

.f-bottom .f-socials a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

.f-bottom .f-socials a:hover {
  color: #ffffff;
}

.f-top .email-us h3 {
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  margin: 0;
}

.f-top .email-us p {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #c8f135;
}

.f-top .email-us {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}

.pg-hero {
  padding: 8rem 3rem 5rem;
  border-bottom: 1px solid var(--border)
}

.pg-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem
}

.pg-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em
}

.pg-title .lime {
  color: var(--lime)
}

.pg-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
  margin-top: 2rem
}

.svc-sec {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem;
}

.svc-l {
  position: sticky;
  top: 5rem;
  height: fit-content
}

.svc-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
  font-weight: 700
}

.svc-big {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem
}

.svc-tl {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2rem
}

.svc-sec .lime {
  color: var(--lime);
}

.svc-intro {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #d4ff24;
  border: 1px solid #27272a;
  border-radius: 7px;
  padding: 25px;
}

.deliv {
  background: #1a1a1a;
  border: 1px solid #27272a;
  border-radius: 7px;
  padding: 25px;
  margin-bottom: 20px;
}

.del-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem
}

.del-num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--lime)
}

.del-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white)
}

.del-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 2.25rem
}

.plats {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border)
}

.plats-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.75rem
}

.plats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem
}

.plat {
  font-size: 0.72rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-mid);
  border-radius: 2rem;
  color: var(--white)
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-top: 1.5rem
}

.price-note {
  font-size: 0.82rem;
  color: #ffffff;
  margin-top: 1.5rem;
  border: 1px solid #27272a;
  border-radius: 7px;
  padding: 8px 16px;
  width: max-content;
  margin-bottom: 30px;
}

.about-hero {
  padding: 8rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hl {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 2rem
}

.about-hl .lime {
  color: var(--lime)
}

.story p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem
}

.vals {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

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

.val {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border)
}

.val:last-child {
  border-right: none
}

.val-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 1rem
}

.val-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem
}

.val-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8
}

.mission {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center
}

.mission .lime {
  color: var(--lime);
}

.mission-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem
}

.mission-big {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em
}

.mission-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9
}

.work-hero {
  padding: 8rem 3rem 5rem;
  border-bottom: 1px solid var(--border)
}

.cases {
  display: flex;
  flex-direction: column
}

.case {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem;
}

.case-l {
  position: sticky;
  top: 5rem;
  height: fit-content;
  padding-right: 5rem;
}

.case-r {
  padding-left: 3rem;
}

.case .case-l svg {
  position: absolute;
  right: 0;
  bottom: -74px;
}

.case-num {
  font-size: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  line-height: 50px;
}

.case-num span {
  font-size: 64px;
}

.case-client {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem
}

.case-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-mid);
  border-radius: 2rem;
  color: var(--muted)
}

.case-brief-lbl {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem
}

.case-brief {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}

.case-section-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.case-section {
  margin-bottom: 2.5rem;
  border: 1px solid #353535;
  border-radius: 7px;
  padding: 25px;
  background: #131313;
  width: 48%;
}

.case-section-app {
  border: 1px solid #27272a;
  border-radius: 7px;
  padding: 25px;
  margin-bottom: 2.5rem;
}

.case-section-app .case-section-title {
  color: var(--white);
  font-weight: 500;
  font-size: 24px;
}

.case-section-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase
}

.case-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--lime);
  line-height: 1.9
}

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 0
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.result-item:first-child {
  border-top: 1px solid var(--border)
}

.result-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
  min-width: 80px;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px #404040 solid;
  border-radius: 7px;
  text-align: center;
  padding: 2px 10px;
}

.result-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  padding-top: 4px
}

.key-win {
  background: rgba(200, 243, 12, 0.1);
  border: 1px solid rgba(200, 243, 12, 0.3);
  border-radius: 7px;
  padding: 25px;
  margin-top: 2rem
}

.key-win-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem
}

.key-win-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  font-style: italic
}

.contact-wrap {
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.contact-l {
  position: absolute;
  left: 3rem;
  top: 5rem;
}

.contact-r {
  width: 50%;

}

.contact-big {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem
}

.contact-big .lime {
  color: var(--lime)
}

.contact-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 340px
}

.c-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border)
}

.c-method:first-child {
  border-top: 1px solid var(--border)
}

.cm-num {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px
}

.cm-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem
}

.cm-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.cm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--lime);
  padding: 0.5rem 1.25rem;
  border-radius: 0.2rem;
  text-decoration: none;
  cursor: pointer;
  border: none
}

.f-group {
  margin-bottom: 1.25rem
}

.f-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.5rem;
  display: block
}

.f-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-mid);
  border-radius: 0.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  font-family: var(--body);
  transition: border-color 0.2s;
  outline: none;
}

.f-input:focus {
  border-color: var(--lime)
}

.f-select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-mid);
  border-radius: 0.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  font-family: var(--body);
  outline: none;
  cursor: pointer;
  appearance: none
}

.f-textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-mid);
  border-radius: 0.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  font-family: var(--body);
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.2s
}

.f-textarea:focus {
  border-color: var(--lime)
}

.f-submit {
  width: 100%;
  background: var(--lime);
  color: var(--bg);
  border: none;
  padding: 1rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-top: 0.5rem
}

.f-submit:hover {
  opacity: 0.85
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:1024px) {
  .svcs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: space-around;
    padding: 0 2rem;
  }

  .logos-grid {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }

  section.cta-sec {
    display: flex;
    flex-direction: column;
    padding-bottom: 0rem;
  }

  img.cta1,
  img.cta2 {
    position: static;
    height: 500px !important;
    object-fit: cover;
    object-position: top;
  }

  img.img-fluid.cta2 {
    order: 0;
    margin-top: 30px;
  }

  cta-hl br {
    display: none;
  }

  .cta-lbl {
    margin-top: 1.5rem;
  }

  .cta-hl {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .cta-btns {
    margin-bottom: 30px;
  }

  .hero,
  .pg-hero,
  .logos-sec,
  .cta-sec,
  .work-hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5rem;
  }

  .result-item {
    flex-direction: column;
  }

  .case-section {
    width: 100%;
  }

  .about-hero,
  .mission {
    gap: 0px;
  }
}

@media(max-width:900px) {
  html {
    overflow-x: hidden;
  }

  nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);

    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-cta {
    display: block;
  }

  .nav-pill.hidden {
    display: none;
  }

  /* show Lets Talk button in mobile menu */
  .nav-pill {
    display: inline-block;
    margin-top: 1rem;
    width: fit-content;
  }



  .hero-hl {
    font-size: clamp(3rem, 14vw, 6rem)
  }

  .hero-bot {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }



  .svc:nth-child(2n) {
    border-right: none
  }

  .stats-grid {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .stat:nth-child(2n) {
    border-right: none
  }

  .qual,
  .wwa,
  .svc-sec,
  .about-hero,
  .mission,
  .contact-wrap,
  .case {
    grid-template-columns: 1fr
  }

  .qual-l,
  .wwa-l,
  .svc-l,
  .case-l,
  .contact-l,
  .qual-r,
  .wwa-r,
  .svc-r,
  .case-r,
  .contact-r,
  .mission-r {
    border-right: none;
    padding: 3rem 1.5rem
  }


  .logos-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .logo-item:nth-child(4n) {
    border-right: none
  }

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

  .val {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center
  }

  .sec-header {
    flex-direction: column;
    align-items: center;
  }

  .svc-l {
    position: static;
    display: flex;
    flex-direction: column;
  }

  .case-l {
    position: static
  }

  img,
  svg {
    vertical-align: middle;
    order: -1;
    margin-bottom: 30px;
  }

  .svc-n {
    font-size: 2rem;
  }

  .hero-ctas a {
    min-width: fit-content;
  }
}

@media(max-width:768px) {

  .qual-l,
  .wwa-l,
  .svc-l,
  .case-l,
  .contact-l,
  .qual-r,
  .wwa-r,
  .svc-r,
  .case-r,
  .contact-r,
  .mission-r {
    border-right: none;
    padding: 3rem 0rem
  }

  .f-bottom,
  .f-top {
    flex-direction: column;
    gap: 1rem;
  }

  .svc {
    width: 100%;
  }

  .f-top .f-logo,
  .f-top .email-us {
    width: 100%;
  }

  .hero-ctas a {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .stat {
    border: none;
    border-bottom: 1px solid var(--border) !important;
    width: 90% !important;
  }

  .wwa {
    flex-direction: column;
    gap: 30px;
  }

  .pillar {
    padding: 3rem 1.5rem;
    background: #100f0f;
    border-radius: 20px;
  }

  .wwa-r {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .wwa-l,
  .wwa-r,
  .wwa-sub {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .qual {
    padding-top: 0rem;
  }

  .wwa-hl br {
    display: none;

  }

  img.cta1,
  img.cta2 {
    height: 300px !important;
  }

  .f-bottom .f-socials {
    flex-wrap: wrap;
  }

  .qual,
  .wwa,
  .svc-sec,
  .about-hero,
  .mission,
  .contact-wrap,
  .case,
  .svc-sec {
    padding: 5rem 2rem;
  }

  .f-top {
    padding: 2rem;
  }

  h1.about-hl {
    font-size: 40px;
  }

  .contact-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }

  .contact-l {
    position: static;
    padding: 0px !important;
  }

  .contact-r {
    width: 100%;
  }
}

@media(max-width:480px) {

  .hero-ctas,
  cta-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .cta-btns a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  h2.wwa-hl {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }

  .qual-l,
  .wwa-l,
  .svc-l,
  .case-l,
  .contact-l {
    padding: 3rem 0px;
  }

  .logo-item {
    width: 100%;
  }

  .f-top .f-logo {
    font-size: 36px;
  }

  .case .case-l svg {
    position: absolute;
    right: 10px;
    bottom: 160px;
  }

  .cta-hl {
    gap: 15px;
  }

  .f-top {
    padding: 2rem 0px;
  }
}

/* Utility classes abstracted from inline styles */
.sec-border {
  border-bottom: 1px solid var(--border);
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.inline-flex {
  display: inline-flex;
}