/*
Theme Name: Interaction Labs
Theme URI: https://interactionlabs.sg
Author: Interaction Labs
Author URI: https://interactionlabs.sg
Description: Enterprise AI software studio — Construction & Finance. Singapore.
Version: 1.0.0
License: Proprietary
Text Domain: interaction-labs
*/

/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  --void:   #080808;
  --acid:   #E8FF00;
  --bone:   #F5F2EC;
  --fire:   #FF3B00;
  --smoke:  #111111;
  --dim:    #1A1A1A;
  --border: #272727;
  --steel:  #7A7A7A;
  --green:  #00E676;

  --font-d: 'Space Grotesk', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'JetBrains Mono', monospace;

  --section-pad: 96px 64px;
  --section-pad-sm: 64px 32px;
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ================================================================
   TYPOGRAPHY UTILITIES
================================================================ */
.lbl {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--acid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.lbl::before { content: ''; width: 20px; height: 1px; background: var(--acid); flex-shrink: 0; }
.lbl--dark { color: rgba(0,0,0,.4); }
.lbl--dark::before { background: rgba(0,0,0,.4); }
.lbl--steel { color: var(--steel); }
.lbl--steel::before { background: var(--steel); }

.label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--acid);
  display: flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--acid);
  flex-shrink: 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--bone);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 12px;
}

.h1 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 12px;
}
.body-l { font-size: 18px; line-height: 1.8; color: var(--steel); max-width: 680px; }
.body-m { font-size: 16px; line-height: 1.8; color: var(--steel); }
.body-sm { font-size: 14px; line-height: 1.75; color: var(--steel); }
.mono { font-family: var(--font-m); }

/* ================================================================
   LAYOUT UTILITIES
================================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.align-end { align-items: end; }
.align-start { align-items: start; }

/* ================================================================
   SECTION VARIANTS
================================================================ */
.sec { padding: var(--section-pad); border-bottom: 1px solid var(--border); }
.sec--void   { background: var(--void); }
.sec--smoke  { background: var(--smoke); }
.sec--dim    { background: var(--dim); }
.sec--bone   { background: var(--bone); color: var(--void); }
.sec--acid   { background: var(--acid); color: var(--void); }

