/* ============================================================
   ELORAND — css/style.css
   Design Family: Industrial/Workshop (K_FAMILY=4)
   Font: Clash Display + Satoshi (K_FONT=1)
   Accent: forest-green vibrant (K_HUE=0, K_SAT=2)
   Background: deep dark (K_BG=2)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,900&f[]=satoshi@400,500&display=swap');

/* ============================================================
   1. @THEME TOKENS
   ============================================================ */
@theme {
  --color-bg-primary: #0d1210;
  --color-bg-secondary: #141a17;
  --color-ink-primary: #e8ede9;
  --color-ink-muted: #7a8c80;
  --color-accent: #2d7a45;
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Arial', sans-serif;
  --radius-sm: 0px;
  --radius-md: 2px;
  --shadow-hard: 4px 4px 0px #2d7a45;
  --shadow-hard-dark: 4px 4px 0px #0d1210;
}

/* ============================================================
   2. BASE RESET / @LAYER BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #0d1210;
}

body {
  font-family: 'Satoshi', 'Arial', sans-serif;
  font-weight: 400;
  background-color: #0d1210;
  color: #e8ede9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #e8ede9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2d7a45;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

address {
  font-style: normal;
}

/* ============================================================
   3. LAYOUT — CONTAINERS
   ============================================================ */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-sm { width: 100%; max-width: 860px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-lg { width: 100%; max-width: 1440px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }

/* ============================================================
   4. FLEX UTILITIES
   ============================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* ============================================================
   5. GRID UTILITIES
   ============================================================ */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* ============================================================
   6. SPACING — GAP
   ============================================================ */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-12 { row-gap: 3rem; }

/* ============================================================
   7. SPACING — PADDING
   ============================================================ */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }

/* ============================================================
   8. SPACING — MARGIN
   ============================================================ */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-auto { margin-left: auto; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }

/* ============================================================
   9. SIZING
   ============================================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.min-h-[60vh] { min-height: 60vh; }
.min-h-[50vh] { min-height: 50vh; }
.min-h-[40vh] { min-height: 40vh; }
.min-h-[80vh] { min-height: 80vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-[16\/9] { aspect-ratio: 16 / 9; }
.aspect-[21\/9] { aspect-ratio: 21 / 9; }
.aspect-[4\/3] { aspect-ratio: 4 / 3; }
.aspect-[3\/2] { aspect-ratio: 3 / 2; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================================
   10. POSITION
   ============================================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.left-1\/2 { left: 50%; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ============================================================
   11. TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'Clash Display', 'Arial Black', sans-serif; }
.font-body { font-family: 'Satoshi', 'Arial', sans-serif; }
.font-mono { font-family: 'Courier New', Courier, monospace; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-[10px] { font-size: 10px; }
.text-[11px] { font-size: 11px; }
.text-[13px] { font-size: 13px; }
.text-[15px] { font-size: 15px; }
.text-[clamp(2.5rem,6vw,5rem)] { font-size: clamp(2.5rem, 6vw, 5rem); }
.text-[clamp(2rem,5vw,4rem)] { font-size: clamp(2rem, 5vw, 4rem); }
.text-[clamp(1.5rem,3vw,2.5rem)] { font-size: clamp(1.5rem, 3vw, 2.5rem); }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-[0.15em] { letter-spacing: 0.15em; }
.tracking-[0.2em] { letter-spacing: 0.2em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { word-break: break-word; }

/* ============================================================
   12. COLORS — TEXT
   ============================================================ */
