/* ============================================================
   AyE Lab · Sobre (About) page
   Builds on homepage/styles.css tokens + components.
   ============================================================ */

.about-page { padding-top: clamp(92px, 13vw, 140px); padding-bottom: clamp(48px, 7vw, 84px); position: relative; overflow: hidden; }
.about-wrap { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }

/* ── Hero banner ───────────────────────────────────────── */
.ab-hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2A1E68 0%, #4334C8 52%, #593FE0 100%);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.ab-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 70% at 85% 0%, rgba(154,107,255,.5), transparent 60%), radial-gradient(50% 60% at 5% 100%, rgba(30,203,225,.3), transparent 60%); pointer-events: none; }
.ab-hero > * { position: relative; z-index: 1; }
.ab-hero-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 30px); }
.ab-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 700; font-size: .78rem; letter-spacing: .02em;
  color: rgba(255,255,255,.82); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22); border-radius: 100px; padding: 7px 15px;
  transition: background .2s, transform .2s;
}
.ab-back:hover { background: rgba(255,255,255,.2); transform: translateX(-2px); color: #fff; }
.ab-hero-logo { display: flex; align-items: center; gap: 10px; }
.ab-hero-logo img { height: 34px; border-radius: 8px; background: rgba(255,255,255,.95); padding: 2px; }
.ab-hero-logo span { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: rgba(255,255,255,.95); }

.ab-hero-inner { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 32px); align-items: center; }
.ab-photo { width: 100%; max-width: 230px; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,.2); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.ab-photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-eyebrow { font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 14px; }
.ab-title { font-family: var(--f-head); font-weight: 900; font-size: clamp(1.9rem, 4.6vw, 2.9rem); line-height: 1.06; letter-spacing: -.03em; color: #fff; margin-bottom: 18px; }
.ab-title .hi { color: var(--yellow); }
.ab-q { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255,255,255,.9); line-height: 1.5; padding-left: 16px; border-left: 3px solid var(--yellow); margin-bottom: 16px; }
.ab-promise { font-size: .95rem; color: rgba(255,255,255,.74); line-height: 1.7; }
.ab-promise strong { color: #fff; font-weight: 700; }

/* ── Section label (reuse eyebrow look) ────────────────── */
.ab-label { margin-top: clamp(44px, 6vw, 60px); margin-bottom: clamp(20px, 3vw, 28px); }

/* ── Credentials grid ──────────────────────────────────── */
.creds { display: grid; grid-template-columns: 1fr; gap: 12px; }
.cred { display: flex; align-items: flex-start; gap: 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 20px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; }
.cred:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.cred .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--surface-2); color: var(--violet); }
.cred:nth-child(2) .ic { color: var(--gold-deep); }
.cred:nth-child(3) .ic { color: var(--coral); }
.cred:nth-child(4) .ic { color: var(--teal); }
.cred .ic svg { width: 23px; height: 23px; }
.cred b { display: block; font-family: var(--f-head); font-weight: 900; font-size: 1.08rem; color: var(--ink); letter-spacing: -.015em; margin-bottom: 5px; }
.cred b > span { font: inherit; color: inherit; letter-spacing: inherit; }
.cred p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

/* ── Prose ─────────────────────────────────────────────── */
.ab-prose p { font-size: 1.04rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 16px; text-wrap: pretty; }
.ab-prose p strong { color: var(--ink); font-weight: 700; }
.ab-prose p:last-child { margin-bottom: 0; }

.pull {
  font-family: var(--f-quote); font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem); color: var(--violet); line-height: 1.4;
  padding: clamp(22px,3vw,28px) clamp(24px,3.5vw,32px); margin: clamp(26px,4vw,34px) 0;
  background: linear-gradient(135deg, rgba(89,63,224,.07), rgba(30,203,225,.06));
  border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm); text-wrap: pretty;
}
.pull--big {
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  padding: clamp(28px,4vw,38px) clamp(28px,4vw,40px);
  text-align: center;
  border-left: none;
  border-top: 4px solid var(--violet);
  border-radius: var(--radius);
}

/* ── Story callouts (rebuild) ──────────────────────────── */
.pillars-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin: clamp(20px,3vw,30px) 0;
}
@media (min-width: 720px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.story-pillar{
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px,4vw,38px) clamp(22px,3vw,28px);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.story-pillar::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 3px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.story-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.story-pillar:hover::before { transform: scaleX(1); }
.story-pillar-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(89,63,224,.14), rgba(154,107,255,.08));
  border-radius: 18px;
  margin: 0 auto 18px;
  color: var(--violet);
  box-shadow: 0 8px 24px -8px rgba(89,63,224,.30);
}
.story-pillar:nth-child(2) .story-pillar-ic {
  color: var(--teal);
  background: linear-gradient(135deg, rgba(30,203,225,.16), rgba(30,203,225,.06));
  box-shadow: 0 8px 24px -8px rgba(30,203,225,.35);
}
.story-pillar:nth-child(3) .story-pillar-ic {
  color: var(--coral);
  background: linear-gradient(135deg, rgba(247,37,133,.14), rgba(230,168,0,.08));
  box-shadow: 0 8px 24px -8px rgba(247,37,133,.30);
}
.story-pillar-ic aye-icon { color: inherit; }
.story-pillar-ttl {
  font-family: var(--f-head); font-weight: 900; font-size: 1.25rem;
  letter-spacing: -.02em; color: var(--ink);
  margin: 0 0 10px; line-height: 1.2;
}
.story-pillar-desc { font-size: .95rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.highlight-box {
  background: #FAFAFA;
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(22px,3vw,28px) clamp(24px,3.5vw,30px);
  margin: clamp(26px,4vw,32px) 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink); line-height: 1.65; font-weight: 500;
  box-shadow: var(--shadow-sm); text-wrap: pretty;
}