/* ================================================================
   NAVIGATION
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  color: var(--bone);
  letter-spacing: -.01em;
}
.nav-logo .dot {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--bone); }

.nav-cta {
  background: var(--acid);
  color: var(--void) !important;
  font-family: var(--font-d) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 10px 22px;
  letter-spacing: -.01em;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: #d4eb00;
  transform: translateY(-1px);
  color: var(--void) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: .3s;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(28px, 6vw, 48px);
  color: var(--bone);
  letter-spacing: -.02em;
  transition: color .2s;
}
.nav-overlay a:hover { color: var(--acid); }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.01em;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, color .2s;
}
.btn--acid {
  background: var(--acid);
  color: var(--void);
}
.btn--acid:hover { background: #d4eb00; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--steel); }
.btn--ghost-acid {
  background: transparent;
  color: var(--acid);
  border: 1px solid var(--acid);
}
.btn--ghost-void {
  background: transparent;
  color: var(--void);
  border: 1px solid var(--void);
}
.btn--ghost-void:hover { background: rgba(0,0,0,.06); }
.btn-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   PILLS / TAGS
================================================================ */
.pill {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.pill--acid  { background: rgba(232,255,0,.1); color: var(--acid); border: 1px solid rgba(232,255,0,.3); }
.pill--steel { color: var(--steel); border: 1px solid var(--border); }
.pill--fire  { background: rgba(255,59,0,.08); color: var(--fire); border: 1px solid rgba(255,59,0,.2); }
.pill--green { background: rgba(0,230,118,.08); color: var(--green); border: 1px solid rgba(0,230,118,.2); }
.pill--bone  { background: rgba(245,242,236,.08); color: var(--bone); border: 1px solid var(--border); }

/* ================================================================
   CARDS
================================================================ */
.card {
  background: var(--dim);
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color .25s;
}
.card:hover { border-color: var(--steel); }
.card--acid-top { border-top: 3px solid var(--acid); }
.card--fire-top { border-top: 3px solid var(--fire); }
.card--steel-top { border-top: 3px solid var(--steel); }
.card-num  { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .14em; margin-bottom: 14px; }
.card-title { font-family: var(--font-d); font-weight: 700; font-size: 20px; color: var(--bone); margin-bottom: 10px; letter-spacing: -.01em; }
.card-body  { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* ================================================================
   CALLOUTS
================================================================ */
.callout {
  background: var(--dim);
  border-left: 3px solid var(--acid);
  padding: 24px 28px;
  margin: 24px 0;
}
.callout p { font-size: 15px; color: var(--bone); line-height: 1.75; }
.callout p em { color: var(--acid); font-style: normal; font-weight: 600; }
.warn {
  background: var(--dim);
  border-left: 3px solid var(--fire);
  padding: 20px 28px;
  margin: 20px 0;
}
.warn p { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* ================================================================
   HERO — HOMEPAGE
================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -240px; right: -240px;
  width: 700px; height: 700px;
  background: var(--acid);
  border-radius: 50%;
  opacity: .025;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 1280px; width: 100%; }
.hero-eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-h {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 108px);
  line-height: .9;
  letter-spacing: -.035em;
  color: var(--bone);
  margin-bottom: 40px;
  max-width: 900px;
}
.hero-h .ac { color: var(--acid); }
.hero-sub {
  font-size: 18px;
  color: var(--steel);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-scroll {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::before { content: ''; width: 40px; height: 1px; background: var(--border); }

/* ================================================================
   SERVICES SECTION (homepage)
================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.service-card {
  background: var(--dim);
  border: 1px solid var(--border);
  border-top: 3px solid var(--acid);
  padding: 40px 36px;
  transition: background .25s;
}
.service-card:hover { background: #222; }
.service-card__num { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .14em; margin-bottom: 20px; }
.service-card__title { font-family: var(--font-d); font-weight: 700; font-size: 22px; color: var(--bone); margin-bottom: 14px; letter-spacing: -.015em; }
.service-card__body { font-size: 14px; color: var(--steel); line-height: 1.75; margin-bottom: 24px; }
.service-card__refs { margin-bottom: 28px; }
.service-card__ref { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .06em; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.service-card__ref::before { content: '→'; color: var(--acid); }
.service-card__ref:last-child { border-bottom: none; }
.service-card__link { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   PROCESS STEPS (homepage teaser)
================================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; }
.process-step {
  background: var(--dim);
  border: 1px solid var(--border);
  border-right: none;
  padding: 32px 28px;
  position: relative;
}
.process-step:last-child { border-right: 1px solid var(--border); }
.process-step::after {
  content: '→';
  position: absolute;
  right: -13px;
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--acid);
  z-index: 2;
  background: var(--void);
  padding: 2px 0;
}
.process-step:last-child::after { display: none; }
.step-num { font-family: var(--font-m); font-size: 9px; color: var(--acid); letter-spacing: .14em; margin-bottom: 12px; }
.step-title { font-family: var(--font-d); font-weight: 700; font-size: 16px; color: var(--bone); margin-bottom: 10px; line-height: 1.2; }
.step-body { font-size: 13px; color: var(--steel); line-height: 1.65; }
.step-tag { margin-top: 16px; font-family: var(--font-m); font-size: 9px; color: rgba(232,255,0,.6); letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; background: rgba(232,255,0,.05); border: 1px solid rgba(232,255,0,.15); display: inline-block; }

/* ================================================================
   VERTICALS SPLIT (homepage)
================================================================ */
.verticals-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.vertical-panel {
  padding: 52px 48px;
  border: 1px solid var(--border);
}
.vertical-panel--construction { background: var(--smoke); }
.vertical-panel--finance { background: var(--dim); }
.vertical-panel__tag { font-family: var(--font-m); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.vertical-panel--construction .vertical-panel__tag { color: var(--acid); }
.vertical-panel--finance .vertical-panel__tag { color: var(--acid); }
.vertical-panel__title { font-family: var(--font-d); font-weight: 700; font-size: clamp(22px, 2.5vw, 30px); color: var(--bone); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 18px; }
.vertical-panel__body { font-size: 15px; color: var(--steel); line-height: 1.75; margin-bottom: 28px; }
.vertical-panel__points { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.vertical-panel__point { font-family: var(--font-m); font-size: 11px; color: var(--bone); letter-spacing: .04em; padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; line-height: 1.45; }
.vertical-panel__point::before { content: '→'; color: var(--acid); flex-shrink: 0; }
.vertical-panel__point:last-child { border-bottom: none; }
.vertical-panel__refs { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .08em; }

/* ================================================================
   WORK CARDS
================================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.work-card {
  background: var(--dim);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s;
  display: flex;
  flex-direction: column;
}
.work-card:hover { border-color: var(--acid); }
.work-card__image {
  height: 220px;
  background: var(--smoke);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-card__image img { width: 100%; height: 100%; object-fit: cover; }
.work-card__image-placeholder {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.work-card__body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.work-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.work-card__title { font-family: var(--font-d); font-weight: 700; font-size: 18px; color: var(--bone); letter-spacing: -.01em; margin-bottom: 10px; line-height: 1.25; }
.work-card__desc { font-size: 13px; color: var(--steel); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.work-card__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.work-card__year { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .1em; }
.work-card__link { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   METRICS BAR
================================================================ */
.metrics-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); margin-bottom: 48px; }
.metric { padding: 32px 28px; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric__num { font-family: var(--font-d); font-weight: 700; font-size: clamp(28px, 3vw, 40px); color: var(--acid); letter-spacing: -.03em; line-height: 1; margin-bottom: 8px; }
.metric__label { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   TESTIMONIAL
================================================================ */
.testimonial { padding: 48px; background: var(--smoke); border: 1px solid var(--border); }
.testimonial__quote { font-family: var(--font-d); font-weight: 500; font-size: clamp(17px, 2vw, 22px); color: var(--bone); line-height: 1.55; margin-bottom: 32px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--border); overflow: hidden; flex-shrink: 0; }
.testimonial__name { font-family: var(--font-d); font-weight: 600; font-size: 15px; color: var(--bone); }
.testimonial__role { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .08em; margin-top: 2px; }

/* ================================================================
   BLOG CARD
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.blog-card {
  background: var(--dim);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s;
}
.blog-card:hover { border-color: var(--steel); }
.blog-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-card__title { font-family: var(--font-d); font-weight: 700; font-size: 17px; color: var(--bone); letter-spacing: -.01em; line-height: 1.3; flex: 1; }
.blog-card__excerpt { font-size: 13px; color: var(--steel); line-height: 1.7; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .06em; }
.blog-card__read { color: var(--acid); }

/* ================================================================
   CTA BAND
================================================================ */
.cta-band {
  background: var(--acid);
  padding: 80px 64px;
  text-align: center;
}
.cta-band__h {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--void);
  margin-bottom: 16px;
}
.cta-band__sub { font-size: 17px; color: rgba(0,0,0,.55); max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
.cta-band__note { font-family: var(--font-m); font-size: 11px; color: rgba(0,0,0,.4); letter-spacing: .08em; margin-top: 16px; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  padding: 140px 64px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--void);
}
.page-hero__inner { max-width: 1280px; margin: 0 auto; }
.page-hero__eyebrow { font-family: var(--font-m); font-size: 11px; color: var(--acid); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 28px; }
.page-hero__h {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--bone);
  margin-bottom: 32px;
  max-width: 840px;
}
.page-hero__sub { font-size: 18px; color: var(--steel); max-width: 600px; line-height: 1.75; }

/* ================================================================
   PROCESS PAGE — EMIA PHASES
================================================================ */
.emia-phase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2px;
}
.emia-phase__sidebar {
  background: rgba(232,255,0,.04);
  border-right: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.emia-phase__num { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .15em; }
.emia-phase__name { font-family: var(--font-d); font-weight: 700; font-size: 24px; color: var(--bone); letter-spacing: -.015em; line-height: 1.15; }
.emia-phase__time { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .1em; margin-top: 8px; }
.emia-phase__deliverable { margin-top: auto; padding-top: 20px; }
.emia-phase__del-label { font-family: var(--font-m); font-size: 9px; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.emia-phase__del-item { font-family: var(--font-m); font-size: 11px; color: var(--acid); letter-spacing: .06em; padding: 5px 10px; border: 1px solid rgba(232,255,0,.25); background: rgba(232,255,0,.05); margin-bottom: 4px; display: inline-block; }
.emia-phase__content { padding: 40px 48px; }
.emia-phase__desc { font-size: 16px; color: var(--steel); line-height: 1.8; margin-bottom: 24px; max-width: 640px; }
.emia-phase__points { display: flex; flex-direction: column; gap: 0; }
.emia-phase__point { font-size: 14px; color: var(--bone); padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.emia-phase__point::before { content: '→'; color: var(--acid); flex-shrink: 0; font-family: var(--font-m); margin-top: 1px; }
.emia-phase__point:last-child { border-bottom: none; }

/* ================================================================
   CONTACT FORM
================================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.form-tabs { display: flex; gap: 0; margin-bottom: 40px; border: 1px solid var(--border); overflow: hidden; }
.form-tab {
  flex: 1;
  padding: 16px 24px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  color: var(--steel);
  background: var(--dim);
  cursor: pointer;
  border: none;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background .2s, color .2s;
}
.form-tab:last-child { border-right: none; }
.form-tab.active, .form-tab:hover { background: var(--smoke); color: var(--bone); }
.form-tab.active { color: var(--acid); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--dim);
  border: 1px solid var(--border);
  color: var(--bone);
  font-family: var(--font-b);
  font-size: 15px;
  padding: 14px 18px;
  appearance: none;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--acid);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.65; }
.field select { cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-note { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .06em; margin-top: 8px; }
.contact-sidebar { position: sticky; top: 100px; }
.contact-sidebar__block { padding: 32px; border: 1px solid var(--border); background: var(--dim); margin-bottom: 2px; }
.contact-sidebar__label { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.next-steps { display: flex; flex-direction: column; gap: 0; }
.next-step { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.next-step:last-child { border-bottom: none; }
.next-step__num { font-family: var(--font-m); font-size: 10px; color: var(--acid); font-weight: 700; padding-top: 2px; }
.next-step__text { font-size: 14px; color: var(--bone); line-height: 1.6; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding: 0 0 44px 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -22px; top: 5px; width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--border); background: var(--void); }
.timeline-dot--active { background: var(--acid); border-color: var(--acid); box-shadow: 0 0 0 3px rgba(232,255,0,.15); }
.timeline-year { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.timeline-title { font-family: var(--font-d); font-weight: 700; font-size: 20px; color: var(--bone); letter-spacing: -.01em; margin-bottom: 8px; line-height: 1.2; }
.timeline-body { font-size: 14px; color: var(--steel); line-height: 1.7; max-width: 580px; }

.rules { display: flex; flex-direction: column; gap: 0; }
.rule { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.rule:last-child { border-bottom: none; }
.rule__num { font-family: var(--font-m); font-size: 11px; color: var(--acid); font-weight: 700; padding-top: 3px; }
.rule__body { font-size: 16px; color: var(--bone); line-height: 1.6; }
.rule__body span { color: var(--steel); display: block; font-size: 14px; margin-top: 4px; line-height: 1.65; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 64px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-d); font-weight: 700; font-size: 15px; color: var(--bone); margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: var(--steel); line-height: 1.7; max-width: 240px; }
.footer-col__title { font-family: var(--font-m); font-size: 10px; color: var(--acid); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col__links { display: flex; flex-direction: column; gap: 12px; }
.footer-col__links a { font-size: 14px; color: var(--steel); transition: color .2s; }
.footer-col__links a:hover { color: var(--bone); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); }
.footer-copy { font-family: var(--font-m); font-size: 11px; color: var(--steel); letter-spacing: .06em; }
.footer-reg { font-family: var(--font-m); font-size: 11px; color: rgba(122,122,122,.5); letter-spacing: .06em; }

/* ================================================================
   ANIMATIONS
================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   WORDPRESS SPECIFICS
================================================================ */
.wp-block-image img { border: 1px solid var(--border); }
.aligncenter { margin: 0 auto; }
.entry-content h2 { font-family: var(--font-d); font-weight: 700; font-size: clamp(22px,2.5vw,32px); letter-spacing: -.02em; color: var(--bone); margin: 40px 0 16px; }
.entry-content h3 { font-family: var(--font-d); font-weight: 700; font-size: 20px; letter-spacing: -.01em; color: var(--bone); margin: 32px 0 12px; }
.entry-content p { font-size: 17px; color: var(--steel); line-height: 1.85; margin-bottom: 24px; }
.entry-content strong { color: var(--bone); }
.entry-content a { color: var(--acid); border-bottom: 1px solid rgba(232,255,0,.3); }
.entry-content ul { margin: 0 0 24px 0; display: flex; flex-direction: column; gap: 8px; }
.entry-content ul li { font-size: 16px; color: var(--steel); padding-left: 20px; position: relative; line-height: 1.7; }
.entry-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--acid); font-family: var(--font-m); font-size: 12px; }
.entry-content blockquote { border-left: 3px solid var(--acid); padding: 20px 28px; background: var(--dim); margin: 32px 0; }
.entry-content blockquote p { font-size: 17px; color: var(--bone); font-style: italic; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 40px; }
  .container { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }
  .hero { padding: 120px 40px 72px; }
  .page-hero { padding: 120px 40px 72px; }
  .post-hero { padding: 140px 40px 48px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .metrics-bar { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 64px 40px; }
  .site-footer { padding: 64px 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 24px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .page-hero { padding: 100px 24px 60px; }
  .post-hero { padding: 116px 24px 40px; }
  .post-hero__meta { margin-bottom: 20px; }
  .post-hero h1 { margin-bottom: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--border); }
  .process-step::after { display: none; }
  .verticals-split { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .metrics-bar { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .emia-phase { grid-template-columns: 1fr; }
  .emia-phase__sidebar { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band { padding: 56px 24px; }
  .site-footer { padding: 56px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .form-tabs { flex-direction: column; }
}

/* ================================================================
   WORK PAGE
================================================================ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--void);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
}

.work-card {
  background: var(--dim);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.work-card:hover { border-color: var(--acid); }

.work-card__thumb { overflow: hidden; aspect-ratio: 16/9; }
.work-card__thumb img { width: 100%; height: 100%; object-fit: cover; }

.work-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.work-card__title {
  font-family: var(--font-d);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.3;
  margin-bottom: 12px;
}

.work-card__excerpt {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.work-card__outcome {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--green);
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

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

.work-card__link {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--acid);
  text-decoration: none;
  letter-spacing: .05em;
}

.work-card__link:hover { text-decoration: underline; }

/* ================================================================
   CASE STUDY — SINGLE PORTFOLIO
================================================================ */
.cs-hero {
  padding: 120px var(--container-pad) 72px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cs-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

.cs-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 24px;
}

.cs-hero__excerpt {
  font-family: var(--font-b);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--steel);
  line-height: 1.7;
  max-width: 640px;
}

.cs-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  margin-bottom: 48px;
}

.cs-stats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cs-stat { display: flex; flex-direction: column; gap: 4px; }
.cs-stat__label { font-family: var(--font-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }
.cs-stat__value { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--bone); }

.cs-cover { margin-bottom: 64px; }
.cs-cover__img { width: 100%; border-radius: 4px; }

.cs-content__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.cs-body {
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
}

.cs-body h2 { font-family: var(--font-d); color: var(--bone); font-size: 28px; margin: 48px 0 16px; }
.cs-body h3 { font-family: var(--font-d); color: var(--bone); font-size: 22px; margin: 36px 0 12px; }
.cs-body p { margin-bottom: 24px; }
.cs-body ul { padding-left: 20px; margin-bottom: 24px; }
.cs-body li { margin-bottom: 8px; }
.cs-body img { width: 100%; border-radius: 4px; margin: 24px 0; }

.cs-outcome {
  background: var(--dim);
  border: 1px solid var(--border);
  border-left: 3px solid var(--acid);
  padding: 28px;
  border-radius: 4px;
  position: sticky;
  top: 100px;
}

.cs-outcome__text {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--bone);
  line-height: 1.7;
  margin-top: 12px;
}

.cs-next { padding: 64px 0; border-top: 1px solid var(--border); }

.cs-next__inner { display: flex; flex-direction: column; gap: 40px; }

.cs-next__nav { display: flex; justify-content: space-between; gap: 32px; }

.cs-next__link { display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
.cs-next__link--right { align-items: flex-end; text-align: right; }
.cs-next__title { font-family: var(--font-d); font-size: 18px; font-weight: 600; color: var(--bone); }

.cs-next__cta { display: flex; gap: 16px; }

.case-study--coded .cs-hero {
  padding-bottom: 88px;
}

.case-study--coded .cs-hero h1 {
  font-size: clamp(42px, 8vw, 112px);
  line-height: .92;
  max-width: 980px;
  margin-bottom: 32px;
}

.cs-hero__dek {
  font-family: var(--font-b);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--steel);
  line-height: 1.6;
  max-width: 760px;
}

.cs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--container-pad) 80px;
}

.cs-main {
  min-width: 0;
}

.cs-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.cs-section:last-child {
  margin-bottom: 0;
}

.cs-section h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 24px;
}

