/* ─── PHILOSOPHY / DIAGNOSE ─── */
.theses {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.theses-inner { max-width: 1100px; margin: 0 auto; }

.theses-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}

.theses-intro { color: var(--text-mid); font-size: 1rem; line-height: 1.9; }

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

.thesis-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.thesis-item:nth-child(2n)      { border-right: none; }
.thesis-item:nth-last-child(-n+2) { border-bottom: none; }
.thesis-item:hover               { background: var(--bg-2); }

.thesis-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  opacity: 0.65;
}

.thesis-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
}

.thesis-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.65;
}

/* ─── MODEL ─── */
.model { background: var(--bg-2); }

.model-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.model-cards { display: flex; flex-direction: column; gap: 1rem; }

.model-card { padding: 2rem; border: 1px solid var(--border); }
.model-card.service { background: var(--bg); }
.model-card.asset   { background: var(--accent-dim); border-color: rgba(212,92,58,0.3); }

.model-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.model-card.asset .model-card-label { color: var(--accent); }

.model-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.model-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.model-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  opacity: 0.45;
}

.model-text { font-size: 1rem; color: var(--text-mid); line-height: 1.9; }
.model-text p { margin-bottom: 1.5rem; }

.model-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.model-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.model-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 22ch;
}

/* ─── FOR WHO ─── */
.forwho { background: var(--bg); border-top: 1px solid var(--border); }

.forwho-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.checklist { display: flex; flex-direction: column; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.check-item:first-child { border-top: 1px solid var(--border); }

.check-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
}

.check-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

.check-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

/* ─── QUOTE ─── */
.quote-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 4rem;
}

.quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 2rem;
}

.big-quote em { color: var(--accent); font-style: normal; }

.quote-attr {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── ABOUT ─── */
.about { background: var(--bg-2); border-top: 1px solid var(--border); }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  display: block;
  filter: contrast(1.05) brightness(0.93);
  border: 1px solid var(--border);
}

.about-img-label {
  position: absolute;
  bottom: -1px; left: -1px; right: -1px;
  padding: 0.75rem 1.25rem;
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.about-body {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-fact-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── LEAD MAGNET ─── */
.lead-magnet { background: var(--bg-3); border-top: 1px solid var(--border); }
.lead-magnet-inner { max-width: 1100px; margin: 0 auto; }

.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.audit-visual {
  position: relative;
  padding: 3rem;
  background: var(--bg);
  border: 1px solid var(--border);
}

.audit-visual::before {
  content: 'DEPENDENCY AUDIT';
  position: absolute;
  top: -0.7rem; left: 2rem;
  background: var(--bg-2);
  padding: 0 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.audit-sections { display: flex; flex-direction: column; gap: 1rem; }

.audit-section-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: all 0.2s;
}

.audit-section-item:hover {
  border-color: rgba(212,92,58,0.3);
  background: var(--accent-dim);
}

.audit-section-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--accent);
  opacity: 0.6;
  width: 1.5rem;
  flex-shrink: 0;
}

.audit-section-name { font-size: 0.85rem; color: var(--text-mid); flex: 1; }

.audit-section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(212,92,58,0.22);
  color: var(--accent);
  opacity: 0.7;
  text-transform: uppercase;
  white-space: nowrap;
}

.audit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ─── INLINE AUDIT CTA ─── */
.audit-cta-inline {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.audit-cta-inline p {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  max-width: 44ch;
}
