:root {
  color-scheme: dark;
  --ink: #06110f;
  --deep: #081512;
  --panel: #0d1b17;
  --panel-2: #10211d;
  --lime-rgb: 136, 255, 42;
  --mint-rgb: 139, 255, 54;
  --cyan-rgb: 104, 232, 255;
  --line: rgba(var(--lime-rgb), 0.15);
  --line-strong: rgba(var(--lime-rgb), 0.42);
  --text: #effff6;
  --muted: #a7bcb1;
  --acid: #88FF2A;
  --mint: #8bff36;
  --cyan: #68e8ff;
  --ember: #ffcf6a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --bg-green-polygon: url("../img/bg-green-polygon.webp");
  --bg-green-blur-right: url("../img/bg-green-blur-right.webp");
  --bg-green-blur-left: url("../img/bg-green-blur-left.webp");
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #06110f 0%, #081512 38%, #07110f 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}
h1, h2 {
	text-transform: capitalize;
}
::selection {
  background: var(--acid);
  color: #08110f;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 6px
  );
  mix-blend-mode: overlay;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--mint), var(--cyan));
  box-shadow: 0 0 24px rgba(var(--lime-rgb), 0.65);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(6, 17, 15, 0.76);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(var(--lime-rgb), 0.28);
  background: rgba(6, 17, 15, 0.9);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(var(--lime-rgb), 0.24);
  border-radius: 8px;
  background: #07110f;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.primary-button,
.secondary-button,
.menu-toggle,
.scope-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta,
.primary-button {
  border: 1px solid rgba(var(--lime-rgb), 0.52);
  background: linear-gradient(135deg, var(--acid), var(--mint));
  color: #07110f !important;
  box-shadow: 0 16px 46px rgba(var(--lime-rgb), 0.16);
}

.nav-cta {
  padding: 0 18px;
}

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

.primary-button {
  padding: 0 20px;
}

.secondary-button {
  padding: 0 20px;
}

.primary-button:hover,
.secondary-button:hover,
.nav-cta:hover,
.scope-option:hover {
  transform: translateY(-2px);
}

.primary-button svg,
.secondary-button svg,
.nav-cta svg,
.menu-toggle svg,
.scope-option svg,
.service-card svg,
.approach-list svg,
.work-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
  width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-section {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  padding: clamp(140px, 16vh, 180px) 24px 68px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(6, 17, 15, 0.88), rgba(6, 17, 15, 0.48) 48%, rgba(6, 17, 15, 0.8)),
    linear-gradient(180deg, rgba(6, 17, 15, 0.28), rgba(6, 17, 15, 0.94)),
    var(--bg-green-blur-right) center / cover no-repeat;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--lime-rgb), 0.075) 1px, transparent 1px),
    linear-gradient(rgba(var(--lime-rgb), 0.055) 1px, transparent 1px),
    linear-gradient(160deg, rgba(var(--lime-rgb), 0.08), transparent 22%, rgba(6, 17, 15, 0.88) 76%),
    linear-gradient(180deg, rgba(6, 17, 15, 0.12), rgba(6, 17, 15, 0.88));
  background-size: 88px 88px, 88px 88px, auto;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.hero-shell {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--acid) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-title {
  max-width: 1050px;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.4rem, 11vw, 9.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

.rotator-wrap {
  display: inline-block;
  color: var(--acid);
  text-shadow: 0 0 30px rgba(var(--lime-rgb), 0.32);
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: #cfe0d6;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-console {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, calc(100% - 48px));
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-console > div {
  min-height: 112px;
  padding: 24px;
  background: rgba(8, 21, 18, 0.78);
}

.metric-value {
  display: block;
  color: var(--acid);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee-band {
  position: relative;
  z-index: 5;
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #091613;
}

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

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  padding: 0 30px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  width: 8px;
  height: 8px;
  margin-left: 30px;
  content: "";
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(var(--lime-rgb), 0.8);
}

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

.section {
  position: relative;
  z-index: 5;
  isolation: isolate;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 130px) 0;
}

.section::before,
.section::after {
  position: absolute;
  left: 50%;
  width: 100vw;
  pointer-events: none;
  content: "";
  transform: translateX(-50%);
}

.section::before {
  inset-block: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.92), rgba(8, 21, 18, 0.96));
}

