/* ===========================
   STORY PAGE STYLES
   =========================== */

/* ===== HERO ===== */
.story-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
}

.story-hero-content {
  max-width: 800px;
}

.story-label {
  font-family: 'Tektur', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.story-hero-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== SECTIONS (WME style) ===== */
.story-section {
  padding: 120px 60px 100px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.story-wme-label {
  font-family: 'Tektur', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 8px;
}

.story-wme-content {
  max-width: 700px;
}

.story-wme-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}

.story-wme-text-secondary {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== METHODOLOGY ===== */
.story-methodology {
  padding: 120px 60px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.story-method-header {
  margin-bottom: 80px;
}

.gold {
  color: var(--gold);
}

/* --- Method blocks --- */
.method-block {
  margin-bottom: 100px;
}

.method-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.method-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 48px;
}

/* --- Timeline 3-3-6 --- */
.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 2px;
}

.timeline-item {
  background: var(--black-2);
  padding: 32px;
  position: relative;
}

.timeline-bar {
  height: 3px;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 2px;
}

.bar-adapt {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  width: 50%;
}

.bar-growth {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 75%;
}

.bar-fix {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  width: 100%;
}

.timeline-num {
  font-family: 'Russo One', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.timeline-unit {
  font-family: 'Tektur', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-left: 4px;
}

.timeline-name {
  font-family: 'Tektur', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 16px 0 12px;
}

.timeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* --- Sprint cycle --- */
.sprint-cycle {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.sprint-step {
  flex: 1;
  background: var(--black-2);
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.sprint-step:last-child {
  border-right: none;
}

.sprint-number {
  font-family: 'Russo One', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.sprint-name {
  font-family: 'Tektur', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.sprint-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.sprint-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
  position: relative;
}

.sprint-arrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* --- Tracks grid --- */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.track-card {
  background: var(--black-2);
  padding: 36px 32px;
}

.track-icon {
  font-family: 'Russo One', sans-serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.track-name {
  font-family: 'Tektur', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 14px;
}

.track-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== TEAM ===== */
.story-team-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.team-member {
  background: var(--black-2);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-role {
  font-family: 'Tektur', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.team-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== CTA ===== */
.story-cta {
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.story-cta-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.story-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.story-cta-btn {
  display: inline-block;
  font-family: 'Tektur', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--gold);
  padding: 16px 48px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.story-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 40px 60px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .sprint-cycle {
    flex-direction: column;
  }

  .sprint-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sprint-arrow {
    width: 100%;
    height: 24px;
  }

  .sprint-arrow::after {
    width: 2px;
    height: 24px;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-methodology {
    padding: 80px 40px 40px;
  }

  .story-hero {
    padding: 0 40px 60px;
  }

  .story-cta {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .story-hero {
    padding: 0 24px 40px;
    min-height: 50vh;
  }

  .story-section {
    padding: 60px 24px 40px;
  }

  .story-methodology {
    padding: 60px 24px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .story-cta {
    padding: 60px 24px;
  }
}
