/* ============================================================
   SMSReady About Page CSS
   ============================================================ */

/* --- About Hero --- */
.about-hero {
  padding: 96px 0 72px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 24px;
}

.about-hero .sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* --- Origin Story --- */
.origin-section {
  padding: 96px 0;
  background-color: var(--bg-primary);
}

.origin-body {
  max-width: 760px;
}

.origin-body h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 8px 0 32px;
  line-height: 1.2;
}

.origin-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.origin-body p:last-child {
  margin-bottom: 0;
}

/* --- What We Are --- */
.what-we-are {
  padding: 96px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

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

.what-left h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 8px 0 24px;
  line-height: 1.2;
}

.what-left p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.what-right h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.serve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serve-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.serve-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.serve-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.serve-item p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- About Contact CTA --- */
.about-contact {
  padding: 96px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.about-contact h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-contact p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.about-email-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}

.about-email-link:hover {
  color: var(--accent-dim);
}