.cs-lead {
  font-family: var(--font-b);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--bone);
  max-width: 860px;
  margin-bottom: 28px;
}

.cs-body-p {
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.8;
  color: var(--steel);
  max-width: 820px;
  margin-bottom: 20px;
}

.cs-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.cs-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--steel);
}

.cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
}

.cs-modules,
.cs-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.cs-module,
.cs-result,
.cs-outcome-card,
.cs-detail-card,
.cs-screen-item,
.cs-next-card {
  background: var(--dim);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.cs-module {
  min-height: 180px;
  padding: 28px;
}

.cs-module__name {
  display: block;
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 12px;
}

.cs-module__desc {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

.cs-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cs-screen-item {
  overflow: hidden;
}

.cs-screen-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(221, 255, 0, .16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #11120f;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-m);
  font-size: clamp(18px, 2.5vw, 32px);
  color: var(--bone);
  text-align: center;
  letter-spacing: .06em;
}

.cs-screen-label {
  display: block;
  padding: 14px 16px 16px;
  font-family: var(--font-m);
  font-size: 11px;
  line-height: 1.5;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cs-results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.cs-result {
  min-height: 150px;
  padding: 24px;
}

.cs-result__metric {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: var(--acid);
  margin-bottom: 14px;
}

.cs-result__label {
  display: block;
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

.cs-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.cs-outcome-card {
  padding: 28px;
  border-left: 3px solid var(--acid);
}

.cs-outcome-card__label {
  display: block;
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.cs-outcome-card__stat {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  color: var(--acid);
  margin-bottom: 18px;
}

.cs-outcome-card__desc {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

.cs-detail-card {
  padding: 8px 22px;
}

.cs-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--steel);
}

.cs-detail-row:last-child {
  border-bottom: 0;
}

.cs-detail-row strong {
  font-family: var(--font-d);
  font-size: 13px;
  color: var(--bone);
  text-align: right;
}

.cs-next-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad) 80px;
}

.cs-next-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 130px;
  padding: 28px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.cs-next-card:hover {
  border-color: rgba(221, 255, 0, .55);
  background: rgba(221, 255, 0, .04);
}

.cs-next-card--right {
  align-items: flex-end;
  text-align: right;
}

.cs-next-card__dir {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cs-next-card__title {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  color: var(--bone);
}

/* Standalone parity overrides for Work and case study pages */
.work-filter-section {
  padding: 48px var(--container-pad) 0;
}

.work-filter-section .container,
.work-archive-grid .container {
  max-width: var(--max-w);
}

.work-archive-grid {
  padding: 32px var(--container-pad) 96px;
}

.work-grid--archive {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.work-cta-band {
  margin-top: 96px;
}

.case-study--coded .cs-hero {
  max-width: none;
  padding: 96px 64px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--void);
}

.case-study--coded .cs-hero__inner {
  max-width: 860px;
}

.case-study--coded .cs-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.035em;
  max-width: 860px;
  margin-bottom: 24px;
}

.case-study--coded .cs-hero__dek {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.case-study--coded .cs-stats {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  border-top: 0;
  border-bottom: 1px solid var(--border);
}

.case-study--coded .cs-stats .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.case-study--coded .cs-stats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.case-study--coded .cs-stat {
  flex: 1;
  min-width: 140px;
  gap: 0;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}

.case-study--coded .cs-stat:last-child {
  border-right: none;
}

.cs-stat__l,
.case-study--coded .cs-stat__label {
  display: block;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.cs-stat__v,
.case-study--coded .cs-stat__value {
  display: block;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--bone);
}

.case-study--coded .cs-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.case-study--coded .cs-main {
  padding: 72px 64px 96px;
  border-right: 1px solid var(--border);
}

.case-study--coded .cs-side {
  display: block;
  padding: 48px 40px;
  position: sticky;
  top: 96px;
  align-self: start;
}

.case-study--coded .cs-section {
  padding-bottom: 0;
  margin-bottom: 72px;
  border-bottom: 0;
}

.cs-section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--acid);
}

.cs-section__label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--acid);
}

