:root {
  --carbon: #0a0a0a;
  --green: #00594f;
  --green-2: #007765;
  --lime: #a8ff60;
  --silver: #d9d9d9;
  --white: #f4f6f2;
  --muted: #9da6a0;
  --gold: #c9a86a;
  --panel: rgba(244, 246, 242, 0.07);
  --panel-strong: rgba(244, 246, 242, 0.12);
  --line: rgba(244, 246, 242, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 72% 4%,
      rgba(168, 255, 96, 0.13),
      transparent 30rem
    ),
    radial-gradient(
      circle at 12% 28%,
      rgba(0, 89, 79, 0.42),
      transparent 34rem
    ),
    linear-gradient(180deg, #090b0a 0%, var(--carbon) 36%, #0d1110 100%);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 246, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 242, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    transparent 80%
  );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 80%);
  z-index: -1;
}

body::after {
  display: none;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(244, 246, 242, 0.12);
  background: rgba(10, 10, 10, 0.38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    margin-top 240ms ease;
}

.site-header.is-scrolled {
  margin-top: 8px;
  border-color: rgba(168, 255, 96, 0.2);
  background: rgba(10, 10, 10, 0.84);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
}

.wordmark-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(244, 246, 242, 0.76);
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(244, 246, 242, 0.14);
  background: rgba(244, 246, 242, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle span + span {
  margin-top: 4px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  padding: 11px 16px;
  background: rgba(168, 255, 96, 0.95);
  color: #08100c;
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 34px;
  min-height: 100vh;
  padding: 120px 0 78px;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 4;
  max-width: 640px;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.hero.is-settled .hero-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero.is-settled .hero-actions .btn-primary:not(:hover):not(:focus-visible) {
  animation: ctaWiggle 6400ms ease-in-out 1200ms infinite;
}

.hero:not(.is-settled) .hero-copy.reveal.is-visible {
  opacity: 0;
  transform: translateY(24px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 5.8vw, 5.75rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4.9rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 580px;
  color: rgba(244, 246, 242, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn-primary {
  background: var(--lime);
  color: #08100c;
}

.btn-secondary {
  border-color: rgba(244, 246, 242, 0.22);
  background: rgba(244, 246, 242, 0.06);
  color: var(--white);
}

.trust-line {
  max-width: 500px;
  color: rgba(217, 217, 217, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-system {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
  width: min(100%, 1120px);
  min-height: 560px;
  margin: 0 auto;
  perspective: 1400px;
  pointer-events: auto;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translateY(18px) scale(1);
  transform-origin: 58% 50%;
  will-change: transform, opacity;
  transition:
    opacity 1200ms var(--ease),
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-settled .hero-system {
  transform: translateX(clamp(150px, 18vw, 260px)) translateY(0) scale(0.78);
}

.hero-system::after {
  display: none;
}

.hero-system:not(.is-motion-ready) .legacy-tags,
.hero-system:not(.is-motion-ready) .old-site,
.hero-system:not(.is-motion-ready) .new-site,
.hero-system:not(.is-motion-ready) .system-node,
.hero-system:not(.is-motion-ready) .sparkline span {
  animation-play-state: paused;
}

.hero-system.is-tap-active .interface-stage {
  border-color: rgba(168, 255, 96, 0.34);
  box-shadow:
    var(--shadow),
    0 0 48px rgba(168, 255, 96, 0.16);
}

.hero-system.is-tap-active .system-node span {
  box-shadow:
    0 0 16px rgba(168, 255, 96, 0.7),
    0 0 30px rgba(168, 255, 96, 0.58);
  transform: scale(1.35);
}

.system-orbit {
  position: absolute;
  inset: -3% 8% 1% 8%;
  border: 1px solid rgba(168, 255, 96, 0.1);
  transform: rotate(-3deg);
}

.system-orbit::before,
.system-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 246, 242, 0.08);
}

.legacy-tags {
  position: absolute;
  top: 56px;
  left: 52px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: diagnoseOut 5.2s var(--ease) both;
}

.legacy-tags span {
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(217, 217, 217, 0.12);
  background: rgba(10, 10, 10, 0.68);
  color: rgba(217, 217, 217, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.interface-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vw, 820px);
  min-height: 390px;
  border: 1px solid rgba(244, 246, 242, 0.13);
  background:
    linear-gradient(
      145deg,
      rgba(244, 246, 242, 0.12),
      rgba(244, 246, 242, 0.03)
    ),
    rgba(10, 10, 10, 0.76);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotateX(3deg) rotateY(-6deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(244, 246, 242, 0.11);
  color: rgba(244, 246, 242, 0.48);
  font-size: 0.76rem;
}

.browser-chrome span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(244, 246, 242, 0.2);
  border-radius: 50%;
}

.browser-chrome strong {
  margin-left: auto;
  font-weight: 500;
}

.mock-site {
  position: absolute;
  inset: 62px 22px 22px;
}

.old-site {
  z-index: 1;
  opacity: 0;
  animation: oldSite 5.2s var(--ease) both;
}

.old-bar,
.old-hero,
.old-row span {
  background: rgba(217, 217, 217, 0.14);
}

.old-bar {
  height: 28px;
  margin-bottom: 24px;
}

.old-hero {
  height: 138px;
  margin-bottom: 22px;
}

.old-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.old-row span {
  height: 88px;
}

.new-site {
  z-index: 2;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  animation: newSite 5.2s var(--ease) 1.15s both;
}

.site-topline,
.site-grid,
.sparkline {
  display: grid;
}

.site-topline {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(244, 246, 242, 0.7);
  font-size: 0.78rem;
}

.site-topline strong {
  color: var(--lime);
}

.site-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(168, 255, 96, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 89, 79, 0.88), rgba(15, 31, 27, 0.92)),
    var(--green);
}

.site-hero-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(168, 255, 96, 0.35);
  border-radius: 50%;
}

.site-hero-card p {
  margin-bottom: 6px;
  color: rgba(244, 246, 242, 0.68);
  font-size: 0.8rem;
}

.site-hero-card h2 {
  max-width: 280px;
  margin-bottom: 20px;
  font-size: 2.05rem;
}

.site-hero-card button {
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  border: 0;
  background: var(--lime);
  color: #08100c;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.site-grid article {
  padding: 16px;
  border: 1px solid rgba(244, 246, 242, 0.1);
  background: rgba(244, 246, 242, 0.06);
}

.site-grid small {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 246, 242, 0.5);
}

.site-grid strong {
  color: var(--white);
  font-size: 1.2rem;
}

.sparkline {
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 54px;
  margin-top: 14px;
}

.sparkline span {
  display: block;
  background: linear-gradient(180deg, var(--lime), rgba(168, 255, 96, 0.1));
  animation: spark 2.4s ease-in-out infinite;
}

.sparkline span:nth-child(1) {
  height: 28%;
  animation-delay: 0s;
}
.sparkline span:nth-child(2) {
  height: 54%;
  animation-delay: 0.15s;
}
.sparkline span:nth-child(3) {
  height: 38%;
  animation-delay: 0.3s;
}
.sparkline span:nth-child(4) {
  height: 76%;
  animation-delay: 0.45s;
}
.sparkline span:nth-child(5) {
  height: 92%;
  animation-delay: 0.6s;
}

.system-node {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(168, 255, 96, 0.25);
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  color: rgba(244, 246, 242, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  animation:
    nodeIn 900ms var(--ease) forwards,
    nodeFloat 4s ease-in-out infinite;
}

.system-node::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 255, 96, 0.42), transparent);
  transform-origin: left;
}

.system-node span {
  width: 8px;
  height: 8px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(168, 255, 96, 0.7);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.node-seo {
  top: 64px;
  right: 192px;
  animation-delay: 2.55s, 3.5s;
}
.node-seo::before {
  right: 100%;
  top: 50%;
  transform: rotate(172deg);
}
.node-bookings {
  top: 152px;
  right: 104px;
  animation-delay: 2.75s, 3.7s;
}
.node-bookings::before {
  right: 100%;
  top: 50%;
  transform: rotate(186deg);
}
.node-commerce {
  right: 152px;
  bottom: 70px;
  animation-delay: 2.95s, 3.9s;
}
.node-commerce::before {
  right: 100%;
  top: 50%;
  transform: rotate(204deg);
}
.node-enquiries {
  left: 146px;
  bottom: 82px;
  animation-delay: 3.15s, 4.1s;
}
.node-enquiries::before {
  left: 100%;
  top: 50%;
  transform: rotate(-18deg);
}
.node-analytics {
  left: 90px;
  top: 208px;
  animation-delay: 3.35s, 4.3s;
}
.node-analytics::before {
  left: 100%;
  top: 50%;
  transform: rotate(-8deg);
}
.node-care {
  left: 188px;
  top: 112px;
  animation-delay: 3.55s, 4.5s;
}
.node-care::before {
  left: 100%;
  top: 50%;
  transform: rotate(12deg);
}

.scroll-cue {
  position: static;
  grid-column: 1;
  margin-top: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 246, 242, 0.62);
  font-size: 0.85rem;
}

.scroll-cue span {
  width: 34px;
  height: 1px;
  background: var(--lime);
}

.problem,
.promise,
.services,
.work,
.process,
.about,
.contact {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.promise-panel p,
.about-copy p,
.contact-copy p {
  color: rgba(244, 246, 242, 0.72);
  font-size: 1.02rem;
  line-height: 1.72;
}

.diagnostics,
.service-grid,
.work-grid {
  display: grid;
  gap: 16px;
}

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

.diagnostic-card,
.service-card,
.work-card,
.process-step,
.about-stat,
.enquiry-form {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.diagnostic-card,
.service-card,
.process-step {
  padding: 28px;
}

.diagnostic-card {
  --depth-shift: 0px;
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  transform: translateY(var(--depth-shift));
}

.diagnostic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 24%, rgba(201, 168, 106, 0.08), transparent 68%);
  opacity: calc(0.12 + (var(--depth-progress, 0) * 0.28));
  pointer-events: none;
}

.diagnostic-card:hover,
.diagnostic-card:focus-within {
  border-color: rgba(201, 168, 106, 0.34);
  background: rgba(244, 246, 242, 0.09);
  transform: translateY(calc(var(--depth-shift) - 4px));
}

.diagnostic-card span,
.service-card span,
.process-step span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
}

