/* ============================================
   EVA OPS — STYLES.CSS
   Design System · Layout · Components · Responsive
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg-primary:    #1c1e21;
  --bg-secondary:  #272a2e;
  --bg-tertiary:   #111110;
  --border:        #2e3238;
  --border-subtle: #222528;
  --teal:          oklch(0.62 0.11 185);
  --teal-mid:      oklch(0.50 0.10 185);
  --text-primary:  #f6f4ef;
  --text-secondary:#7a7d82;
  --text-muted:    #9a9d9f;
  --text-ghost:    #3a3d42;
  --text-label:    oklch(0.62 0.11 185);
}

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

html {
  scroll-behavior: auto;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--teal);
  color: #0d1c1a;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  transition: top 150ms ease;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* --- Focus Styles --- */
*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* --- Base Typography --- */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

a { color: inherit; }

/* --- Color Utility --- */
.teal { color: var(--teal); }

/* ============================================
   FLOW MARK — Logo Symbol
   ============================================ */
.flow-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.flow-mark span {
  display: block;
  background: var(--teal);
}
.flow-mark span:nth-child(1) { width: 29px; height: 5px; margin-bottom: 5px; }
.flow-mark span:nth-child(2) { width: 41px; height: 5px; margin-bottom: 9px; }
.flow-mark span:nth-child(3) { width: 53px; height: 5px; }

.flow-mark.compact span { height: 3px; }
.flow-mark.compact span:nth-child(1) { width: 17px; margin-bottom: 3px; }
.flow-mark.compact span:nth-child(2) { width: 24px; margin-bottom: 5px; }
.flow-mark.compact span:nth-child(3) { width: 31px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--teal);
  color: #0d1c1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary:hover { background: var(--teal-mid); }

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
  text-decoration: none;
  line-height: 1;
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn-nav {
  padding: 8px 20px !important;
  font-size: 12px !important;
}

/* ============================================
   LABELS & CAPTIONS
   ============================================ */
.label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.caption {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* ============================================
   WORD REVEAL — Split Text Wrappers
   ============================================ */
.word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.word {
  display: inline-block;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
#cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.65;
  will-change: left, top;
  transition: width 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 350ms ease,
              background 350ms ease;
}
#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
body.cursor-pressed #cursor {
  width: 28px;
  height: 28px;
  background: rgba(26, 157, 141, 0.12);
  opacity: 1;
}
body.cursor-hover #cursor {
  width: 52px;
  height: 52px;
  opacity: 0.4;
  background: rgba(26, 157, 141, 0.05);
}

@media (hover: none) {
  #cursor, #cursor-dot { display: none !important; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(28, 30, 33, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-subtle);
}
.nav.hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { display: flex; align-items: center; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  background: var(--teal);
  transition: transform 300ms ease, opacity 300ms ease;
}
.nav-hamburger span:nth-child(1) { width: 17px; height: 3px; margin-bottom: 3px; }
.nav-hamburger span:nth-child(2) { width: 24px; height: 3px; margin-bottom: 5px; }
.nav-hamburger span:nth-child(3) { width: 31px; height: 3px; }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-tertiary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 150ms ease;
}
.nav-overlay a:hover { color: var(--teal); }
.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 150ms ease;
}
.nav-overlay-close:hover { color: var(--text-primary); }

/* ============================================
   HERO SECTION
   ============================================ */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  padding-top: 64px;
}

.hero-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  opacity: 0;
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text-primary);
}
.hero-h1 .hero-line {
  display: block;
  overflow: hidden;
}
.hero-h1 .hero-line-inner {
  display: block;
  transform: translateY(110%);
}

.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 24px auto 0;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(15px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(5px); }
}

.hero-scroll-hint.pulsing {
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
  background: var(--bg-tertiary);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding: 120px 48px 100px;
}
.section-problem .inner {
  max-width: 880px;
  margin: 0 auto;
}
.section-problem .label { margin-bottom: 32px; }