.case-study--coded .cs-lead {
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
  max-width: none;
  margin-bottom: 20px;
}

.case-study--coded .cs-body-p {
  font-size: 16px;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 18px;
}

.case-study--coded .cs-list {
  display: block;
  margin: 24px 0;
  padding-left: 0;
}

.case-study--coded .cs-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border);
}

.case-study--coded .cs-list li::before {
  content: "→";
  top: 10px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: var(--font-m);
  font-size: 12px;
}

.case-study--coded .cs-modules {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}

.case-study--coded .cs-module {
  min-height: 0;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.case-study--coded .cs-module:first-child {
  border-top: 3px solid var(--acid);
}

.case-study--coded .cs-module__name {
  font-size: 14px;
  margin-bottom: 0;
  padding-top: 2px;
}

.case-study--coded .cs-module__desc {
  font-size: 14px;
  line-height: 1.65;
}

.case-study--coded .cs-outcome-card {
  padding: 32px 28px;
  margin-bottom: 16px;
  border-left: 1px solid var(--border);
  border-top: 3px solid var(--acid);
}

.case-study--coded .cs-outcome-card__label {
  color: var(--acid);
  margin-bottom: 16px;
}

.case-study--coded .cs-outcome-card__stat {
  font-size: 40px;
  color: var(--bone);
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.case-study--coded .cs-detail-card {
  padding: 24px 28px;
  margin-bottom: 16px;
}

.case-study--coded .cs-detail-row {
  padding: 10px 0;
}

.case-study--coded .cs-results {
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.case-study--coded .cs-result {
  min-height: 0;
  padding: 24px 20px;
}

.case-study--coded .cs-result__metric {
  font-size: 32px;
  color: var(--acid);
  margin-bottom: 6px;
}

.case-study--coded .cs-screen-full {
  margin: 40px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.case-study--coded .cs-screen-full img,
.case-study--coded .cs-screen-item img {
  display: block;
  width: 100%;
  height: auto;
}

.case-study--coded .cs-screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 40px 0;
}

.case-study--coded .cs-screen-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.case-study--coded .cs-screen-label {
  padding: 10px 14px 12px;
  border-top: 1px solid var(--border);
  background: #111;
}

.case-study--coded .cs-screen-caption {
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--steel);
  margin: 20px 0 4px;
  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;
}

.case-study--coded .cs-screen-placeholder {
  min-height: 260px;
  border-bottom: 0;
}

.case-study--coded .cs-next-bar {
  max-width: none;
  padding: 0;
  border-top: 1px solid var(--border);
}

.case-study--coded .cs-next-card {
  min-height: 0;
  padding: 40px 48px;
  background: var(--smoke);
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
}

.case-study--coded .cs-next-card:last-child {
  border-right: none;
}

.case-study--coded .cs-next-card:hover {
  background: var(--dim);
}

.case-study--coded .cs-next-card__dir {
  margin-bottom: 12px;
}

.case-study--coded .cs-next-card__title {
  font-size: 22px;
  letter-spacing: -.02em;
}

/* ================================================================
   SERVICES PAGE
================================================================ */
.service-deep { padding: var(--section-pad); }

.service-deep__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.service-deep__label .label { margin-bottom: 12px; }

.service-deep__label h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-deep__lead {
  font-family: var(--font-b);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--bone);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.service-deep__content p {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-deep__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.feature-num {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  padding-top: 4px;
}

.feature-item strong {
  font-family: var(--font-d);
  font-size: 16px;
  color: var(--bone);
  display: block;
  margin-bottom: 8px;
}

.feature-item p {
  margin: 0 !important;
}

.service-deep__projects { margin-top: 32px; }

.ref-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.service-deep__range { margin-top: 32px; }

.service-deep__price {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: var(--acid);
  margin: 8px 0 0 !important;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.grant-strip {
  background: var(--dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 64px;
}

.grant-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.grant-strip__inner h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--bone);
  margin: 12px 0 16px;
}

.grant-strip__inner p {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

.grant-strip__logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.grant-logo {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--bone);
  min-width: 152px;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}

.grant-logo span { color: var(--acid); margin-left: 6px; }

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.engage-card {
  background: var(--dim);
  border: 1px solid var(--border);
  padding: 40px 32px;
}

.engage-card__num {
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--acid);
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.engage-card h4 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 12px;
}

.engage-card p {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 20px;
}

.engage-card__range {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--acid);
  letter-spacing: .05em;
  margin: 0 !important;
}

/* ================================================================
   PROCESS / EMIA PAGE
================================================================ */
.emia-overview {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.emia-phases-strip {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 24px;
}

.emia-phase-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
}

.emia-phase-dot--acid { color: var(--acid); }

.emia-num {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  background: rgba(232,255,0,.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.emia-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 40px;
}

.emia-phase-block { padding: var(--section-pad); }

.emia-phase-block__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.emia-phase-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--acid);
  display: block;
  margin-bottom: 16px;
}