.diagnostic-card p,
.service-card p,
.process-step p,
.work-content span {
  color: rgba(244, 246, 242, 0.66);
  line-height: 1.65;
}

.promise-panel {
  --promise-sweep: -120%;
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  padding: 46px;
  border: 1px solid rgba(168, 255, 96, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 89, 79, 0.58), rgba(244, 246, 242, 0.05)),
    rgba(244, 246, 242, 0.05);
}

.promise-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(168, 255, 96, 0.12) 46%,
    transparent 62%
  );
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(var(--promise-sweep));
  transition: transform 900ms var(--ease);
}

.promise-panel.is-active::after {
  transform: translateX(120%);
}

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

.service-card {
  overflow: hidden;
  min-height: 364px;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(168, 255, 96, 0.35);
  background: var(--panel-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-card:hover span,
.service-card:focus-within span {
  color: var(--lime);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(244, 246, 242, 0.78);
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover li::before,
.service-card:focus-within li::before {
  box-shadow: 0 0 14px rgba(168, 255, 96, 0.58);
  transform: scale(1.18);
}

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

.work-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.work-card:hover,
.work-card:focus-within {
  border-color: rgba(168, 255, 96, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.project-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  padding: 0;
  background:
    linear-gradient(
      135deg,
      rgba(244, 246, 242, 0.1),
      rgba(244, 246, 242, 0.02)
    ),
    #111514;
}

.project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition:
    transform 520ms var(--ease),
    filter 520ms ease;
}

.project-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 0%,
    rgba(168, 255, 96, 0.16) 46%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-115%);
  transition:
    opacity 220ms ease,
    transform 820ms var(--ease);
}

.work-card:hover .project-preview::after,
.work-card:focus-within .project-preview::after {
  opacity: 1;
  transform: translateX(115%);
}

.work-card:hover .project-preview img,
.work-card:focus-within .project-preview img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.preview-nav,
.preview-title,
.preview-columns span {
  transition:
    transform 320ms var(--ease),
    background 320ms ease;
}

.work-card:hover .preview-nav,
.work-card:hover .preview-title,
.work-card:hover .preview-columns span,
.work-card:focus-within .preview-nav,
.work-card:focus-within .preview-title,
.work-card:focus-within .preview-columns span {
  background: rgba(244, 246, 242, 0.22);
  transform: translateY(-3px);
}

.baynur-preview {
  background:
    linear-gradient(135deg, rgba(0, 89, 79, 0.58), rgba(244, 246, 242, 0.06)),
    #111514;
}

.lagc-preview {
  background:
    linear-gradient(
      135deg,
      rgba(201, 168, 106, 0.28),
      rgba(168, 255, 96, 0.08)
    ),
    #111514;
}

.preview-nav,
.preview-title,
.preview-columns span {
  display: block;
  background: rgba(244, 246, 242, 0.14);
}

.preview-nav {
  width: 46%;
  height: 22px;
  margin-bottom: 28px;
}

.preview-title {
  width: 72%;
  height: 78px;
  margin-bottom: 28px;
  background: rgba(244, 246, 242, 0.22);
}

.preview-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.preview-columns span {
  height: 86px;
}

.work-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-height: 226px;
  padding: 28px;
}