.problem-h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.problem-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 64px;
}
.problem-body p + p { margin-top: 14px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 32px 28px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
  padding: 120px 48px;
  background-color: var(--bg-tertiary);
  background-image:
    linear-gradient(rgba(17, 17, 16, 0.78), rgba(28, 30, 33, 0.88)),
    url('Office.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-services .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header { margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; }
.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-header .subtext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: transparent;
}

.service-card {
  background: rgba(28, 30, 33, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(26, 157, 141, 0.22);
  padding: 40px 36px;
  position: relative;
  transform-style: preserve-3d;
  transition: box-shadow 300ms ease, border-color 300ms ease;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: 0 0 50px rgba(26, 157, 141, 0.14), 0 0 120px rgba(26, 157, 141, 0.06);
  border-color: rgba(26, 157, 141, 0.55);
}

/* Subtle inner top edge highlight */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 157, 141, 0.4), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.service-card:hover::before,
.service-card.border-active::before {
  opacity: 1;
}

.service-card.full-width {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}
.service-card.full-width .card-left { }
.service-card.full-width .card-right { }

.card-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.card-icon {
  margin-bottom: 24px;
  color: var(--teal);
  width: 40px;
  height: 40px;
}
.card-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-style: normal;
  margin-bottom: 16px;
}

.card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-impact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.impact-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(26, 157, 141, 0.35);
  background: rgba(26, 157, 141, 0.07);
  padding: 4px 10px;
}

.card-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 150ms ease;
}
.card-cta:hover { opacity: 0.65; }

.services-cta {
  text-align: center;
  padding: 56px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(26, 157, 141, 0.15);
}
.services-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.section-how {
  background: var(--bg-secondary);
  padding: 120px 48px;
  clip-path: polygon(0 0, 100% 40px, 100% calc(100% - 40px), 0 100%);
  margin: -40px 0;
  position: relative;
  z-index: 2;
}
.section-how .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.steps-connector {
  position: absolute;
  top: 8px;
  left: calc(33.333% / 2);
  right: calc(33.333% / 2);
  height: 1px;
  background: var(--border);
  z-index: 0;
  pointer-events: none;
}
.connector-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.step-card {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.step-card:first-child { padding-left: 0; }
.step-card:last-child { padding-right: 0; }

.step-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-duration {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: var(--teal);
  background: rgba(26, 157, 141, 0.1);
  padding: 4px 10px;
  letter-spacing: 0.1em;
}

/* ============================================
   IMPACT NUMBERS
   ============================================ */
.section-impact {
  background: var(--bg-tertiary);
  padding: 140px 48px 120px;
  position: relative;
  z-index: 1;
}
.section-impact .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-impact .label { margin-bottom: 48px; }

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.impact-cell {
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.impact-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.impact-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

.impact-fine-print {
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   TECH STACK
   ============================================ */
.section-stack {
  background: var(--bg-primary);
  padding: 120px 48px;
}
.section-stack .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.badge-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  justify-content: center;
}

.badge {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: border-color 150ms ease, color 150ms ease;
  cursor: default;
}
.badge:hover {
  border-color: var(--teal);
  color: var(--text-primary);
}

.stack-callout {
  margin-top: 48px;
  background: var(--bg-secondary);
  border-left: 2px solid var(--teal);
  padding: 28px 32px;
}
.stack-callout p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ============================================
   LOOM VIDEO SECTION
   ============================================ */
.section-video {
  background: var(--bg-tertiary);
  padding: 120px 48px;
}
.section-video .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: center;
}

.video-left .label { margin-bottom: 24px; }
.video-left h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.video-left .body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.video-left .body-text p + p { margin-top: 10px; }

.video-placeholder {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 300ms ease;
  position: relative;
  overflow: hidden;
}
.video-placeholder:hover { border-color: var(--teal); }

.play-button {
  width: 64px;
  height: 64px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms ease;
  flex-shrink: 0;
}
.video-placeholder:hover .play-button {
  background: rgba(26, 157, 141, 0.1);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--teal);
  margin-left: 4px;
}

