/* ── RESET ── */
.thl-about *, .thl-about *::before, .thl-about *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── VARIABLES ── */
.thl-about {
  --bg: #ffffff;
  --bg2: #f8f9fa;
  --bg3: #f1f3f5;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --green: #00aa55;
  --green-light: #e6f7ef;
  --text: #0f0f0f;
  --text2: #4b5563;
  --text3: #9ca3af;
  --mono: 'Share Tech Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Syne', sans-serif;
  --radius: 8px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 2rem;
}

/* ── SHARED ── */
.thl-about .thl-wrap { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.thl-about .thl-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.thl-about .thl-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.thl-about .thl-label::before { content: '//'; color: var(--text3); }
.thl-about h2.thl-h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

/* ── HERO ── */
.thl-about .thl-hero { padding: 5rem 2rem 4rem; max-width: 900px; margin: 0 auto; }
.thl-about .thl-hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.thl-about .thl-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.thl-about h1.thl-h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.thl-about h1.thl-h1 em { font-style: normal; color: var(--green); }
.thl-about .thl-hero-desc {
  color: var(--text2);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.25rem;
}
.thl-about .thl-terminal {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--green);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.78rem;
}
.thl-about .thl-terminal .thl-prompt { color: var(--green); }
.thl-about .thl-terminal .thl-cmd { color: var(--text2); }
.thl-about .thl-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--green);
  vertical-align: middle;
  margin-left: 3px;
  animation: thlBlink 1.1s step-end infinite;
}
@keyframes thlBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── MISSION ── */
.thl-about .thl-mission {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.thl-about .thl-mission p { color: var(--text2); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.thl-about .thl-stat-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.thl-about .thl-stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--green-light);
  border: 1px solid #c3e6d5;
  border-left: 3px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
}
.thl-about .thl-stat-num { font-family: var(--display); font-size: 1.7rem; font-weight: 800; color: var(--green); min-width: 70px; line-height: 1; }
.thl-about .thl-stat-label { font-family: var(--mono); font-size: 0.72rem; color: #2d7a54; letter-spacing: 0.05em; }

/* ── COVERAGE ── */
.thl-about .thl-coverage { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.thl-about .thl-cov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}
.thl-about .thl-cov-cell { background: #fff; padding: 1.6rem 1.4rem; transition: background 0.18s; }
.thl-about .thl-cov-cell:hover { background: var(--bg2); }
.thl-about .thl-cov-tag { font-family: var(--mono); font-size: 0.68rem; color: var(--green); letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.thl-about .thl-cov-cell h3 { font-family: var(--display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.thl-about .thl-cov-cell p { font-size: 0.8rem; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* ── STATS ── */
.thl-about .thl-stats { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.thl-about .thl-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.thl-about .thl-stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center; }
.thl-about .thl-stat-card .thl-big { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 0.35rem; }
.thl-about .thl-stat-card .thl-cap { font-family: var(--mono); font-size: 0.68rem; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── PLATFORMS ── */
.thl-about .thl-platforms { padding: 0 2rem 4rem; max-width: 900px; margin: 0 auto; }
.thl-about .thl-platform-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.thl-about .thl-platform-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.thl-about .thl-platform-card:hover { border-color: var(--green); box-shadow: 0 2px 8px rgba(0,170,85,0.1); }
.thl-about .thl-platform-icon { font-size: 1.2rem; width: 32px; text-align: center; }
.thl-about .thl-platform-name { font-family: var(--display); font-size: 0.85rem; font-weight: 700; color: var(--text); }
.thl-about .thl-platform-desc { font-size: 0.72rem; color: var(--text2); font-family: var(--mono); }

/* ── COLLABORATE ── */
.thl-about .thl-collab { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.thl-about .thl-collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.thl-about .thl-collab-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.thl-about .thl-collab-card:hover { border-color: var(--green); box-shadow: 0 2px 8px rgba(0,170,85,0.08); }
.thl-about .thl-collab-ico {
  font-size: 1.1rem;
  background: var(--green-light);
  border: 1px solid #c3e6d5;
  border-radius: var(--radius);
  padding: 0.45rem 0.55rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.thl-about .thl-collab-card h3 { font-family: var(--display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text); }
.thl-about .thl-collab-card p { font-size: 0.8rem; color: var(--text2); line-height: 1.55; font-weight: 300; }

/* ── CTA ── */
.thl-about .thl-cta { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.thl-about .thl-cta-inner {
  background: var(--green);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.thl-about .thl-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.thl-about .thl-cta-inner .thl-label { color: #a8f0ce; justify-content: center; }
.thl-about .thl-cta-inner .thl-label::before { color: rgba(255,255,255,0.4); }
.thl-about .thl-cta-inner h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}
.thl-about .thl-cta-inner p { color: rgba(255,255,255,0.82); font-weight: 300; max-width: 400px; margin: 0.75rem auto 2rem; }
.thl-about .thl-email-row { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.thl-about .thl-email-row input {
  flex: 1;
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.8rem;
  outline: none;
}
.thl-about .thl-email-row input::placeholder { color: var(--text3); }
.thl-about .thl-btn {
  background: #0f0f0f;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.3rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.thl-about .thl-btn:hover { opacity: 0.85; }
.thl-about .thl-cta-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.thl-about .thl-cta-meta span::before { content: '✓ '; color: #a8f0ce; }
.thl-about .thl-cta-contact { margin-top: 1.5rem; font-family: var(--mono); font-size: 0.72rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.thl-about .thl-cta-contact a { color: #fff; text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .thl-about .thl-mission { grid-template-columns: 1fr; gap: 2rem; }
  .thl-about .thl-cov-grid { grid-template-columns: 1fr 1fr; }
  .thl-about .thl-stats-grid { grid-template-columns: 1fr 1fr; }
  .thl-about .thl-platform-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .thl-about .thl-cov-grid { grid-template-columns: 1fr; }
  .thl-about .thl-collab-grid { grid-template-columns: 1fr; }
  .thl-about .thl-platform-row { grid-template-columns: 1fr; }
  .thl-about .thl-email-row { flex-direction: column; }
  .thl-about h1.thl-h1 { font-size: 2.2rem; }
}