.work-content p {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-content h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.work-content a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 26px;
  color: var(--lime);
  font-weight: 800;
}

.process-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-path::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(168, 255, 96, 0.05));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-path.is-active::before {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  background: rgba(10, 10, 10, 0.58);
  transition:
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(168, 255, 96, 0.42);
  background: #111514;
  box-shadow: 0 0 0 rgba(168, 255, 96, 0);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease),
    box-shadow 360ms ease,
    background 360ms ease;
}

.process-path.is-active .process-step {
  border-color: rgba(168, 255, 96, 0.22);
  background: rgba(10, 10, 10, 0.68);
}

.process-path.is-active .process-step::before {
  opacity: 1;
  transform: scale(1);
  background: var(--lime);
  box-shadow: 0 0 24px rgba(168, 255, 96, 0.52);
}

.process-path.is-active .process-step:nth-child(1) {
  transition-delay: 80ms;
}

.process-path.is-active .process-step:nth-child(2) {
  transition-delay: 260ms;
}

.process-path.is-active .process-step:nth-child(3) {
  transition-delay: 440ms;
}

.process-path.is-active .process-step:nth-child(4) {
  transition-delay: 620ms;
}

.process-path.is-active .process-step:nth-child(1)::before {
  transition-delay: 120ms;
}