.emia-phase-block__sidebar h2 {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 12px;
}

.emia-phase-time {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: .08em;
}

.emia-phase-lead {
  font-family: var(--font-b);
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--bone);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.emia-phase-block__body p {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 20px;
}

.emia-deliverables { margin-top: 36px; }

.emia-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emia-list li {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.emia-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--acid);
  font-family: var(--font-m);
}

.emia-why { background: var(--dim); }

.emia-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.emia-why__num {
  font-family: var(--font-d);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  color: var(--acid);
  line-height: 1;
  margin-bottom: 16px;
}

.emia-why__stat p:not(.emia-why__num) {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-statement {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.about-statement__text h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-statement__text p {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-statement__numbers,
.about-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px;
  background: var(--dim);
  border: 1px solid var(--border);
}

.about-num { display: flex; flex-direction: column; gap: 6px; }
.about-num__val { font-family: var(--font-d); font-size: 36px; font-weight: 700; color: var(--acid); }
.about-num__label { font-family: var(--font-b); font-size: 13px; color: var(--steel); line-height: 1.5; }

.about-timeline { background: var(--dim); }

.timeline,
.timeline-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
}

.timeline-item,
.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child,
.timeline-row:last-child { border-bottom: none; }

.timeline-item__year,
.timeline-year {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--acid);
  letter-spacing: .05em;
  padding: 32px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
}