.section::after {
  inset-block: 0;
  z-index: -1;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.section-cluster {
  position: relative;
  z-index: 5;
  isolation: isolate;
  overflow: hidden;
}

.section-cluster::before,
.section-cluster::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.section-cluster::before {
  z-index: -2;
}

.section-cluster::after {
  z-index: -1;
  opacity: 0.48;
  mix-blend-mode: screen;
}

.section-cluster > .section {
  z-index: 2;
}

.section-cluster > .section + .section {
  padding-top: clamp(44px, 7vw, 84px);
}

.section-cluster > .section::before,
.section-cluster > .section::after {
  display: none;
}

.momentum-work-cluster::before {
  background:
    linear-gradient(112deg, rgba(6, 17, 15, 0.93) 0%, rgba(6, 17, 15, 0.52) 34%, rgba(6, 17, 15, 0.9) 72%),
    conic-gradient(from 225deg at 15% 18%, rgba(var(--lime-rgb), 0.25), rgba(8, 58, 21, 0.34), rgba(2, 8, 7, 0.96), rgba(18, 126, 37, 0.28), rgba(var(--lime-rgb), 0.16)),
    conic-gradient(from 35deg at 84% 62%, rgba(2, 8, 7, 0.95), rgba(0, 94, 31, 0.34), rgba(6, 17, 15, 0.92), rgba(var(--mint-rgb), 0.14), rgba(1, 7, 6, 0.98)),
    linear-gradient(180deg, #06110f 0%, #102018 48%, #06110f 100%);
}

.momentum-work-cluster::after {
  background:
    repeating-linear-gradient(135deg, rgba(var(--lime-rgb), 0.055) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, transparent 0 14%, rgba(var(--lime-rgb), 0.1) 14% 14.2%, transparent 14.2% 82%, rgba(var(--cyan-rgb), 0.08) 82% 82.18%, transparent 82.18%);
}

.packages-testimonials-cluster::before {
  background:
    linear-gradient(72deg, rgba(6, 17, 15, 0.94) 0%, rgba(6, 17, 15, 0.6) 42%, rgba(4, 12, 10, 0.94) 100%),
    conic-gradient(from 160deg at 74% 18%, rgba(var(--lime-rgb), 0.22), rgba(20, 116, 34, 0.26), rgba(2, 8, 7, 0.98), rgba(0, 78, 28, 0.22), rgba(var(--mint-rgb), 0.18)),
    conic-gradient(from 320deg at 20% 78%, rgba(1, 7, 6, 0.98), rgba(0, 104, 32, 0.26), rgba(7, 24, 15, 0.9), rgba(var(--lime-rgb), 0.13), rgba(1, 7, 6, 0.98)),
    linear-gradient(180deg, #0b1713 0%, #06110f 100%);
}

.packages-testimonials-cluster::after {
  opacity: 0.38;
  background:
    repeating-linear-gradient(90deg, rgba(var(--lime-rgb), 0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, transparent 0 46%, rgba(var(--lime-rgb), 0.09) 46% 46.24%, transparent 46.24%);
}

.about-section::before {
  background:
    linear-gradient(90deg, rgba(6, 17, 15, 0.9), rgba(6, 17, 15, 0.58) 48%, rgba(6, 17, 15, 0.86)),
    linear-gradient(120deg, rgba(var(--lime-rgb), 0.075), transparent 22%),
    repeating-linear-gradient(135deg, rgba(var(--lime-rgb), 0.045) 0 1px, transparent 1px 30px),
    var(--bg-green-blur-left) center / cover no-repeat,
    linear-gradient(180deg, #07110f 0%, #0a1713 100%);
}

.about-section::after {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(var(--cyan-rgb), 0.08) 58% 58.35%, transparent 58.35%),
    linear-gradient(90deg, transparent 0 68%, rgba(var(--lime-rgb), 0.06) 68% 68.25%, transparent 68.25%);
}

.services-section::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.78), rgba(6, 17, 15, 0.94)),
    repeating-linear-gradient(90deg, rgba(var(--lime-rgb), 0.035) 0 1px, transparent 1px 112px),
    linear-gradient(135deg, rgba(var(--lime-rgb), 0.11), transparent 28%),
    var(--bg-green-polygon) center / cover no-repeat,
    linear-gradient(180deg, #0b1512 0%, #07110f 100%);
}

.services-section::after {
  opacity: 0.48;
  background:
    linear-gradient(155deg, transparent 0 16%, rgba(var(--lime-rgb), 0.09) 16% 16.5%, transparent 16.5% 62%, rgba(var(--cyan-rgb), 0.06) 62% 62.35%, transparent 62.35%);
}

.approach-section::before {
  background:
    linear-gradient(90deg, rgba(6, 17, 15, 0.72), rgba(6, 17, 15, 0.94)),
    linear-gradient(90deg, rgba(var(--lime-rgb), 0.09), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px),
    var(--bg-green-blur-right) center / cover no-repeat,
    linear-gradient(180deg, #06110f 0%, #0d1d18 58%, #081512 100%);
}

.work-section::before {
  background:
    linear-gradient(120deg, rgba(6, 17, 15, 0.8), rgba(6, 17, 15, 0.66) 45%, rgba(6, 17, 15, 0.92)),
    linear-gradient(120deg, rgba(var(--cyan-rgb), 0.08), transparent 26%),
    linear-gradient(300deg, rgba(var(--lime-rgb), 0.1), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 18px),
    var(--bg-green-blur-left) center / cover no-repeat,
    linear-gradient(180deg, #0b1515 0%, #07110f 100%);
}

.work-section::after {
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(var(--lime-rgb), 0.13) 11% 11.2%, transparent 11.2% 89%, rgba(var(--cyan-rgb), 0.1) 89% 89.18%, transparent 89.18%);
}

.process-section::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.9), rgba(6, 17, 15, 0.72) 48%, rgba(6, 17, 15, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 138px, rgba(var(--lime-rgb), 0.05) 138px 139px),
    var(--bg-green-polygon) center 42% / cover no-repeat,
    linear-gradient(180deg, #07110f 0%, #102019 50%, #07110f 100%);
}

.process-section::after {
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(var(--lime-rgb), 0.1) 50% 50.3%, transparent 50.3%),
    linear-gradient(180deg, transparent 0 24%, rgba(var(--cyan-rgb), 0.06) 24% 24.25%, transparent 24.25% 74%, rgba(var(--lime-rgb), 0.07) 74% 74.2%, transparent 74.2%);
}

.packages-section::before {
  background:
    linear-gradient(90deg, rgba(6, 17, 15, 0.9), rgba(6, 17, 15, 0.56) 55%, rgba(6, 17, 15, 0.82)),
    linear-gradient(145deg, rgba(var(--lime-rgb), 0.13), transparent 24%),
    linear-gradient(40deg, transparent 0 44%, rgba(var(--cyan-rgb), 0.06) 44% 44.45%, transparent 44.45%),
    var(--bg-green-blur-right) center / cover no-repeat,
    linear-gradient(180deg, #0e1a14 0%, #07110f 100%);
}

.testimonials-section::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 15, 0.83), rgba(6, 17, 15, 0.96)),
    repeating-linear-gradient(-45deg, rgba(var(--lime-rgb), 0.035) 0 1px, transparent 1px 24px),
    var(--bg-green-blur-left) center / cover no-repeat,
    linear-gradient(180deg, #07110f 0%, #0d1714 100%);
}