.process-path.is-active .process-step:nth-child(2)::before {
  transition-delay: 300ms;
}

.process-path.is-active .process-step:nth-child(3)::before {
  transition-delay: 480ms;
}

.process-path.is-active .process-step:nth-child(4)::before {
  transition-delay: 660ms;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 48px;
}

.about-stat {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(0, 89, 79, 0.74), rgba(10, 10, 10, 0.68)),
    var(--panel);
}

.about-stat strong {
  display: block;
  max-width: 420px;
  margin-bottom: 90px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.about-stat span {
  color: var(--lime);
  font-weight: 800;
}

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

.contact-copy a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--lime);
  font-weight: 800;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 246, 242, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 246, 242, 0.14);
  border-radius: 0;
  outline: 0;
  background: rgba(10, 10, 10, 0.62);
  color: var(--white);
  padding: 14px;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(168, 255, 96, 0.1);
  transform: translateY(-1px);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.enquiry-form .btn {
  position: relative;
  overflow: hidden;
}

.enquiry-form .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-110%);
  transition: transform 580ms var(--ease);
}

.enquiry-form .btn:hover::after,
.enquiry-form .btn:focus-visible::after {
  transform: translateX(110%);
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--lime);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) 1.4fr;
  gap: 56px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  color: rgba(244, 246, 242, 0.58);
  font-size: 0.9rem;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(244, 246, 242, 0.68);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 246, 242, 0.14);
  background: rgba(244, 246, 242, 0.06);
  color: rgba(244, 246, 242, 0.72);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(168, 255, 96, 0.32);
  background: rgba(168, 255, 96, 0.1);
  color: var(--lime);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(244, 246, 242, 0.64);
  line-height: 1.55;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 246, 242, 0.09);
}

.simple-page {
  min-height: 100vh;
  padding: 42px 0 80px;
}

.simple-panel {
  max-width: 820px;
  margin-top: 96px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(168, 255, 96, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 89, 79, 0.42), rgba(244, 246, 242, 0.05)),
    rgba(244, 246, 242, 0.05);
  box-shadow: var(--shadow);
}

.simple-panel h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.6vw, 5rem);
}