.verbs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: clamp(20px,3vw,28px) 0;
}
@media (max-width: 480px) { .verbs-grid { grid-template-columns: 1fr; } }
.verb {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.verb:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.verb-ic {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(89,63,224,.10), rgba(30,203,225,.06));
  border-radius: 12px; color: var(--violet);
}
.verb-ic aye-icon { color: inherit; }
.verb:nth-child(2) .verb-ic { color: var(--teal); background: linear-gradient(135deg, rgba(30,203,225,.14), rgba(30,203,225,.06)); }
.verb:nth-child(3) .verb-ic { color: var(--coral); background: linear-gradient(135deg, rgba(247,37,133,.12), rgba(230,168,0,.08)); }
.verb:nth-child(4) .verb-ic { color: var(--gold-deep); background: linear-gradient(135deg, rgba(230,168,0,.14), rgba(89,63,224,.06)); }
.verb-ttl {
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  letter-spacing: -.01em; color: var(--ink); margin: 0; line-height: 1.3;
}

.signature {
  color: var(--violet); font-weight: 800;
  background: linear-gradient(180deg, transparent 60%, rgba(89,63,224,.12) 60%);
  padding: 0 .15em;
}

/* ── Philosophy intro + principles ─────────────────────── */
.philo-intro { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.15rem, 2.3vw, 1.45rem); color: var(--aurora); line-height: 1.5; margin-bottom: clamp(24px,3.5vw,30px); padding-left: 16px; border-left: 3px solid var(--gold); text-wrap: pretty; }
.philo-intro strong { color: var(--violet); font-weight: 700; }

.principles { display: grid; grid-template-columns: 1fr; gap: 12px; }
.principle { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,3vw,28px); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; }
.principle::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.principle:hover::after { transform: scaleX(1); }
.principle .pn { font-family: var(--f-head); font-weight: 900; font-size: 1.7rem; line-height: 1; letter-spacing: -.02em; color: var(--gold); margin-bottom: 10px; }
.principle:nth-child(2) .pn { color: var(--teal); }
.principle:nth-child(3) .pn { color: var(--violet); }
.principle:nth-child(4) .pn { color: var(--aurora); }
.principle h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.principle p { font-size: .94rem; color: var(--ink-soft); line-height: 1.6; }
.principle p strong { color: var(--ink); font-weight: 700; }

/* ── Outcomes ──────────────────────────────────────────── */
.outcomes { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,34px); box-shadow: var(--shadow-sm); }
.outcome { display: flex; align-items: flex-start; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.outcome:first-child { padding-top: 0; } .outcome:last-child { padding-bottom: 0; border-bottom: none; }
.outcome .chk { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; box-shadow: 0 6px 16px -6px rgba(70,52,200,.6); }
.outcome .chk svg { width: 16px; height: 16px; }
.outcome p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; padding-top: 3px; }
.outcome p strong { color: var(--ink); font-weight: 700; }

/* ── Mantra ────────────────────────────────────────────── */
.mantra-block { background: linear-gradient(135deg, rgba(201,151,58,.12), rgba(247,37,133,.06)); border: 1px solid rgba(201,151,58,.3); border-radius: var(--radius); padding: clamp(22px,3vw,28px); margin: clamp(22px,3vw,28px) 0; box-shadow: var(--shadow-sm); }
.mantra-block .ml { font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.mantra-block .mpt { font-family: var(--f-quote); font-style: italic; font-weight: 600; font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--ink); line-height: 1.45; margin-bottom: 8px; }
.mantra-block .men { font-size: .92rem; font-style: italic; color: var(--ink-faint); line-height: 1.6; }

/* ── CTA (reuse final dark moment) ─────────────────────── */
.ab-cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px) clamp(26px,5vw,56px); text-align: center; color: #fff; background: linear-gradient(135deg, #1B1430 0%, #2A1E68 45%, #3A2FBF 100%); box-shadow: var(--shadow-lg); margin-top: clamp(48px,7vw,72px); }
.ab-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(154,107,255,.35), transparent 65%); pointer-events: none; }
.ab-cta > * { position: relative; z-index: 1; }
.ab-cta h2 { color: #fff; max-width: 20ch; margin: 0 auto 12px; }
.ab-cta p { color: rgba(255,255,255,.72); max-width: 44ch; margin: 0 auto clamp(24px,4vw,32px); }
.ab-cta .hero-ctas { justify-content: center; }

/* ── Tagline + bottom back ─────────────────────────────── */
.ab-tagline { text-align: center; margin-top: clamp(40px,6vw,56px); }
.ab-tagline .pt { font-family: var(--f-quote); font-style: italic; font-weight: 600; font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--violet); line-height: 1.35; }
.ab-tagline .en { font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--ink-faint); margin-top: 6px; }
.ab-bottom { text-align: center; margin-top: clamp(28px,4vw,36px); }

@media (min-width: 600px) {
  .ab-hero-inner { grid-template-columns: 210px 1fr; }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); }
}
