/**
 * About page v2 — editorial layout, generous spacing
 * Scoped to body.page-about
 */

:root {
  --ab-ink: #0f172a;
  --ab-muted: #64748b;
  --ab-red: #c4121a;
  --ab-red-deep: #9f0f16;
  --ab-cream: #faf8f6;
  --ab-warm: #fff9f7;
  --ab-border: rgba(15, 23, 42, 0.08);
  --ab-font: "Plus Jakarta Sans", "Poppins", system-ui, sans-serif;
  --ab-section: clamp(4rem, 8vw, 6.5rem);
  --ab-prose: 42rem;
  --ab-radius: 20px;
}

body.page-about {
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background: #fff;
  color: var(--ab-ink);
}

body.page-about h1,
body.page-about h2,
body.page-about h3,
body.page-about h4 {
  font-family: var(--ab-font);
  letter-spacing: -0.025em;
}

/* Reveal */
body.page-about [data-about-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--about-delay, 0ms);
}
body.page-about [data-about-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.page-about [data-about-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Layout bands */
.ab-page {
  display: block;
}
.ab-band {
  padding: var(--ab-section) 0;
}
.ab-band--warm {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(196, 18, 26, 0.04), transparent 55%),
    var(--ab-warm);
}

/* Club model — definition block */
.ab-club-model {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--ab-radius) + 6px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.05);
}
.ab-club-model__head {
  max-width: 34rem;
}
.ab-club-model__title {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--ab-ink);
}
.ab-club-model__prose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: 0.25rem;
}
.ab-club-model__lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  color: var(--ab-ink);
  font-weight: 500;
}
.ab-club-model__lead strong {
  font-weight: 800;
}
.ab-club-model__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ab-muted);
}
.ab-club-model__text strong {
  color: var(--ab-ink);
  font-weight: 700;
}
.ab-club-model__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 16px;
  background: linear-gradient(180deg, #fafafa 0%, #fff9f8 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.ab-club-model__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.15rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.22s ease;
}
.ab-club-model__highlight:last-child {
  border-right: 0;
}
.ab-club-model__highlight:hover {
  background: rgba(255, 245, 245, 0.65);
}
.ab-club-model__highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ab-red);
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(196, 18, 26, 0.1);
}
.ab-club-model__highlight h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ab-ink);
  line-height: 1.25;
}
.ab-club-model__highlight p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ab-muted);
}
.ab-club-model__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.ab-club-model__foot-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-muted);
}
.ab-club-model__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
}
.ab-club-model__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ab-red);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.ab-club-model__link i {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}
.ab-club-model__link:hover {
  color: var(--ab-red-deep);
  gap: 0.55rem;
}
.ab-club-model__link:hover i {
  transform: translateX(3px);
}

.ab-band--ink {
  background: var(--ab-ink);
  color: #fff;
}
.ab-band--faq {
  background: #fff;
  padding-top: var(--ab-section);
  padding-bottom: calc(var(--ab-section) * 0.75);
}

/* Typography helpers */
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-red);
}
.ab-eyebrow i {
  font-size: 0.85em;
}
.ab-eyebrow--muted {
  color: var(--ab-muted);
}
.ab-eyebrow--light {
  color: rgba(255, 255, 255, 0.65);
}
.ab-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ab-ink);
  margin-bottom: 1rem;
}

/* Section headers */
.ab-section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ab-section-head--left {
  text-align: left;
  margin-left: 0;
}
.ab-section-head--light .ab-section-head__title {
  color: #fff;
}
.ab-section-head--light .ab-section-head__sub {
  color: rgba(255, 255, 255, 0.72);
}
.ab-section-head__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ab-ink);
}
.ab-section-head__sub {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: var(--ab-muted);
}

