/* Ed Broadbent Consulting — Design System
   Palette: Primed Highland (light theme)
   Source tokens: apps/evolved-kingdoms/src/theme/tokens.js → lightTheme
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Rajdhani:wght@300;400;500;600;700&family=DM+Mono:ital,wght@0,300;0,400;1,300&display=swap');

/* ── Tokens ── */
:root {
  /* Backgrounds */
  --bg-0:      #FAFBFD;
  --bg-1:      #F0F2F7;
  --bg-2:      #FFFFFF;
  --bg-card:   rgba(255, 255, 255, 0.85);

  /* Text */
  --text-0:    #1A1D2E;
  --text-1:    #4A5068;
  --text-2:    #8B92A8;

  /* Kingdom palette */
  --monera:    #FFB03F;   /* amber — foundation */
  --protista:  #D82253;   /* magenta — action */
  --fungi:     #472675;   /* purple — networks/innovation */
  --plantae:   #3CB3A5;   /* teal — growth */
  --animalia:  #0081BA;   /* blue — connection */

  /* Glows */
  --glow-monera:    rgba(255, 176, 63, 0.15);
  --glow-protista:  rgba(216, 34, 83, 0.12);
  --glow-fungi:     rgba(71, 38, 117, 0.12);
  --glow-plantae:   rgba(60, 179, 165, 0.15);
  --glow-animalia:  rgba(0, 129, 186, 0.15);

  /* Semantic */
  --accent:       var(--animalia);
  --accent-glow:  var(--glow-animalia);
  --success:      var(--plantae);
  --warning:      var(--monera);
  --error:        var(--protista);

  /* Borders & shadows */
  --border:        #E2E6EF;
  --border-active: #CBD0DE;
  --shadow-sm:  0 1px 3px rgba(26, 29, 46, 0.06);
  --shadow-md:  0 4px 12px rgba(26, 29, 46, 0.08);
  --shadow-lg:  0 8px 24px rgba(26, 29, 46, 0.12);

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --max-w: 1100px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  color: var(--text-1);
  background: var(--bg-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--plantae); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1.2;
}

h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: var(--sp-sm); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.display {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.mono {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-2);
  margin-bottom: var(--sp-xs);
}

p + p { margin-top: var(--sp-sm); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section { padding: var(--sp-2xl) 0; }
.section--alt { background: var(--bg-1); }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-0);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-brand-mark {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--animalia), var(--plantae));
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
}

.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--glow-animalia);
  color: var(--animalia);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  color: white;
  background: var(--animalia);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-0);
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-sm);
    z-index: 99;
  }

  .nav-links.open a {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: var(--sp-2xl) var(--sp-md) var(--sp-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--animalia), var(--plantae), var(--fungi));
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: start;
}

.hero-content { max-width: 680px; }

.hero-label {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--animalia);
  margin-bottom: var(--sp-sm);
}

.hero-title {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text-0);
  margin-bottom: var(--sp-md);
}

.hero-title em {
  font-style: normal;
  color: var(--animalia);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-1);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: var(--sp-lg);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding-top: 0.5rem;
}

.hero-stat {
  text-align: right;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.hero-stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-0);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-stat { text-align: left; min-width: auto; flex: 1; }
}

/* ── Stripe (trust bar) ── */
.stripe {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-sm) 0;
}

.stripe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.stripe-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-2);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stripe-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Section headers ── */
.section-head {
  margin-bottom: var(--sp-lg);
}

.section-head h2 { margin-bottom: 0.5rem; }
.section-head p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 560px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-active);
}

.service-card[data-tier="presence"]   { border-top: 3px solid var(--animalia); }
.service-card[data-tier="system"]     { border-top: 3px solid var(--plantae); }
.service-card[data-tier="platform"]   { border-top: 3px solid var(--fungi); }
.service-card[data-tier="automation"] { border-top: 3px solid var(--monera); }

.service-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-0);
}

.service-tagline {
  font-size: 0.88rem;
  color: var(--text-2);
  font-style: italic;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-1);
  line-height: 1.6;
  flex: 1;
}

.service-price {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-0);
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price span {
  color: var(--text-2);
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Get Started callout ── */
.get-started-callout {
  margin-top: var(--sp-xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--animalia);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  box-shadow: var(--shadow-sm);
}

.get-started-text { flex: 1; }

.get-started-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.4rem;
}

.get-started-sub {
  font-size: 0.9rem;
  color: var(--text-1);
  line-height: 1.6;
}

.get-started-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  text-align: center;
}

.get-started-price {
  font-family: 'DM Mono', monospace;
  font-size: 1.1rem;
  color: var(--text-0);
}