.timeline-item__content,
.timeline-content {
  padding: 32px;
}

.timeline-item__content h4,
.timeline-content h4 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 10px;
}

.timeline-item__content p,
.timeline-content p {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-timeline .section-header h2 {
  max-width: none;
  white-space: nowrap;
}

.about-principles {}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.principle-item {
  background: var(--dim);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.principle-num {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 16px;
}

.principle-item h4 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 12px;
}

.principle-item p {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

.about-corp { border-top: 1px solid var(--border); }

.about-corp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-corp__inner h3 {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 4px;
}

.about-corp__cta p {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section {
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 6px;
  background: var(--dim);
}

.tab-btn {
  flex: 1;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: var(--steel);
  cursor: pointer;
  border-radius: 4px;
  transition: all .2s;
}

.tab-btn.active {
  background: var(--acid);
  color: var(--void);
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }

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

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

.form-group label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
}

.req { color: var(--acid); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--bone);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--acid);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--steel); }

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dim); }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-status { font-family: var(--font-b); font-size: 14px; padding: 12px; border-radius: 4px; }
.form-status.success { background: rgba(0,230,118,.1); color: var(--green); border: 1px solid var(--green); }
.form-status.error { background: rgba(255,59,0,.1); color: var(--fire); border: 1px solid var(--fire); }

