/* =========================================================
   LinSync — About page styles
   Loaded after main.css (and rtl.css on the Arabic page).
   Reuses the shared design tokens from main.css.
   ========================================================= */

/* ---------- Hero ---------- */
.about-hero {
  max-width: 940px;
  margin: 0 auto;
  padding: 180px 32px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-hero .section-tag { margin-bottom: 26px; }
.about-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.about-hero .lede {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---------- Story prose ---------- */
.about-story { max-width: 760px; margin: 0 auto; }
.about-story p {
  font-size: 1.12rem;
  line-height: 1.95;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--text); font-weight: 600; }

/* ---------- Name reveal (Lin · Sync) ---------- */
.name-reveal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto 32px;
}
.name-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.name-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 24px 50px -30px rgba(224, 32, 44, 0.4);
}
.name-card .syllable {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.name-card .tag {
  font-family: 'JetBrains Mono', 'Tajawal', monospace;
  font-size: .78rem; color: var(--text-faint);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
}
.name-card p { color: var(--text-dim); font-size: 1rem; line-height: 1.6; }
.name-caption {
  text-align: center; max-width: 660px; margin: 0 auto;
  color: var(--text-dim); font-size: 1.08rem; line-height: 1.7;
}

/* ---------- Pull quote ---------- */
.about-quote {
  max-width: 900px; margin: 44px auto 0;
  text-align: center; padding: 0 20px;
}
.about-quote .qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem; line-height: .7; color: var(--red); opacity: .55;
  margin-bottom: 6px;
}
.about-quote blockquote {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500; line-height: 1.5; letter-spacing: -0.01em; color: var(--text);
}
.about-quote blockquote .gradient-text { font-weight: 600; }

/* ---------- What we're NOT ---------- */
.not-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.not-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.not-card:hover { border-color: rgba(224, 32, 44, 0.4); transform: translateY(-3px); }
.not-card .x {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(224, 32, 44, 0.35);
  background: var(--gradient-soft);
  color: var(--red-bright); font-size: 1.15rem; margin-bottom: 18px;
}
.not-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.not-card p { color: var(--text-dim); font-size: .95rem; line-height: 1.55; }

/* ---------- Values caption ---------- */
.values-caption {
  text-align: center; max-width: 680px; margin: 36px auto 0;
  color: var(--text-dim); font-size: 1.08rem; line-height: 1.7;
}

/* ---------- Proof band ---------- */
.proof-band {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(224, 32, 44, 0.1), rgba(255, 107, 117, 0.02) 60%, var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.proof-band::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(90px); opacity: .35; pointer-events: none;
}
.proof-band h2 {
  position: relative; z-index: 1;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.proof-band p {
  position: relative; z-index: 1;
  color: var(--text-dim); font-size: 1.12rem; max-width: 740px; margin: 0 auto; line-height: 1.75;
}

/* ---------- Closing CTA ---------- */
.about-cta { text-align: center; padding-bottom: 120px; }
.about-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.about-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .name-reveal { grid-template-columns: 1fr; }
  .not-grid { grid-template-columns: 1fr; }
  .about-hero { padding-top: 140px; }
}