.get-started-price strong {
  font-size: 1.4rem;
  color: var(--animalia);
}

.get-started-note {
  font-size: 0.72rem;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .get-started-callout {
    flex-direction: column;
    padding: var(--sp-lg);
    gap: var(--sp-md);
  }
  .get-started-meta { align-items: flex-start; text-align: left; }
}

/* ── Portfolio ── */
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.project-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: row;
  gap: var(--sp-lg);
  align-items: start;
}

.project-content { flex: 1; min-width: 0; }

.project-card:hover { box-shadow: var(--shadow-md); }

.project-card[data-kingdom="animalia"] { border-left: 4px solid var(--animalia); }
.project-card[data-kingdom="plantae"]  { border-left: 4px solid var(--plantae); }
.project-card[data-kingdom="fungi"]    { border-left: 4px solid var(--fungi); }
.project-card[data-kingdom="protista"] { border-left: 4px solid var(--protista); }

.project-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xs);
  flex-wrap: wrap;
}

.project-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid currentColor;
}

.project-tag.animalia { color: var(--animalia); border-color: var(--animalia); background: var(--glow-animalia); }
.project-tag.plantae  { color: var(--plantae);  border-color: var(--plantae);  background: var(--glow-plantae);  }
.project-tag.fungi    { color: var(--fungi);    border-color: var(--fungi);    background: var(--glow-fungi);    }
.project-tag.protista { color: var(--protista); border-color: var(--protista); background: var(--glow-protista); }

.project-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: var(--sp-xs);
}

.project-client-type {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: var(--sp-sm);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.project-desc {
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}

.project-built {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.built-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-1);
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  align-self: flex-start;
}

.project-link:hover {
  border-color: var(--animalia);
  color: var(--animalia);
  background: var(--glow-animalia);
}

.project-link::after { content: '↗'; font-size: 0.8rem; }

.project-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: stretch;
  flex-shrink: 0;
  width: 220px;
}

/* ── Project Visual Mockups ── */
.project-visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 220px;
  box-shadow: var(--shadow-sm);
}

.pv-bar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.pv-url {
  flex: 1;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-2);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-body {
  padding: 10px 12px 12px;
}

.pv-site-label {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-0);
  margin-bottom: 2px;
}

.pv-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-2);
  margin-bottom: 8px;
}

/* Emoji Cafe */
.pv-rows { display: flex; flex-direction: column; gap: 5px; }
.pv-row-item { display: flex; align-items: center; gap: 6px; }
.pv-item-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pv-item-bar { height: 7px; border-radius: 3px; background: var(--bg-1); }
.pv-item-price { width: 20px; height: 7px; border-radius: 3px; background: var(--border); margin-left: auto; }
.w70 { width: 70%; } .w55 { width: 55%; } .w65 { width: 65%; } .w45 { width: 45%; }

/* Samara */
.pv-cards { display: flex; gap: 6px; }
.pv-card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 7px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.5;
}
.pv-card small { font-size: 0.52rem; color: var(--text-2); }

/* Primed */
.pv-stat-row { display: flex; gap: 5px; margin-top: 4px; }
.pv-stat-box {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 4px;
  text-align: center;
}
.pv-stat-num { font-family: 'DM Mono', monospace; font-size: 0.7rem; font-weight: 400; color: var(--text-0); }
.pv-stat-lbl { font-size: 0.48rem; color: var(--text-2); margin-top: 1px; }

/* NADA */
.pv-chart { margin-top: 6px; }
.pv-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 45px; }
.pv-bar-item { flex: 1; border-radius: 2px 2px 0 0; opacity: 0.85; }

@media (max-width: 768px) {
  .project-card { flex-direction: column; }
  .project-aside { width: 100%; flex-direction: row; align-items: flex-start; }
  .project-visual { width: 160px; flex-shrink: 0; }
}

@media (max-width: 480px) {
  .project-aside { flex-direction: column; }
  .project-visual { width: 100%; }
}

/* ── Professional Highlights ── */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.highlight-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.highlight-org-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

.highlight-org-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.nccred-badge {
  background: var(--glow-protista);
  color: var(--protista);
  border: 1px solid var(--protista);
}

.everymind-badge {
  background: var(--glow-plantae);
  color: var(--plantae);
  border: 1px solid var(--plantae);
}

.highlight-duration {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-2);
  font-weight: 300;
}

.highlight-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1.35;
}

.highlight-desc {
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.65;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.highlight-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--animalia);
  margin-top: auto;
  padding-top: var(--sp-xs);
}