.btn-form { align-self: flex-start; }

.contact-info { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.contact-info__block {}

.contact-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 16px; }

.contact-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,255,0,.1);
  border: 1px solid var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  flex-shrink: 0;
}

.contact-step strong {
  font-family: var(--font-d);
  font-size: 15px;
  color: var(--bone);
  display: block;
  margin-bottom: 4px;
}

.contact-step p {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
}

.contact-email {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--acid);
  text-decoration: none;
}

.contact-email:hover { text-decoration: underline; }

.contact-fit-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-fit-list li {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--steel);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.contact-fit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--acid);
  font-family: var(--font-m);
  font-size: 11px;
}

.contact-fit-list--grey li::before { color: var(--steel); }

.grant-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ================================================================
   BLOG / ARCHIVE
================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.blog-card {
  background: var(--dim);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.blog-card:hover { border-color: var(--acid); }

.blog-card__thumb-link { display: block; overflow: hidden; }
.blog-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.blog-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }

.blog-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }

.blog-card__time {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: .06em;
  margin-left: auto;
}

.blog-card__title {
  font-family: var(--font-d);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--acid); }

.blog-card__excerpt {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.blog-card__date {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: .06em;
}

.blog-card__link {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--acid);
  text-decoration: none;
  letter-spacing: .05em;
}

.blog-card__link:hover { text-decoration: underline; }

.blog-index-section {
  padding: var(--section-pad);
}

.blog-index-section .container {
  max-width: var(--max-w);
}

.blog-filter-row {
  margin-bottom: 48px;
}

.blog-grid--standalone {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.blog-card--standalone {
  min-height: 258px;
  padding: 32px;
  gap: 16px;
}

.blog-card--standalone .blog-card__title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.blog-card--standalone .blog-card__title a {
  color: inherit;
}

.blog-card--standalone .blog-card__excerpt {
  margin-bottom: 0;
}

.blog-card--standalone .blog-card__meta {
  padding-top: 16px;
  margin-top: auto;
  margin-bottom: 0;
}

.blog-card--standalone .blog-card__read {
  color: var(--acid);
}

.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  font-family: var(--font-m);
  font-size: 12px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--steel);
  text-decoration: none;
  transition: all .2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--void);
}

/* ================================================================
   SINGLE BLOG POST
================================================================ */
.post-hero {
  padding: 152px 64px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.post-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px; }
.post-hero__time { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .06em; }
.post-hero__date { font-family: var(--font-m); font-size: 10px; color: var(--steel); letter-spacing: .06em; }

.post-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bone);
  max-width: 980px;
  margin-bottom: 24px;
}

.post-hero__dek {
  font-family: var(--font-b);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--steel);
  line-height: 1.7;
  max-width: 720px;
}

.post-cover { margin-bottom: 64px; }
.post-cover__img { width: 100%; border-radius: 4px; }

.post-content__inner { max-width: 720px; margin: 0 auto; }

.post-body {
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.85;
  color: #ccc;
}

