/* =========================================================
   THE PERFORMANCE ACT — OUR APPROACH PAGE
   approach.css v1
   ========================================================= */

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--black);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-field.jpg');
  background-size: cover;
  background-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.page-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--yellow);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.page-hero__title .accent {
  color: var(--yellow);
  display: block;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.65;
  border-left: 2px solid var(--yellow);
  padding-left: 20px;
}

/* ---- BELIEF TICKER ---- */
.belief-ticker {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.belief-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.belief-ticker:hover .belief-ticker__track {
  animation-play-state: paused;
}

.belief-ticker__item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--black);
  padding: 0 28px;
  text-transform: uppercase;
}

.belief-ticker__sep {
  color: var(--black);
  font-size: 0.5rem;
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SHARED AP TYPOGRAPHY ---- */
.ap-section-num {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 229, 0, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
}

.ap-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
}

.ap-section-title em {
  color: var(--yellow);
  font-style: normal;
}

.ap-section-header {
  margin-bottom: 64px;
}

.ap-body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ap-body-text--lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.7;
}

.ap-body-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ---- SECTION 01: SPORT AS A VEHICLE ---- */
.ap-sport-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.ap-sport-grid__label {
  position: sticky;
  top: 100px;
}

.ap-sport-grid__body {
  padding-top: 16px;
}

.ap-belief-cards {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ap-belief-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.35s ease, background 0.35s ease;
  cursor: default;
}

.ap-belief-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 229, 0, 0.03);
}

.ap-belief-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: var(--yellow);
}

.ap-belief-card__icon svg {
  width: 100%;
  height: 100%;
}

.ap-belief-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.ap-belief-card__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* ---- SECTION 02: WALKING ALONGSIDE ---- */
.ap-alongside {
  background: var(--black);
  padding-bottom: 100px;
}

.ap-alongside__quote-bar {
  background: var(--yellow);
  padding: 32px 0;
  margin-bottom: 88px;
}

.ap-alongside__quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}

.ap-alongside__quote-text strong {
  font-weight: 700;
}

.ap-alongside-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.ap-alongside-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.ap-alongside-card--dim {
  opacity: 0.42;
}

.ap-alongside-card--dim:hover {
  opacity: 0.6;
}

.ap-alongside-card--active {
  border-color: var(--yellow);
  background: rgba(255, 229, 0, 0.04);
}

.ap-alongside-card--active::after {
  content: 'OUR WAY';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ap-alongside-card__marker {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.ap-alongside-card--dim .ap-alongside-card__marker {
  color: rgba(255, 255, 255, 0.25);
}

.ap-alongside-card--active .ap-alongside-card__marker {
  color: var(--yellow);
}

.ap-alongside-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.ap-alongside-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 0;
}

.ap-alongside-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ap-alongside-body .ap-body-text {
  font-size: 1.05rem;
}

/* ---- SECTION 03: RANGE OF TOOLS ---- */
.ap-tools-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 56px;
}

.ap-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ap-tool-card {
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ap-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--yellow);
  transition: height 0.45s ease;
}

.ap-tool-card:hover {
  border-color: rgba(255, 229, 0, 0.25);
  transform: translateY(-5px);
}

.ap-tool-card:hover::before {
  height: 100%;
}

.ap-tool-card__icon {
  width: 44px;
  height: 44px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.ap-tool-card__icon svg {
  width: 100%;
  height: 100%;
}

.ap-tool-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ap-tool-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.68;
  margin-bottom: 20px;
}

.ap-tool-card__tag {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  border: 1px solid rgba(255, 229, 0, 0.3);
  padding: 3px 9px;
  text-transform: uppercase;
  display: inline-block;
}

/* ---- SECTION 04: THE BIG QUESTION ---- */
.ap-question-section {
  background: var(--yellow);
  padding: 130px 0;
}

.ap-question-inner {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 64px;
}

.ap-question-pre {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

.ap-question-not {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.4);
  margin-bottom: 48px;
  line-height: 1.05;
}

.ap-question-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.ap-question-divider::before,
.ap-question-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}

.ap-question-divider-icon {
  font-size: 1.2rem;
  color: var(--black);
  opacity: 0.6;
}

.ap-question-yes {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.0;
}

.ap-question-body {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: rgba(0, 0, 0, 0.68);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.72;
  text-align: center;
}

.ap-question-body strong {
  color: var(--black);
  font-weight: 600;
}

/* ---- SECTION 05: WHAT TO EXPECT ---- */
.ap-process {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.ap-process__spine {
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--yellow), rgba(255,229,0,0.05));
}

.ap-process-step {
  display: flex;
  gap: 44px;
  margin-bottom: 56px;
  position: relative;
}

.ap-process-step:last-child {
  margin-bottom: 0;
}

.ap-process-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.ap-process-step:hover .ap-process-step__num {
  background: var(--yellow);
  color: var(--black);
}

.ap-process-step__content {
  padding-top: 12px;
}

.ap-process-step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.ap-process-step:hover .ap-process-step__title {
  color: var(--yellow);
}

.ap-process-step__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
}

/* ---- SECTION 06: FAQ ---- */
.ap-faq {
  max-width: 820px;
  margin: 0 auto;
}

.ap-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ap-faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ap-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
  gap: 20px;
}

.ap-faq-item__q:hover {
  color: var(--yellow);
}

.ap-faq-item__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.35s ease, border-color 0.25s ease, background 0.25s ease;
}

.ap-faq-item.open .ap-faq-item__arrow {
  transform: rotate(180deg);
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.ap-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.ap-faq-item.open .ap-faq-item__a {
  max-height: 600px;
  padding-bottom: 28px;
}

.ap-faq-item__a p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin: 0;
}

/* ---- CTA SECTION ---- */
.ap-cta {
  background: var(--gray-900);
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.ap-cta::before {
  content: 'GROW';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 229, 0, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.ap-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ap-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 28px;
}

.ap-cta__title span {
  color: var(--yellow);
}

.ap-cta__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.68;
}

.ap-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ap-sport-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ap-sport-grid__label {
    position: static;
  }

  .ap-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 70vh;
    padding-bottom: 72px;
  }

  .ap-alongside-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ap-alongside-card--dim {
    opacity: 0.72;
  }

  .ap-alongside-card--active::after {
    font-size: 0.55rem;
  }

  .ap-tools-grid {
    grid-template-columns: 1fr;
  }

  .ap-question-section {
    padding: 90px 0;
  }

  .ap-process__spine {
    display: none;
  }
}

@media (max-width: 480px) {
  .ap-process-step {
    gap: 24px;
  }

  .ap-cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
