```css
/* ============================================
   [TB] Chris Bell Construction & Project Management
   ============================================ */

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

/* --- TOKENS --- */
:root {
  --c-lime: #CBFB45;
  --c-lime-hover: #B8E63D;
  --c-lime-dim: #70833C;
  --c-bg: #151517;
  --c-bg-alt: #1E1E21;
  --c-bg-card: #222225;
  --c-text: #F3F3F3;
  --c-text-muted: #9B9B9F;
  --c-text-on-lime: #151517;
  --c-border: #2A2A2E;
  --c-border-light: #3A3A3E;

  --f-heading: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;
  --f-body: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;

  --fs-display: clamp(48px, 7vw, 88px);
  --fs-h1: clamp(36px, 5vw, 64px);
  --fs-h2: clamp(28px, 4vw, 44px);
  --fs-h3: clamp(22px, 3vw, 32px);
  --fs-body: 18px;
  --fs-sm: 15px;
  --fs-xs: 13px;

  --pad-section: clamp(80px, 10vw, 140px);
  --pad-container: clamp(20px, 4vw, 48px);
  --max-w: 1200px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.3s var(--ease);
  --t-med: 0.5s var(--ease);
  --t-slow: 0.8s var(--ease);

  --border-radius: 4px;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- UTILITIES --- */
.label {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-lime);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}
.section-pad {
  padding: var(--pad-section) 0;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  background: var(--c-lime);
  color: var(--c-text-on-lime);
  border: none;
  transition: background var(--t-fast), transform var(--t-fast);
  border-radius: var(--border-radius);
}
.btn:hover {
  background: var(--c-lime-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-light);
}
.btn-outline:hover {
  background: var(--c-lime);
  color: var(--c-text-on-lime);
  border-color: var(--c-lime);
}
.btn-dark {
  background: var(--c-bg);
  color: var(--c-text);
}
.btn-dark:hover {
  background: var(--c-bg-alt);
}

/* --- FADE-IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-container);
  transition: background var(--t-fast), padding var(--t-fast);
}
.site-header.scrolled {
  background: rgba(21, 21, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px var(--pad-container);
  border-bottom: 1px solid var(--c-border);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo-icon {
  width: 28px;
  height: 28px;
  position: relative;
}
.header-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-lime);
  clip-path: polygon(50% 0%, 100% 38%, 80% 100%, 20% 100%, 0% 38%);
}
.header-logo-text {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  position: relative;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-text);
}
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-lime);
}
.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-text);
  transition: var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--f-heading);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: var(--c-text);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--c-lime); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-container);
  padding-top: 120px;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 23, 0.95) 0%,
    rgba(21, 21, 23, 0.6) 40%,
    rgba(21, 21, 23, 0.3) 70%,
    rgba(21, 21, 23, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-label {
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--f-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 .lime {
  color: var(--c-lime);
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad-container);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--c-border-light);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-lime);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ========== TAGLINE BAR ========== */
.tagline-bar {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.tagline-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tagline-bar .tagline-text {
  font-family: var(--f-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.tagline-bar .tagline-text .lime { color: var(--c-lime); }
.tagline-steps {
  display: flex;
  gap: 32px;
}
.tagline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.tagline-step-num {
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--c-lime);
  font-size: 16px;
}

/* ========== REIMAGINED SECTION ========== */
.reimagined-section {
  padding: var(--pad-section) 0;
}
.reimagined-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reimagined-text .label { margin-bottom: 16px; display: block; }
.reimagined-text h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.reimagined-text p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  max-width: 480px;
}
.reimagined-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.reimagined-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reimagined-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--c-border);
  z-index: 1;
  pointer-events: none;
}

/* ========== SPEED STAT ========== */
.speed-stat {
  background: var(--c-bg-alt);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.speed-stat-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}
.speed-number {
  font-family: var(--f-heading);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-lime);
}
.speed-label {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.speed-label span { display: block; color: var(--c-text-muted); }

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: var(--pad-section) 0;
}
.process-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  margin-bottom: 64px;
}
.process-header .label { margin-bottom: 16px; display: block; }
.process-header h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.process-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.process-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 32px 24px;
  transition: background var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.process-card:hover {
  background: var(--c-bg-card);
  border-color: var(--c-lime-dim);
}
.process-card-num {
  font-family: var(--f-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1;
  margin-bottom: 12px;
}
.process-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.process-card p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  padding: var(--pad-section) 0;
}
.benefits-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  margin-bottom: 64px;
}
.benefits-header .label { margin-bottom: 16px; display: block; }
.benefits-header h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.benefits-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 32px 24px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.benefit-card:hover {
  background: var(--c-bg-card);
  border-color: var(--c-lime-dim);
}
.benefit-icon {
  font-family: var(--f-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1;
  margin-bottom: 12px;
}
.benefit-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ========== COMPLIANCE SECTION ========== */
.compliance-section {
  padding: var(--pad-section) 0;
}
.compliance-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}
.compliance-header {
  margin-bottom: 48px;
}
.compliance-header .label { margin-bottom: 16px; display: block; }
.compliance-header h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.compliance-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 32px 24px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.compliance-card:hover {
  background: var(--c-bg-card);
  border-color: var(--c-