/* =============================================================================
   ABOUT PAGE — page-specific layout CSS
   All design tokens and component classes are in global.css.
   This file is layout-only: hero, acquisition cycle, build grid,
   values grid, AI grid, sister callout.
   ============================================================================= */


/* ── Hero ── */
.about-hero {
  background: linear-gradient(180deg, var(--bg-blue) 0%, var(--bg) 100%);
}

.about-hero-inner {
  max-width: 820px;
}

.about-hero-inner .sh-label {
  margin-bottom: var(--s-4);
}

.about-hero-inner h1 {
  font-size: var(--t-hero-page);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text);
  margin-bottom: var(--s-6);
}

.about-hero-sub {
  font-size: var(--t-lead);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  max-width: 720px;
  margin-bottom: var(--s-10);
}

.about-hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-hero-inner h1 { font-size: var(--t-3xl); }
  .about-hero-sub      { font-size: var(--t-body); }
}
@media (max-width: 480px) {
  .about-hero-inner h1 { font-size: var(--t-2xl); }
}


/* ── Acquisition cycle section ── */
.acq-section { background: var(--navy); }
.acq-section .sh-label { color: var(--on-dark-badge); }
.acq-section .sh-title { color: var(--on-dark); }
.acq-section .sh-sub   { color: var(--on-dark-sec); }

.acq-cycle {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  margin-bottom: var(--s-14);
  flex-wrap: wrap;
}

.acq-step {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}

.acq-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  font-size: var(--t-sm);
  font-weight: var(--w-xbold);
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
}

.acq-step h3 {
  font-size: var(--t-base);
  font-weight: var(--w-xbold);
  color: var(--on-dark);
  margin-bottom: var(--s-2);
  line-height: var(--lh-snug);
}

.acq-step p {
  font-size: var(--t-sm);
  color: var(--on-dark-sec);
  line-height: var(--lh-relaxed);
}

.acq-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.acq-arrow svg { width: 20px; height: 20px; }

/* Examples grid */
.acq-examples {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}

.acq-examples-label {
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--on-dark-head);
  margin-bottom: var(--s-5);
}

.acq-example-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.acq-example {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  flex-wrap: wrap;
}

.acq-example-name {
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  color: var(--on-dark);
  white-space: nowrap;
}

.acq-example-arrow {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}

.acq-example-buyer {
  font-size: var(--t-caption);
  color: var(--on-dark-sec);
  line-height: var(--lh-snug);
}

.acq-examples-note {
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  color: var(--on-dark-badge);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--s-5);
  margin: 0;
}

@media (max-width: 1024px) {
  .acq-example-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .acq-cycle   { flex-direction: column; }
  .acq-arrow   { padding-top: 0; transform: rotate(90deg); align-self: center; }
  .acq-example-grid { grid-template-columns: 1fr; }
}


/* ── How the product gets built grid ── */
.about-build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.about-build-card {
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color .18s, box-shadow .18s;
}
.about-build-card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
}

.about-build-card h3 {
  font-size: var(--t-card);
  font-weight: var(--w-xbold);
  color: var(--text);
  line-height: var(--lh-snug);
}

.about-build-card p {
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .about-build-grid { grid-template-columns: 1fr; }
}


/* ── Values grid ── */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.about-value-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-8);
  background: var(--bg-subtle);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-xl);
}

.about-value-card h3 {
  font-size: var(--t-card);
  font-weight: var(--w-xbold);
  color: var(--text);
  line-height: var(--lh-snug);
}

.about-value-sub {
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  color: var(--text-muted);
  margin-top: calc(-1 * var(--s-1));
}

.about-value-card > p:last-child {
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
}


/* ── AI grid ── */
.about-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.about-ai-card {
  border-radius: var(--r-xl);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.about-ai-card-now {
  background: var(--bg-subtle);
  border: 1px solid var(--border-sub);
}

.about-ai-card-next {
  background: var(--blue-soft);
  border: 1px solid var(--blue-soft2);
}

.about-ai-card-label {
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
}
.about-ai-card-next .about-ai-card-label { color: var(--blue); }

.about-ai-card h3 {
  font-size: var(--t-xl);
  font-weight: var(--w-xbold);
  color: var(--text);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
}

.about-ai-card p {
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
}

.about-ai-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.about-ai-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
}

.about-ai-list li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-ai-list li strong { color: var(--text); font-weight: var(--w-bold); }

.about-ai-honest {
  font-size: var(--t-sm) !important;
  font-weight: var(--w-semibold);
  color: var(--text-muted) !important;
  padding: var(--s-4);
  background: rgba(0,0,0,.04);
  border-radius: var(--r-md);
  border-left: 3px solid var(--border);
}

@media (max-width: 1024px) {
  .about-ai-grid { grid-template-columns: 1fr; }
}


/* ── DashboardFox sister callout ── */
.about-sister-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s-8);
  background: var(--bg-subtle);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-xl);
  padding: var(--s-10);
}

.about-sister-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-soft);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.about-sister-icon svg { width: 26px; height: 26px; }

.about-sister-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  flex: 1;
}

.about-sister-body h2 {
  font-size: var(--t-2xl);
  font-weight: var(--w-xbold);
  color: var(--text);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
}

.about-sister-body p {
  font-size: var(--t-body);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.about-sister-body p strong { color: var(--text); font-weight: var(--w-bold); }

@media (max-width: 768px) {
  .about-sister-card {
    flex-direction: column;
    gap: var(--s-5);
    padding: var(--s-7);
  }
  .about-sister-body h2 { font-size: var(--t-xl); }
}