.simple-panel p,
.policy-content li {
  color: rgba(244, 246, 242, 0.72);
  font-size: 1.02rem;
  line-height: 1.72;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.policy-content a:not(.btn) {
  color: var(--lime);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-from-left {
  transform: translateX(-28px) translateY(14px);
}

.reveal-from-right {
  transform: translateX(28px) translateY(14px);
}

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

@keyframes ctaWiggle {
  0%,
  74%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  78% {
    transform: translateY(-1px) rotate(-1.4deg);
  }
  82% {
    transform: translateY(-1px) rotate(1.4deg);
  }
  86% {
    transform: translateY(-1px) rotate(-0.8deg);
  }
  90% {
    transform: translateY(0) rotate(0.6deg);
  }
}

@keyframes oldSite {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: grayscale(1);
  }
  38% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: grayscale(1);
  }
  72% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    filter: grayscale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes newSite {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  48% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes diagnoseOut {
  0%,
  44% {
    opacity: 1;
    transform: translateX(0);
  }
  80%,
  100% {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes nodeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes mobileStagePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0) scale(1);
  }
  38% {
    transform: translate(-50%, -50%) rotateX(1.8deg) rotateY(-2.4deg) scale(1.018);
  }
  72% {
    transform: translate(-50%, -50%) rotateX(-0.6deg) rotateY(1deg) scale(1.006);
  }
}

@keyframes mobileNodePulse {
  0%,
  100% {
    translate: 0 0;
  }
  42% {
    translate: 0 -7px;
  }
}

@keyframes spark {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.68;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(168, 255, 96, 0.18);
    background: rgba(10, 10, 10, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border: 1px solid transparent;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    border-color: rgba(168, 255, 96, 0.2);
    background: rgba(244, 246, 242, 0.06);
  }

  .menu-toggle {
    display: grid;
  }

  .about,
  .contact,
  .promise-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 126px;
  }

  .hero-copy {
    order: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(34px);
    transition:
      opacity 980ms var(--ease),
      transform 980ms var(--ease);
  }

  .hero.is-settled .hero-copy {
    order: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-system {
    order: 2;
    width: min(100%, 1120px);
    min-height: 500px;
    margin-top: 28px;
    margin-bottom: 0;
    transform: translateY(clamp(-500px, -58vh, -420px)) scale(1.035);
    transform-origin: 50% 42%;
    transition:
      transform 1500ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 900ms var(--ease);
  }

  .hero:not(.is-settled) .hero-system.reveal.is-visible {
    transform: translateY(clamp(-500px, -58vh, -420px)) scale(1.035);
  }

  .hero.is-settled .hero-system {
    order: 2;
    margin-top: 28px;
    transform: translateY(0) scale(1);
  }

  .scroll-cue {
    order: 3;
    margin-top: 14px;
  }

  .diagnostics,
  .service-grid,
  .process-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-path::before {
    display: none;
  }

  .contact-copy {
    position: static;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 10.6vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 62px;
  }

  .hero-system {
    min-height: 500px;
    margin-top: 24px;
    overflow: visible;
  }

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

  .trust-line {
    display: none;
  }

  .interface-stage {
    top: 53%;
    width: min(86vw, 520px);
    min-height: 318px;
    transform: translate(-50%, -50%) rotateX(0) rotateY(0);
  }

  .hero-system.is-tap-active .interface-stage {
    animation: mobileStagePulse 720ms var(--ease);
  }

  .hero-system.is-tap-active .system-node {
    animation:
      nodeIn 1ms var(--ease) forwards,
      mobileNodePulse 720ms var(--ease);
  }

  .mock-site {
    inset: 58px 16px 18px;
  }

  .old-hero {
    height: 104px;
  }

  .old-row {
    gap: 8px;
  }

  .old-row span {
    height: 58px;
  }

  .site-hero-card {
    min-height: 122px;
    padding: 16px;
  }

  .site-hero-card h2 {
    max-width: 220px;
    font-size: 1.58rem;
  }

  .site-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .site-grid article {
    min-width: 0;
    padding: 10px 8px;
  }

  .site-grid small {
    margin-bottom: 7px;
    font-size: 0.62rem;
  }

  .site-grid strong {
    font-size: 0.86rem;
  }

  .sparkline {
    display: none;
  }

  .system-node {
    padding: 8px 9px;
    font-size: 0.68rem;
  }

  .system-node::before {
    display: none;
  }

  .legacy-tags {
    top: 0;
    left: 6px;
    right: 6px;
    flex-flow: row wrap;
    gap: 7px;
  }

  .legacy-tags span {
    padding: 7px 8px;
    font-size: 0.64rem;
  }

  .node-seo {
    top: 70px;
    right: 8px;
  }
  .node-bookings {
    top: 148px;
    right: 0;
  }
  .node-commerce {
    right: 14px;
    bottom: 70px;
  }
  .node-enquiries {
    left: 8px;
    bottom: 82px;
  }
  .node-analytics {
    left: 0;
    top: 214px;
  }
  .node-care {
    left: 12px;
    top: 126px;
  }

  .problem,
  .promise,
  .services,
  .work,
  .process,
  .about,
  .contact {
    padding: 72px 0;
  }

  .diagnostics,
  .service-grid,
  .work-grid,
  .process-path,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .promise-panel,
  .about-stat {
    padding: 28px;
  }

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

  .project-preview {
    min-height: 220px;
  }

  .work-content {
    min-height: 206px;
  }

  .site-footer {
    width: min(100% - 24px, 1180px);
    gap: 34px;
    padding-top: 42px;
  }
}
