/* ================================================
   ZLT Co. — about.css
   Styles specific to about.html only.
   Requires: style.css (global) loaded first.
   Font: Inter via Google Fonts (in style.css comment)
================================================ */

/* ========================
   ABOUT HERO
======================== */
.about-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  position: relative;
}

.about-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: white;
  margin: 16px 0 28px;
}
.about-hero-title .accent { color: var(--red); }

.about-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.about-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stat bar */
.about-stat-bar {
  display: flex;
  margin-top: 72px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  overflow: hidden;
  max-width: 620px;
  width: 100%;
}
.about-stat {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  display: block;
  font-weight: 800;
  font-size: 1.7rem;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}
.about-stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .about-stat-bar { flex-direction: column; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .about-stat:last-child { border-bottom: none; }
}

/* ========================
   FOUNDER SECTION
======================== */
.about-founder-section {
  padding: 110px 24px;
}
.about-founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.about-founder-text h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  color: white;
  margin: 16px 0 22px;
  line-height: 1.1;
}
.about-founder-text p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-founder-text p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Founder card */
.about-founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.about-founder-card:hover {
  border-color: rgba(255,30,86,0.3);
  transform: translateY(-4px);
}
.founder-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,30,86,0.15), transparent 70%);
  pointer-events: none;
}

.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #c8102e);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 2rem; color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(255,30,86,0.35);
  letter-spacing: -0.02em;
}

.founder-card-body h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.founder-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}
.fact-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.founder-card-badge {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========================
   WHAT WE BUILD — PILLARS
======================== */
.about-pillars-section {
  padding: 110px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-pillars-inner { max-width: 1100px; margin: 0 auto; }
.about-pillars-header { margin-bottom: 56px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover {
  border-color: rgba(255,30,86,0.3);
  background: rgba(255,30,86,0.025);
  transform: translateY(-5px);
}
.pillar-card:hover::after { opacity: 1; }

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.pillar-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.pillar-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
}

@media (max-width: 780px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ========================
   PRIVACY COMMITMENT
======================== */
.about-privacy-section {
  padding: 110px 24px;
  background: linear-gradient(135deg, rgba(255,30,86,0.06) 0%, transparent 55%);
  border-top: 1px solid rgba(255,30,86,0.12);
}
.about-privacy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Shield badge */
.privacy-badge-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.privacy-shield {
  display: flex;
  align-items: center;
  gap: 18px;
}
.shield-svg {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}
.shield-label {
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
  letter-spacing: -0.03em;
}

.privacy-claims {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.privacy-claim {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
  transition: border-color 0.25s, background 0.25s;
}
.privacy-claim:hover {
  border-color: rgba(255,30,86,0.25);
  background: rgba(255,30,86,0.04);
}
.claim-check {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,30,86,0.14);
  border: 1px solid rgba(255,30,86,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Privacy text */
.privacy-text-col h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.04em;
  color: white;
  line-height: 1.1;
  margin: 14px 0 22px;
}
.privacy-text-col h2 .accent { color: var(--red); }
.privacy-text-col p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .about-privacy-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ========================
   VALUES
======================== */
.about-values-section {
  padding: 110px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.about-values-inner { max-width: 1100px; margin: 0 auto; }
.about-values-header { margin-bottom: 56px; }

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-block:hover {
  border-color: rgba(255,30,86,0.28);
  transform: translateY(-4px);
}
.value-number {
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(255,30,86,0.16);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.value-block h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 9px;
}
.value-block p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 900px) {
  .values-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-row { grid-template-columns: 1fr; }
}
