/* ============================================
   HYVAX LTD — HYDROVAC SOLUTIONS
   Dark Industrial Luxury — Awwwards Quality
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,400;0,9..40,600;1,9..40,300&family=Space+Mono:wght@400;700&display=swap');

:root {
  --green: #8AA91E;
  --green-bright: #9DC220;
  --green-dark: #6A8515;
  --green-glow: rgba(138, 169, 30, 0.3);
  --black: #000000;
  --dark: #080C08;
  --dark-2: #0D110D;
  --dark-3: #111611;
  --navy: #060B12;
  --white: #F5F5F0;
  --white-dim: rgba(245, 245, 240, 0.7);
  --white-ghost: rgba(245, 245, 240, 0.15);
  --metal: #2A2E2A;
  --metal-light: #3A3F3A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  z-index: 10001;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.3s, height 0.3s, border-color 0.3s;
  z-index: 10000;
  opacity: 0.7;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--green-bright);
  opacity: 1;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 2px solid var(--metal);
  border-top: 2px solid var(--green);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  margin-top: 20px;
  letter-spacing: 0.2em;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

#nav.scrolled {
  background: rgba(8, 12, 8, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(138, 169, 30, 0.1);
}

.nav-logo {
  height: 44px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 10px 20px;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--green);
  color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0a1a0a 0%, var(--black) 70%);
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-content.visible {
  opacity: 1;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease 1.8s forwards;
}

.hero-title span {
  color: var(--green);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 36px);
  letter-spacing: 0.3em;
  color: var(--white-dim);
  margin-top: 16px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 2.1s forwards;
}

.hero-desc {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(245,245,240,0.45);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 2.4s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  animation: scrollPulse 2s ease infinite;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
  margin-left: 40px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

/* ============================================
   MARQUEE STRIP
   ============================================ */

.marquee-strip {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  font-weight: 700;
}

.marquee-sep {
  color: rgba(0,0,0,0.4);
  padding: 0 8px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES WHEEL SECTION
   ============================================ */

#services {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.services-inner {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.services-left {
  width: 45%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  border-right: 1px solid rgba(138, 169, 30, 0.1);
}

.services-wheel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 48px;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  animation: wheelSpin 20s linear infinite;
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

.wheel-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-center-text {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}

.wheel-center-text span {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--green);
  margin-top: 4px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title-large em {
  font-style: normal;
  color: var(--green);
}

.section-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 380px;
}

.services-right {
  width: 55%;
  padding: 80px 80px 80px 60px;
}

.service-card {
  padding: 48px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-card:first-child {
  padding-top: 0;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--white-dim);
}

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
  transition: filter 0.5s;
}

.service-card:hover .service-img {
  filter: saturate(0.8) brightness(0.8);
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(138, 169, 30, 0.3);
  padding: 4px 10px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

#how-it-works {
  min-height: 100vh;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.how-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(138, 169, 30, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.how-header {
  text-align: center;
  margin-bottom: 100px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green), var(--green), transparent);
  opacity: 0.3;
}

.how-step {
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.how-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.how-step:nth-child(2) { transition-delay: 0.1s; }
.how-step:nth-child(3) { transition-delay: 0.2s; }
.how-step:nth-child(4) { transition-delay: 0.3s; }

.step-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(138, 169, 30, 0.3);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--dark-2);
  transition: border-color 0.3s, background 0.3s;
}

.how-step:hover .step-icon {
  border-color: var(--green);
  background: rgba(138, 169, 30, 0.05);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 245, 240, 0.5);
}

/* Process flow diagram */
.process-flow {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px;
  background: rgba(138, 169, 30, 0.03);
  border: 1px solid rgba(138, 169, 30, 0.08);
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.flow-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  text-align: center;
}

.flow-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(138, 169, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.flow-arrow {
  font-size: 20px;
  color: rgba(138, 169, 30, 0.4);
  flex: 0 0 auto;
  padding: 0 8px;
}

/* ============================================
   INDUSTRIES / ORBITAL SECTION
   ============================================ */

#industries {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px;
}

.orbit-section {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.orbit-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 10;
  box-shadow: 0 0 60px rgba(138, 169, 30, 0.4);
}

.orbit-center-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(138, 169, 30, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 30s linear infinite;
}

.orbit-ring-1 {
  width: 240px;
  height: 240px;
  animation-duration: 20s;
}

.orbit-ring-2 {
  width: 380px;
  height: 380px;
  animation-duration: 35s;
  animation-direction: reverse;
}

.orbit-ring-3 {
  width: 490px;
  height: 490px;
  animation-duration: 50s;
  border-style: dashed;
  opacity: 0.4;
}

@keyframes orbitRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node {
  position: absolute;
  width: 110px;
  text-align: center;
  cursor: default;
}

.orbit-node-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(138, 169, 30, 0.4);
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(138, 169, 30, 0);
}

.orbit-node:hover .orbit-node-icon {
  border-color: var(--green);
  background: rgba(138, 169, 30, 0.1);
  box-shadow: 0 0 20px rgba(138, 169, 30, 0.3);
  transform: scale(1.1);
}

.orbit-node-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
  line-height: 1.4;
}

.industries-content h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.industries-content h2 em {
  font-style: normal;
  color: var(--green);
}

.industries-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 420px;
  margin-bottom: 32px;
}

.industries-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industries-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

.industries-list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================
   BIG TYPE SECTION (WHY HYDROVAC)
   ============================================ */

#why-hydrovac {
  position: relative;
}