/* Buttons */
.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ab-btn:hover {
  transform: translateY(-2px);
}
.ab-btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.84rem;
}
.ab-btn--primary {
  background: var(--ab-red);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(196, 18, 26, 0.22);
}
.ab-btn--primary:hover {
  background: var(--ab-red-deep);
  color: #fff !important;
}
.ab-btn--outline {
  background: #fff;
  color: var(--ab-ink) !important;
  border-color: var(--ab-border);
}
.ab-btn--outline:hover {
  border-color: rgba(196, 18, 26, 0.25);
  color: var(--ab-red-deep) !important;
}
.ab-btn--white {
  background: #fff;
  color: var(--ab-red-deep) !important;
}
.ab-btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.28);
  padding: 0.75rem 1.2rem;
}
.ab-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}

/* Hero */
.ab-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 5.5rem);
  overflow: hidden;
}
.ab-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(196, 18, 26, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(15, 23, 42, 0.03), transparent 50%);
}
.ab-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.ab-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ab-ink);
}
.ab-hero__title em {
  font-style: normal;
  color: var(--ab-red-deep);
}
.ab-hero__lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--ab-muted);
}
.ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ab-hero__panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--ab-radius);
  background: #fff;
  border: 1px solid var(--ab-border);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}
.ab-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ab-border);
}
.ab-stat:last-of-type {
  border-bottom: 0;
}
.ab-stat__value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ab-red);
  line-height: 1;
}
.ab-stat__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ab-muted);
  text-align: right;
}
.ab-hero__divider {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--ab-border);
  opacity: 1;
}
.ab-hero__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ab-hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ab-muted);
}
.ab-hero__checks i {
  color: var(--ab-red);
  font-size: 0.75rem;
}

/* Bento grid */
.ab-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.ab-bento__cell {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: var(--ab-radius);
  background: #fff;
  border: 1px solid var(--ab-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab-bento__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.ab-bento__cell--mission,
.ab-bento__cell--vision {
  grid-column: span 2;
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.ab-bento__cell--mission {
  background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
}
.ab-bento__cell--vision {
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
}
.ab-bento__icon {
  display: block;
  font-size: 1.25rem;
  color: var(--ab-red);
  margin-bottom: 1rem;
}
.ab-bento__cell h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ab-ink);
}
.ab-bento__cell p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ab-muted);
}
.ab-bento__cell--mission p,
.ab-bento__cell--vision p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Milestones */
.ab-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 52rem;
}
.ab-milestone {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ab-milestone:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ab-milestone__year {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ab-red);
  padding-top: 0.15rem;
}
.ab-milestone__body h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 800;
  color: #fff;
}
.ab-milestone__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 36rem;
}
.ab-milestones__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Founder card */
.ab-founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  grid-template-areas:
    "photo main"
    "foot foot";
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: calc(var(--ab-radius) + 6px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.05);
}
.ab-founder-card__photo {
  grid-area: photo;
  margin: 0;
}
.ab-founder-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--ab-radius) - 2px);
  display: block;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.ab-founder-card__main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  min-width: 0;
}
.ab-founder-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ab-founder-card__badge {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ab-red);
}
.ab-founder-card__name {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ab-ink);
}
.ab-founder-card__role {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ab-muted);
}
.ab-founder-card__tags {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.ab-founder-card__tags li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ab-muted);
}
.ab-founder-card__quote {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--ab-red);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, #fff8f8 0%, #fff 100%);
}
.ab-founder-card__quote p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ab-ink);
}
.ab-founder-card__bio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.ab-founder-card__bio p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ab-muted);
}
.ab-founder-card__foot {
  grid-area: foot;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: clamp(1.25rem, 2.5vw, 1.65rem);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.ab-founder-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.ab-founder-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: var(--ab-ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ab-founder-card__action:hover {
  background: #fff8f8;
  border-color: rgba(196, 18, 26, 0.2);
  color: var(--ab-red-deep);
  transform: translateY(-1px);
}
.ab-founder-card__action--primary {
  background: var(--ab-red);
  border-color: var(--ab-red);
  color: #fff !important;
}
.ab-founder-card__action--primary:hover {
  background: var(--ab-red-deep);
  border-color: var(--ab-red-deep);
  color: #fff !important;
}
.ab-founder-card__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ab-founder-card__social span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ab-muted);
  white-space: nowrap;
}