.text-inherit { color: inherit; }
.text-current { color: currentColor; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-[#e8ede9] { color: #e8ede9; }
.text-[#7a8c80] { color: #7a8c80; }
.text-[#2d7a45] { color: #2d7a45; }
.text-[#0d1210] { color: #0d1210; }
.text-[#141a17] { color: #141a17; }
.text-[#a8c5b0] { color: #a8c5b0; }
.text-[#c8dac0] { color: #c8dac0; }
.text-[#4a9e62] { color: #4a9e62; }
.text-[#d8e2dc] { color: #d8e2dc; }
.text-[#b0c4b8] { color: #b0c4b8; }
.text-[#e2ebe4] { color: #e2ebe4; }

/* ============================================================
   13. COLORS — BACKGROUND
   ============================================================ */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-[#0d1210] { background-color: #0d1210; }
.bg-[#141a17] { background-color: #141a17; }
.bg-[#1a2420] { background-color: #1a2420; }
.bg-[#1e2b24] { background-color: #1e2b24; }
.bg-[#2d7a45] { background-color: #2d7a45; }
.bg-[#245e37] { background-color: #245e37; }
.bg-[#e8ede9] { background-color: #e8ede9; }
.bg-[#7a8c80] { background-color: #7a8c80; }
.bg-[#4a9e62] { background-color: #4a9e62; }
.bg-[rgba(13,18,16,0.92)] { background-color: rgba(13, 18, 16, 0.92); }
.bg-[rgba(45,122,69,0.12)] { background-color: rgba(45, 122, 69, 0.12); }
.bg-[rgba(45,122,69,0.08)] { background-color: rgba(45, 122, 69, 0.08); }
.bg-[rgba(232,237,233,0.04)] { background-color: rgba(232, 237, 233, 0.04); }
.bg-[rgba(232,237,233,0.06)] { background-color: rgba(232, 237, 233, 0.06); }
.bg-[rgba(232,237,233,0.03)] { background-color: rgba(232, 237, 233, 0.03); }
.bg-[rgba(20,26,23,0.95)] { background-color: rgba(20, 26, 23, 0.95); }

/* ============================================================
   14. BORDERS
   ============================================================ */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }

.border-[#e8ede9] { border-color: #e8ede9; }
.border-[#2d7a45] { border-color: #2d7a45; }
.border-[#7a8c80] { border-color: #7a8c80; }
.border-[#0d1210] { border-color: #0d1210; }
.border-[rgba(232,237,233,0.10)] { border-color: rgba(232, 237, 233, 0.10); }
.border-[rgba(232,237,233,0.12)] { border-color: rgba(232, 237, 233, 0.12); }
.border-[rgba(232,237,233,0.15)] { border-color: rgba(232, 237, 233, 0.15); }
.border-[rgba(232,237,233,0.20)] { border-color: rgba(232, 237, 233, 0.20); }
.border-[rgba(45,122,69,0.30)] { border-color: rgba(45, 122, 69, 0.30); }
.border-[rgba(45,122,69,0.40)] { border-color: rgba(45, 122, 69, 0.40); }
.border-[rgba(45,122,69,0.50)] { border-color: rgba(45, 122, 69, 0.50); }
.border-[rgba(122,140,128,0.20)] { border-color: rgba(122, 140, 128, 0.20); }
.border-[rgba(122,140,128,0.30)] { border-color: rgba(122, 140, 128, 0.30); }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }

/* ============================================================
   15. SHADOWS & EFFECTS
   ============================================================ */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.shadow-md { box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.shadow-lg { box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
.shadow-xl { box-shadow: 0 16px 48px rgba(0,0,0,0.7); }
.shadow-[4px_4px_0px_#2d7a45] { box-shadow: 4px 4px 0px #2d7a45; }
.shadow-[2px_2px_0px_#2d7a45] { box-shadow: 2px 2px 0px #2d7a45; }
.shadow-[6px_6px_0px_#2d7a45] { box-shadow: 6px 6px 0px #2d7a45; }
.shadow-[4px_4px_0px_#141a17] { box-shadow: 4px 4px 0px #141a17; }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-40 { opacity: 0.40; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============================================================
   16. TRANSITIONS & TRANSFORMS
   ============================================================ */
.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-duration: 150ms; transition-timing-function: ease; }
.transition-all { transition: all 150ms ease; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; transition-timing-function: ease; }
.transition-opacity { transition-property: opacity; transition-duration: 300ms; transition-timing-function: ease; }
.transition-transform { transition-property: transform; transition-duration: 200ms; transition-timing-function: ease; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.rotate-90 { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-180 { transform: rotate(180deg); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }

/* ============================================================
   17. HOVER / FOCUS STATES
   ============================================================ */
.hover\:text-\[#2d7a45\]:hover { color: #2d7a45; }
.hover\:text-\[#e8ede9\]:hover { color: #e8ede9; }
.hover\:text-\[#4a9e62\]:hover { color: #4a9e62; }
.hover\:bg-\[#245e37\]:hover { background-color: #245e37; }
.hover\:bg-\[#2d7a45\]:hover { background-color: #2d7a45; }
.hover\:bg-\[rgba(232,237,233,0.08)\]:hover { background-color: rgba(232, 237, 233, 0.08); }
.hover\:border-\[#2d7a45\]:hover { border-color: #2d7a45; }
.hover\:border-\[rgba(45,122,69,0.60)\]:hover { border-color: rgba(45, 122, 69, 0.60); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:shadow-\[6px_6px_0px_#2d7a45\]:hover { box-shadow: 6px 6px 0px #2d7a45; }
.hover\:shadow-\[4px_4px_0px_#2d7a45\]:hover { box-shadow: 4px 4px 0px #2d7a45; }
.hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

.focus\:outline-none:focus { outline: none; }
.focus\:border-\[#2d7a45\]:focus { border-color: #2d7a45; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #2d7a45; }

/* ============================================================
   18. DISPLAY UTILITIES
   ============================================================ */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.invisible { visibility: hidden; }
.visible { visibility: visible; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }

/* ============================================================
   19. OBJECT FIT
   ============================================================ */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ============================================================
   20. ARBITRARY CLASSES — DESIGN SYSTEM SPECIFICS
   ============================================================ */

/* Industrial stencil label */
.label-mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8c80;
}

/* Hard offset accent border card */
.card-industrial {
  background-color: #141a17;
  border: 1px solid rgba(232, 237, 233, 0.10);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card-industrial:hover {
  box-shadow: 4px 4px 0px #2d7a45;
  transform: translate(-2px, -2px);
}

/* Accent CTA button — hard industrial */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d7a45;
  color: #e8ede9;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #2d7a45;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn-accent:hover {
  background-color: #245e37;
  box-shadow: 4px 4px 0px rgba(45, 122, 69, 0.5);
  transform: translate(-2px, -2px);
  color: #e8ede9;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #e8ede9;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(232, 237, 233, 0.20);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover {
  border-color: #2d7a45;
  color: #2d7a45;
}

/* Section header marker */
.section-marker {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2d7a45;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-marker::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #2d7a45;
}

/* Numbered section marker — Industrial */
.num-marker {
  font-family: 'Clash Display', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(45, 122, 69, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Marquee strip */
.marquee-track {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  gap: 0;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  padding: 0 3rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a8c80;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background-color: #2d7a45;
  flex-shrink: 0;
}

/* Stats strip */
.stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #e8ede9;
  line-height: 1;
}
.stat-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8c80;
  margin-top: 0.5rem;
}

/* Process timeline step */
.process-step {
  position: relative;
  padding-left: 3rem;
  border-left: 1px solid rgba(45, 122, 69, 0.30);
  padding-bottom: 2.5rem;
}
.process-step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.process-step-num {
  position: absolute;
  left: -1.25rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #0d1210;
  border: 1px solid #2d7a45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  color: #2d7a45;
  letter-spacing: 0.1em;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(232, 237, 233, 0.10);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #e8ede9;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #2d7a45; }
.faq-answer {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: #7a8c80;
  line-height: 1.7;
  display: none;
}
.faq-answer.open { display: block; }
.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #2d7a45;
  transition: transform 0.2s ease;
}
.faq-icon.rotated { transform: rotate(45deg); }

/* Image caption overlay */
.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(13,18,16,0.85));
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 237, 233, 0.6);
}

/* Divider with label */
.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8c80;
}
.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(232, 237, 233, 0.10);
}

/* Blueprint grid overlay */
.blueprint-bg {
  background-image:
    linear-gradient(rgba(45, 122, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 122, 69, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #141a17;
  border: 1px solid rgba(232, 237, 233, 0.12);
  padding: 0.875rem 1rem;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  color: #e8ede9;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.form-input:focus {
  border-color: #2d7a45;
}
.form-input::placeholder {
  color: rgba(122, 140, 128, 0.6);
}
.form-label {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8c80;
  margin-bottom: 0.5rem;
}

/* Tag / chip */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border: 1px solid rgba(45, 122, 69, 0.35);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a9e62;
  background-color: rgba(45, 122, 69, 0.08);
}

/* Icon circle */
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(45, 122, 69, 0.35);
  background-color: rgba(45, 122, 69, 0.08);
  flex-shrink: 0;
}
.icon-wrap i {
  font-size: 1.125rem;
  color: #2d7a45;
}

/* Hero image container */
.hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.03);
}

/* ============================================================
   21. HEADER / NAVIGATION
   ============================================================ */
.site-nav-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e8ede9;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2d7a45;
  transition: width 0.2s ease;
}
.site-nav-link:hover::after,
.site-nav-link.active::after {
  width: 100%;
}
.site-nav-link:hover,
.site-nav-link.active {
  color: #2d7a45;
}

/* ============================================================
   22. RESPONSIVE — md: (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-\[60fr_40fr\] { grid-template-columns: 60fr 40fr; }
  .md\:grid-cols-\[2fr_1fr\] { grid-template-columns: 2fr 1fr; }
  .md\:grid-cols-\[1fr_2fr\] { grid-template-columns: 1fr 2fr; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-x-8 { column-gap: 2rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:pt-0 { padding-top: 0; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:flex-1 { flex: 1 1 0%; }
  .md\:self-end { align-self: flex-end; }
  .md\:border-r { border-right-width: 1px; border-right-style: solid; }
  .md\:border-b-0 { border-bottom-width: 0; }
  .md\:pr-8 { padding-right: 2rem; }
  .md\:pl-8 { padding-left: 2rem; }
}

/* ============================================================
   23. RESPONSIVE — lg: (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[60fr_40fr\] { grid-template-columns: 60fr 40fr; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
}

/* ============================================================
   24. SPECIAL COMPONENTS
   ============================================================ */

/* Cookie banner */
[data-target="cookies.banner"] {
  display: none;
}

/* Mobile menu */
[data-target="nav.mobileMenu"] {
  display: none;
}

/* Sticky header */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(13, 18, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 237, 233, 0.08);
}

/* Vertical rotated label */
.rotate-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a8c80;
}

/* Blueprint grid section */
.section-blueprint {
  background-image:
    linear-gradient(rgba(45, 122, 69, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 122, 69, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Quote block */
.blockquote-industrial {
  border-left: 4px solid #2d7a45;
  padding-left: 1.5rem;
  margin-left: 0;
}
.blockquote-industrial p {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8ede9;
  line-height: 1.4;
}
.blockquote-industrial cite {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a8c80;
  margin-top: 0.75rem;
  display: block;
  font-style: normal;
}

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: rgba(45, 122, 69, 0.12);
  border: 1px solid rgba(45, 122, 69, 0.3);
  color: #4a9e62;
}

/* Scroll-to anchor offset */
:target {
  scroll-margin-top: 5rem;
}

/* Print */
@media print {
  .site-header, footer, [data-target="cookies.banner"] {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
}