.owner-section::before {
  background:
    linear-gradient(115deg, rgba(6, 17, 15, 0.84), rgba(6, 17, 15, 0.58) 42%, rgba(6, 17, 15, 0.9)),
    linear-gradient(115deg, rgba(var(--cyan-rgb), 0.09), transparent 31%),
    linear-gradient(245deg, rgba(var(--lime-rgb), 0.08), transparent 25%),
    var(--bg-green-polygon) center / cover no-repeat,
    linear-gradient(180deg, #081512 0%, #06110f 100%);
}

.contact-section::before {
  background:
    linear-gradient(90deg, rgba(6, 17, 15, 0.78), rgba(6, 17, 15, 0.9)),
    repeating-linear-gradient(90deg, rgba(var(--lime-rgb), 0.04) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, rgba(var(--lime-rgb), 0.12), transparent 28%),
    var(--bg-green-blur-right) center / cover no-repeat,
    linear-gradient(180deg, #0b1713 0%, #06110f 100%);
}

.section-heading,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.section-title {
  max-width: 860px;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 4vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.section-lede,
.stacked-copy,
.contact-copy p,
.owner-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.stacked-copy {
  display: grid;
  gap: 18px;
}

.stacked-copy p,
.contact-copy p,
.owner-copy p {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.service-card,
.work-card,
.pricing-card,
.testimonial-card,
.package-lab,
.owner-panel,
.contact-form,
.approach-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 27, 23, 0.78);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
     min-height: 240px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before,
.work-card::before,
.pricing-card::before,
.testimonial-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--lime-rgb), 0.16), transparent 40%, rgba(var(--cyan-rgb), 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before,
.work-card:hover::before,
.pricing-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.service-card-body {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.service-card-body svg {
  color: var(--acid);
}
.upwork-card {
	margin-top: auto;
}
.service-card h3,
.work-card h3,
.pricing-card h3,
.process-step h3,
.testimonial-card figcaption,
.package-output h3,
.upwork-card h3 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.service-card p,
.work-card p,
.pricing-card p,
.process-step p,
.testimonial-card blockquote,
.package-output p,
.upwork-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.approach-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(var(--lime-rgb), 0.09), transparent 46%),
    rgba(13, 27, 23, 0.9);
}

.approach-panel .section-title {
  font-size: clamp(2.05rem, 4.8vw, 4.5rem);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.approach-list div {
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 22px;
  background: rgba(6, 17, 15, 0.82);
}

.approach-list svg {
  color: var(--acid);
}

.approach-list strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.approach-list span {
  color: var(--muted);
  line-height: 1.55;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.work-grid-2 {
	  grid-template-columns: 1fr;
}
.work-grid-2 .work-card {
	 display: flex !important;
}
.work-grid-2 .work-card img {
	 max-width: 50%;
	     object-position: left center;
}
.work-card {
  position: relative;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  transform: translate(0%, 0) !important;
}

.work-card > div {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.work-card span,
.pricing-card span,
.package-output span,
.package-meta span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--text);
  font-weight: 800;
}

.work-card a span {
  color: inherit;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 1px;
  margin-top: 46px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  scrollbar-width: thin;
}

.process-step {
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 24px;
  background: rgba(13, 27, 23, 0.88);
}

.process-step span {
  color: rgba(var(--lime-rgb), 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.9;
}

.package-lab {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  background: var(--line);
}

.scope-controls {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.scope-option {
  justify-content: flex-start;
  width: 100%;
  min-height: 76px;
  padding: 0 22px;
  border-radius: 0;
  background: rgba(8, 21, 18, 0.94);
  color: var(--muted);
}

.scope-option.active {
  background: linear-gradient(135deg, rgba(var(--lime-rgb), 0.18), rgba(var(--mint-rgb), 0.08));
  color: var(--text);
}

.scope-option.active svg {
  color: var(--acid);
}

.package-output {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(8, 21, 18, 0.9);
}

.package-output h3 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.package-meta div {
  display: grid;
  gap: 10px;
  min-height: 106px;
  padding: 20px;
  background: rgba(6, 17, 15, 0.86);
}

.package-meta strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.15rem);
}

.package-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-includes li {
  position: relative;
  min-height: 44px;
  padding: 12px 12px 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #d8e8df;
  background: rgba(255, 255, 255, 0.03);
}

.package-includes li::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(var(--lime-rgb), 0.85);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 390px;
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(var(--lime-rgb), 0.5);
  background:
    linear-gradient(135deg, rgba(var(--lime-rgb), 0.12), transparent 44%),
    rgba(13, 27, 23, 0.9);
}

.pricing-card strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.contact-form .primary-button span,
.pricing-card .primary-button span {
	color: #000 !important;
}
.pricing-card .primary-button,
.pricing-card .secondary-button {
  align-self: end;
  margin-top: auto;
}

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

.testimonial-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 260px;
  margin: 0;
  padding: 24px;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.testimonial-card figcaption {
  align-self: end;
  color: var(--acid);
  font-size: 0.95rem;
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(104, 232, 255, 0.08), transparent 42%),
    rgba(13, 27, 23, 0.86);
}