/* People grid */
.ab-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}
.ab-person {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.ab-person img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  border: 2px solid rgba(196, 18, 26, 0.12);
}
.ab-person h3 {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.ab-person p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ab-muted);
  line-height: 1.4;
}
.ab-person__co {
  margin-top: 0.2rem !important;
  font-size: 0.75rem !important;
  opacity: 0.85;
}

/* Partners */
.ab-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.ab-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 130px;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ab-border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ab-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.ab-partner img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}
.ab-partner span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ab-ink);
  text-align: center;
}

/* FAQ */
.ab-faq {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
}
.ab-faq__item {
  background: #fff;
  border: 1px solid var(--ab-border) !important;
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.ab-faq__item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(196, 18, 26, 0.22) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.ab-faq .accordion-button {
  background: transparent;
  font-family: var(--ab-font);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  line-height: 1.45;
  color: var(--ab-ink);
  padding: 1.15rem 1.35rem;
  box-shadow: none !important;
}
.ab-faq .accordion-button::after {
  filter: hue-rotate(-10deg) saturate(1.3);
  transition: transform 0.25s ease;
}
.ab-faq .accordion-button:not(.collapsed) {
  color: var(--ab-red-deep);
  background: transparent;
}
.ab-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.ab-faq .accordion-button:hover {
  background: var(--ab-warm);
}
.ab-faq__q {
  text-align: left;
  padding-right: 0.5rem;
}
.ab-faq .accordion-body {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ab-muted);
  border-top: 1px solid var(--ab-border);
}
.ab-faq-footnote {
  text-align: center;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  font-size: 0.9rem;
  color: var(--ab-muted);
}
.ab-faq-footnote a {
  color: var(--ab-red);
  font-weight: 650;
  text-decoration: none;
}
.ab-faq-footnote a:hover {
  text-decoration: underline;
}
.ab-faq-aside {
  padding: 1.5rem;
  border-radius: var(--ab-radius);
  background: var(--ab-warm);
  border: 1px solid var(--ab-border);
  position: sticky;
  top: 5.5rem;
}
.ab-faq-aside__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.ab-faq-aside__text {
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--ab-muted);
  margin: 0 0 1rem;
}
.ab-faq-aside__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ab-faq-aside__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--ab-border);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--ab-ink);
  transition: background 0.2s ease, transform 0.2s ease;
}
.ab-faq-aside__link i:first-child {
  color: var(--ab-red);
}
.ab-faq-aside__link i:last-child {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--ab-muted);
}
.ab-faq-aside__link:hover {
  background: #fff5f5;
  transform: translateX(3px);
}

/* CTA */
.ab-cta {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(135deg, #ff1212 0%, #b70f19 100%);
  color: #fff;
  text-align: center;
}
.ab-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
}
.ab-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}
.ab-cta p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.ab-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .ab-club-model__prose {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ab-club-model__highlights {
    grid-template-columns: 1fr;
  }
  .ab-club-model__highlight {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  .ab-club-model__highlight:last-child {
    border-bottom: 0;
  }
  .ab-hero__grid {
    grid-template-columns: 1fr;
  }
  .ab-hero__panel {
    max-width: 24rem;
  }
  .ab-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ab-bento__cell--mission,
  .ab-bento__cell--vision {
    grid-column: span 2;
  }
  .ab-founder-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "main"
      "foot";
  }
  .ab-founder-card__photo {
    max-width: 260px;
  }
  .ab-founder-card__bio {
    grid-template-columns: 1fr;
  }
  .ab-founder-card__foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .ab-faq-aside {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .ab-band {
    padding: clamp(3rem, 10vw, 4rem) 0;
  }
  .ab-bento {
    grid-template-columns: 1fr;
  }
  .ab-bento__cell--mission,
  .ab-bento__cell--vision {
    grid-column: span 1;
  }
  .ab-milestone {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .ab-hero__actions,
  .ab-cta__actions,
  .ab-founder-card__actions,
  .ab-milestones__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .ab-btn {
    justify-content: center;
  }
}