.video-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
  background: var(--bg-primary);
  padding: 120px 48px;
}
.section-contact .inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.section-contact .label { margin-bottom: 32px; }

.contact-h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.contact-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.cta-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.cta-option a { text-align: center; display: block; }

.cta-note {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
}

.contact-fine-print {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicators {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-wordmark {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}
.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-nav a:hover { color: var(--text-secondary); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE — TABLET (768–1199px)
   ============================================ */
@media (max-width: 1199px) and (min-width: 768px) {
  .nav { padding: 0 32px; }
  .nav-links { display: none; }

  .hero-h1 { font-size: 52px; }

  .section-problem { padding: 100px 32px 80px; }
  .stat-row { grid-template-columns: 1fr 1fr; }

  .section-services { padding: 100px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.full-width {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-how { padding: 100px 32px; }
  .steps-container { grid-template-columns: 1fr; gap: 48px; }
  .steps-connector { display: none; }
  .step-card { padding: 0; }

  .section-impact { padding: 100px 32px; }
  .section-stack { padding: 100px 32px; }

  .section-video { padding: 100px 32px; }
  .section-video .inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-contact { padding: 100px 32px; }
  .cta-block { grid-template-columns: 1fr; }

  .footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-right { align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none !important; }

  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-h1 { font-size: 38px; }
  .hero-body { font-size: 14px; }
  .section-hero { min-height: 100svh; }
  .hero-content { padding-top: 80px; }

  .section-problem {
    padding: 80px 24px 80px;
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    margin-top: -20px;
  }
  .problem-h2 { font-size: 28px; }
  .stat-row { grid-template-columns: 1fr; }

  .section-services { padding: 80px 24px; background-attachment: scroll; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.full-width {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-header h2 { font-size: 28px; }

  .section-how {
    padding: 80px 24px;
    clip-path: none;
    margin: 0;
  }
  .steps-container { grid-template-columns: 1fr; gap: 48px; }
  .steps-connector { display: none; }
  .step-card { padding: 0; }

  .section-impact { padding: 80px 24px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-number { font-size: 48px; }

  .section-stack { padding: 80px 24px; }

  .section-video { padding: 80px 24px; }
  .section-video .inner { grid-template-columns: 1fr; gap: 40px; }
  .video-left h2 { font-size: 28px; }

  .section-contact { padding: 80px 24px; }
  .contact-h2 { font-size: 32px; }
  .cta-block { grid-template-columns: 1fr; }

  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-right { align-items: flex-start; }
}

/* ============================================
   HERO URGENCY LINE
   ============================================ */
.hero-urgency {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 28px;
  opacity: 0;
}
.hero-urgency.visible { opacity: 1; }

/* ============================================
   COMPARISON SECTION
   ============================================ */
.section-comparison {
  background: var(--bg-primary);
  padding: 120px 48px;
}
.section-comparison .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-comparison .label { margin-bottom: 16px; }
.section-comparison h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 56px;
}

.comparison-table {
  border: 1px solid var(--border);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-row:last-child { border-bottom: none; }

.comparison-header { background: var(--bg-secondary); }

.comparison-col-head,
.comparison-metric,
.comparison-before,
.comparison-after {
  padding: 18px 24px;
}

.comparison-col-head { display: flex; align-items: center; }
.comparison-col-teal .label { color: var(--teal); }

.comparison-metric {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-subtle);
}

.comparison-before {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
}

.comparison-after {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
  background: var(--bg-tertiary);
  padding: 120px 48px;
}
.section-testimonials .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-testimonials .label { margin-bottom: 16px; }
.section-testimonials h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-result {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 157, 141, 0.08);
  padding: 6px 12px;
  display: inline-block;
  align-self: flex-start;
}

.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-company {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.testimonial-disclaimer {
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--bg-primary);
  padding: 120px 48px;
}
.section-faq .inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 56px; }
.faq-header .label { margin-bottom: 16px; }
.faq-header h2 {
  font-size: 40px;
  font-weight: 600;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  transition: color 150ms ease;
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 150ms ease, transform 300ms ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: background 150ms ease, transform 300ms ease, opacity 150ms ease;
}
.faq-icon::before {
  width: 8px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-question { color: var(--teal); }
.faq-item.is-open .faq-icon { border-color: var(--teal); }
.faq-item.is-open .faq-icon::before { background: var(--teal); }
.faq-item.is-open .faq-icon::after {
  background: var(--teal);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding-bottom: 24px;
}
.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  margin: 0 auto 32px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 150ms ease;
  outline: none;
  border-radius: 0;
  resize: vertical;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-primary);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal);
}
.form-input.invalid,
.form-textarea.invalid {
  border-color: #c0392b;
}
.form-textarea { min-height: 110px; }

.form-submit {
  align-self: flex-start;
  font-size: 13px;
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  max-width: 540px;
  margin: 0 auto 32px;
}
.form-success-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.form-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}

/* Contact divider */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

/* What happens next */
.what-next {
  max-width: 540px;
  margin: 40px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border-subtle);
}
.what-next .label { margin-bottom: 20px; }

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.next-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 1px;
}