.owner-copy .section-title {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4vw, 5rem);
}

.upwork-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 17, 15, 0.78);
}

.upwork-card img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
}

.upwork-card .primary-button {
  width: fit-content;
  margin-top: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 124px;
}

.contact-copy .section-title {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.full,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  outline: none;
  background: rgba(6, 17, 15, 0.78);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--lime-rgb), 0.64);
  box-shadow: 0 0 0 4px rgba(var(--lime-rgb), 0.08);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--acid);
  font-size: 0.92rem;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  will-change: transform, opacity;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 17, 15, 0.96);
  }

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

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .section-heading,
  .split-layout,
  .approach-panel,
  .contact-section,
  .owner-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

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

  .scope-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scope-option {
    justify-content: center;
  }

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

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 8px;
  }

  .brand-lockup span {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    min-height: 92svh;
    padding: 124px 16px 50px;
  }

  .hero-title {
    font-size: clamp(3rem, 17vw, 5.8rem);
  }

  .hero-console,
  .package-meta,
  .package-includes,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-console {
    width: calc(100% - 32px);
    margin-top: 44px;
  }

  .service-grid,
  .work-grid,
  .pricing-grid,
  .testimonial-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

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

  .scope-option {
    justify-content: flex-start;
  }

  .section {
    width: calc(100% - 28px);
  }

  .owner-panel,
  .approach-panel {
    padding: 22px;
  }

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

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

  .hero-canvas {
    opacity: 0.38;
  }
}