.bigtype-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bigtype-slide:nth-child(odd) {
  background: var(--dark);
}

.bigtype-slide:nth-child(even) {
  background: var(--dark-2);
}

.bigtype-content {
  text-align: center;
  padding: 60px;
  position: relative;
  z-index: 2;
}

.bigtype-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bigtype-word {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  line-height: 0.85;
  color: var(--white);
  display: block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.bigtype-word.green { color: var(--green); }

.bigtype-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(245, 245, 240, 0.4);
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.bigtype-slide.visible .bigtype-num,
.bigtype-slide.visible .bigtype-sub {
  opacity: 1;
  transform: translateY(0);
}

.bigtype-slide.visible .bigtype-word {
  opacity: 1;
  transform: translateY(0);
}

.bigtype-slide.visible .bigtype-word:nth-child(3) {
  transition-delay: 0.1s;
}

.bigtype-slide.visible .bigtype-word:nth-child(4) {
  transition-delay: 0.2s;
}

.bigtype-bg-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(138, 169, 30, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

/* ============================================
   STATS SECTION
   ============================================ */

#stats {
  background: var(--dark-3);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(138, 169, 30, 0.04) 0%, transparent 60%);
}

.stats-header {
  text-align: center;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(138, 169, 30, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.stat-card:hover::before {
  transform: translateX(0);
}

.stat-card:hover {
  background: rgba(138, 169, 30, 0.03);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 96px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  color: var(--green);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* ============================================
   COMMITMENT / SPLIT SECTION
   ============================================ */

#commitment {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.commit-left {
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(8, 26, 8, 1) 100%);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.commit-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 169, 30, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.commit-left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 169, 30, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.commit-visual {
  position: relative;
  z-index: 2;
}

.commit-visual-title {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.85;
  color: var(--green);
  margin-bottom: 24px;
  opacity: 0.15;
  letter-spacing: -0.02em;
}

.commit-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.commit-icon-item {
  padding: 32px 24px;
  background: rgba(138, 169, 30, 0.04);
  border: 1px solid rgba(138, 169, 30, 0.08);
  transition: background 0.3s, border-color 0.3s;
}

.commit-icon-item:hover {
  background: rgba(138, 169, 30, 0.08);
  border-color: rgba(138, 169, 30, 0.2);
}

.cii-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.cii-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cii-text {
  font-size: 12px;
  color: var(--white-dim);
  line-height: 1.5;
}

.commit-right {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(138, 169, 30, 0.08);
}

.commit-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.commit-pillar {
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.commit-pillar.visible {
  opacity: 1;
  transform: translateX(0);
}

.commit-pillar:nth-child(2) { transition-delay: 0.1s; }
.commit-pillar:nth-child(3) { transition-delay: 0.2s; }
.commit-pillar:nth-child(4) { transition-delay: 0.3s; }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
  padding-top: 2px;
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.pillar-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-dim);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

#about {
  background: var(--dark-2);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.about-title span { color: var(--green); }

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-dim);
  margin-bottom: 16px;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--white-dim);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.7);
}

.about-img-overlay {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 60%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
  border: 4px solid var(--dark-2);
}

.about-accent-line {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
}

/* ============================================
   CTA SECTION
   ============================================ */

#cta {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-canvas {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 60px;
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-title span {
  color: var(--green);
}

.cta-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: none;
}

.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(138, 169, 30, 0.3);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  background: transparent;
  padding: 18px 40px;
  text-decoration: none;
  border: 1px solid rgba(138, 169, 30, 0.4);
  transition: border-color 0.3s, color 0.3s;
  cursor: none;
  margin-left: 16px;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--white);
}

.cta-contact {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
}

.contact-value {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value:hover {
  color: var(--green);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--black);
  border-top: 1px solid rgba(138, 169, 30, 0.1);
  padding: 60px 80px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 240, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 240, 0.25);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(138, 169, 30, 0.5);
  text-transform: uppercase;
}

/* ============================================
   UTILITY
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.text-green { color: var(--green); }
.text-dim { color: var(--white-dim); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--green);
  margin: 24px 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-600px) rotate(720deg); opacity: 0; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(138, 169, 30, 0.2); }
  50% { box-shadow: 0 0 40px rgba(138, 169, 30, 0.5); }
}

/* Responsive */
@media (max-width: 1024px) {
  #nav { padding: 20px 32px; }
  .services-left { padding: 60px 40px 60px 40px; }
  .services-right { padding: 60px 40px; }
  .how-container { padding: 0 40px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .orbit-wrap { width: 380px; height: 380px; }
  .orbit-ring-1 { width: 180px; height: 180px; }
  .orbit-ring-2 { width: 290px; height: 290px; }
  .orbit-ring-3 { width: 375px; height: 375px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  #commitment { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  footer { padding: 60px 40px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  #nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .services-inner { flex-direction: column; }
  .services-left { width: 100%; position: static; height: auto; padding: 60px 24px 40px; }
  .services-right { width: 100%; padding: 0 24px 60px; }
  .service-card { grid-template-columns: 1fr; }
  .orbit-section { grid-template-columns: 1fr; }
  .orbit-wrap { width: 320px; height: 320px; }
  .orbit-ring-3 { width: 315px; height: 315px; }
  .commit-left, .commit-right { padding: 60px 24px; }
  .about { padding: 80px 24px; }
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-contact { flex-direction: column; gap: 24px; }
  #industries { padding: 80px 24px; }
  #stats { padding: 80px 24px; }
  .bigtype-word { font-size: 18vw; }
}