.highlights-callout {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fungi);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
}

.highlights-callout p {
  font-size: 0.97rem;
  color: var(--text-1);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ── btn--sm ── */
.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* ── Process / How I work ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glow-animalia);
  border: 2px solid var(--animalia);
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--animalia);
  margin-bottom: var(--sp-xs);
  flex-shrink: 0;
}

.process-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-0);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.about-text {
  font-size: 1rem;
  color: var(--text-1);
  line-height: 1.75;
}

.about-text p + p { margin-top: var(--sp-sm); }

.about-links {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  flex-wrap: wrap;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.credential-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
}

.credential-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.25rem;
}

.credential-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--sp-sm); }

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.7;
}

.contact-details {
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.contact-detail {
  font-size: 0.88rem;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.contact-detail a { color: var(--animalia); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-0);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-0);
  color: var(--text-0);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--animalia);
  box-shadow: 0 0 0 3px var(--glow-animalia);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: var(--sp-xs);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-lg);
}

.form-success h3 { color: var(--success); margin-bottom: var(--sp-xs); }
.form-success p { font-size: 0.9rem; color: var(--text-2); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--animalia);
  color: white;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-0);
}

.btn--outline:hover {
  border-color: var(--animalia);
  color: var(--animalia);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Footer ── */
.site-footer {
  background: var(--text-0);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-lg);
}

.footer-brand {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--sp-xs);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--sp-xs);
}

.footer-col ul { list-style: none; }

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 2.1;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: var(--max-w);
  margin: var(--sp-lg) auto 0;
  padding: var(--sp-sm) var(--sp-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: column; gap: var(--sp-xs); text-align: center; }
}

/* ── Offer Card ── */
.offer-card {
  border: 2px solid var(--animalia);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--sp-lg);
  box-shadow: var(--shadow-md);
}

.offer-card-body {
  display: grid;
  grid-template-columns: 1fr 300px;
}

.offer-scope {
  padding: var(--sp-lg);
  border-right: 1px solid var(--border);
}

.offer-scope-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--sp-sm);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.offer-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-1);
}

.offer-list li::before {
  content: "✓";
  color: var(--animalia);
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.offer-delivery {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.offer-price-panel {
  padding: var(--sp-lg);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.offer-price-from {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.offer-price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--animalia);
  line-height: 1;
  font-family: 'DM Mono', monospace;
}

.offer-price-gst {
  font-size: 0.78rem;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  margin-top: -0.3rem;
}

.offer-price-note {
  font-size: 0.85rem;
  color: var(--text-1);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-sm);
}

.offer-cta-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-2);
  text-align: center;
  margin-top: -0.5rem;
}

.offer-example {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-sm);
  margin-top: auto;
}

.offer-example strong {
  color: var(--text-1);
  display: block;
  margin-bottom: 0.25rem;
}

.offer-example-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--animalia);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
}

@media (max-width: 768px) {
  .offer-card-body { grid-template-columns: 1fr; }
  .offer-scope { border-right: none; border-bottom: 1px solid var(--border); }
  .offer-price-panel { border-top: none; }
}

/* ── Proof Grid (Portfolio) ── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.proof-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}

.proof-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.proof-visual {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  height: 130px;
  overflow: hidden;
}

.proof-visual .pv-bar {
  background: #E9EBF0;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 22px;
}

.proof-visual .pv-body {
  padding: 10px 14px;
}

.proof-body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.proof-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.proof-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-0);
}

.proof-client {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.proof-points li {
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.4;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.proof-points li::before {
  content: "·";
  color: var(--animalia);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.proof-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--animalia);
  margin-top: auto;
  padding-top: 0.5rem;
  display: block;
  border-top: 1px solid var(--border);
}

.proof-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  gap: var(--sp-md);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Process Flow ── */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-flow .process-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--sp-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-node-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--animalia);
  letter-spacing: 0.03em;
}

.process-connector {
  display: flex;
  align-items: flex-start;
  padding: 0 0.4rem;
  padding-top: 1.6rem;
  flex-shrink: 0;
}

.process-arrow {
  color: var(--border-active);
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .process-flow { flex-direction: column; gap: 0; }
  .process-flow .process-node { padding: var(--sp-sm) var(--sp-md); }
  .process-connector { padding: 0.25rem var(--sp-md); padding-top: 0.25rem; }
  .process-arrow { transform: rotate(90deg); display: block; }
}

/* ── Credential Stack (About) ── */
.cred-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.cred-pill {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: var(--shadow-sm);
}

.cred-pill-head {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-0);
  margin-bottom: 0.2rem;
}

.cred-pill p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}