.post-body h2 { font-family: var(--font-d); color: var(--bone); font-size: 28px; margin: 48px 0 16px; }
.post-body h3 { font-family: var(--font-d); color: var(--bone); font-size: 22px; margin: 36px 0 12px; }
.post-body p { margin-bottom: 24px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 24px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
  border-left: 3px solid var(--acid);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--dim);
  font-style: italic;
  color: var(--bone);
}
.post-body img { width: 100%; border-radius: 4px; margin: 32px 0; }
.post-body code {
  font-family: var(--font-m);
  font-size: 13px;
  background: var(--dim);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--acid);
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.post-share { display: flex; align-items: center; gap: 16px; }

.share-link {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--steel);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}

.share-link:hover { color: var(--acid); }

.related-posts { padding: var(--section-pad); border-top: 1px solid var(--border); }

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

.blog-card--sm .blog-card__title { font-size: 15px; }

/* ================================================================
   STANDALONE HTML SYNC
================================================================ */
.section-pad { padding: var(--section-pad); }

.pill {
  color: var(--steel);
  border: 1px solid var(--border);
}

.page-hero { padding: 100px 64px 72px; }

.page-hero h1 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--bone);
  margin: 20px 0 28px;
  max-width: 800px;
}

.page-hero__sub { font-size: 17px; }

.cta-band h2,
.cta-band__h {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--void);
  margin-bottom: 16px;
}

.cta-band p,
.cta-band__sub {
  font-size: 17px;
  color: rgba(0,0,0,.55);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-acid,
.btn--acid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  background: var(--acid);
  color: var(--void);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-acid:hover,
.btn--acid:hover {
  background: #d4eb00;
  color: var(--void);
  transform: translateY(-1px);
}

.btn-void {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  background: var(--void);
  color: var(--acid);
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-void:hover {
  background: #1a1a1a;
  color: var(--acid);
}

.work-card { overflow: hidden; }

.work-card__image {
  height: 220px;
  background: var(--smoke);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__placeholder,
.work-card__image-placeholder {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.work-card__desc,
.work-card__excerpt {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.work-card__outcome {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* ================================================================
   ADDITIONAL RESPONSIVE — NEW COMPONENTS
================================================================ */
@media (max-width: 1024px) {
  .service-deep__inner { grid-template-columns: 1fr; gap: 40px; }
  .emia-phase-block__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-statement { grid-template-columns: 1fr; gap: 48px; }
  .about-corp__inner { grid-template-columns: 1fr; gap: 48px; }
  .cs-content__inner { grid-template-columns: 1fr; }
  .cs-outcome { position: static; }
  .cs-layout { grid-template-columns: 1fr; gap: 40px; }
  .cs-side { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .grant-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .grant-strip__logos { flex-direction: row; flex-wrap: wrap; }
  .engage-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .emia-why__grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid--3 { grid-template-columns: 1fr; }
  .blog-grid--standalone { grid-template-columns: 1fr; }
  .timeline-item,
  .timeline-row { grid-template-columns: 120px 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 100px 24px 60px; }
  .work-grid { grid-template-columns: 1fr; }
  .timeline-item,
  .timeline-row { grid-template-columns: 1fr; }
  .timeline-item__year,
  .timeline-year { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 24px; }
  .timeline-item__content,
  .timeline-content { padding: 24px; }
  .emia-phases-strip { flex-direction: column; align-items: flex-start; }
  .emia-connector { display: none; }
  .cs-stats__grid { flex-direction: column; gap: 20px; }
  .cs-next__nav { flex-direction: column; }
  .case-study--coded .cs-hero { padding-bottom: 56px; }
  .cs-layout { padding-top: 0; padding-bottom: 56px; }
  .cs-modules,
  .cs-results,
  .cs-screen-grid,
  .cs-side,
  .cs-next-bar { grid-template-columns: 1fr; }
  .cs-section { padding-bottom: 40px; margin-bottom: 40px; }
  .cs-module,
  .cs-result,
  .cs-outcome-card,
  .cs-next-card { padding: 22px; }
  .cs-screen-placeholder { min-height: 150px; }
  .cs-next-card--right { align-items: flex-start; text-align: left; }
  .form-row--2 { grid-template-columns: 1fr; }
  .contact-tabs { flex-direction: column; }
  .post-footer { flex-direction: column; gap: 24px; align-items: flex-start; }
  .about-timeline .section-header h2 { white-space: normal; }
}

@media (max-width: 1024px) {
  .case-study--coded .cs-layout {
    grid-template-columns: 1fr;
  }

  .case-study--coded .cs-main {
    border-right: 0;
  }

  .case-study--coded .cs-side {
    position: static;
    padding: 0 64px 72px;
  }
}

@media (max-width: 768px) {
  .work-filter-section,
  .work-archive-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .work-grid--archive {
    grid-template-columns: 1fr;
  }

  .case-study--coded .cs-hero {
    padding: 96px 24px 56px;
  }

  .case-study--coded .cs-main {
    padding: 48px 24px 64px;
  }

  .case-study--coded .cs-side {
    padding: 0 24px 56px;
  }

  .case-study--coded .cs-module {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-study--coded .cs-screen-grid,
  .case-study--coded .cs-screen-grid--3,
  .case-study--coded .cs-results,
  .case-study--coded .cs-next-bar {
    grid-template-columns: 1fr;
  }

  .case-study--coded .cs-next-card {
    padding: 32px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .case-study--coded .cs-next-card--right {
    align-items: flex-start;
    text-align: left;
  }
}