.next-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.section-blog-preview {
  background: var(--bg-secondary);
  padding: 120px 48px;
}
.section-blog-preview .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-blog-preview .section-header { margin-bottom: 48px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.blog-card {
  background: var(--bg-primary);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 150ms ease;
}
.blog-card:hover { background: var(--bg-secondary); }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-category {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 157, 141, 0.08);
  padding: 4px 8px;
}

.blog-card-date {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.blog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}
.blog-card-title a:hover { color: var(--teal); }

.blog-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 150ms ease;
  align-self: flex-start;
}
.blog-card-link:hover { opacity: 0.65; }

.blog-preview-cta {
  margin-top: 40px;
  text-align: center;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform 300ms ease;
}
.sticky-cta.hidden { transform: translateY(100%); }

.sticky-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
}

.sticky-cta-btn {
  padding: 10px 20px !important;
  font-size: 12px !important;
  white-space: nowrap;
}

/* ============================================
   NEW SECTIONS — TABLET RESPONSIVE
   ============================================ */
@media (max-width: 1199px) and (min-width: 768px) {
  .section-comparison { padding: 100px 32px; }
  .comparison-header,
  .comparison-row { grid-template-columns: 1.5fr 2fr 2fr; }

  .section-testimonials { padding: 100px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .section-faq { padding: 100px 32px; }

  .section-blog-preview { padding: 100px 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   NEW SECTIONS — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .section-comparison { padding: 80px 24px; }
  .section-comparison h2 { font-size: 28px; }
  .comparison-header,
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-col-head:first-child { display: none; }
  .comparison-metric {
    background: var(--bg-tertiary);
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 16px;
  }
  .comparison-before,
  .comparison-after {
    padding: 12px 16px;
    border-right: none;
  }
  .comparison-before { border-bottom: 1px solid var(--border-subtle); }

  .section-testimonials { padding: 80px 24px; }
  .section-testimonials h2 { font-size: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .section-faq { padding: 80px 24px; }
  .faq-header h2 { font-size: 28px; }

  .section-blog-preview { padding: 80px 24px; }
  .section-blog-preview .section-header h2 { font-size: 28px; }
  .blog-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { max-width: 100%; }
  .contact-divider { max-width: 100%; }
  .what-next { max-width: 100%; }

  /* Show sticky CTA on mobile */
  .sticky-cta { display: flex; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-h1 .hero-line-inner { transform: none !important; }
  .hero-label, .hero-body, .hero-cta, .hero-scroll-hint { opacity: 1 !important; transform: none !important; }
  .hero-urgency { opacity: 1 !important; }
}
