* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}


.about-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/about-hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: clamp(80px, 10vw, 120px);
}

.about-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.219em;
  background: linear-gradient(90deg, #FF5722 13%, #FF794E 53%, #FF5722 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.about-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 935px;
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.who-are-we-section {
  background-color: #ffffff;
  padding: var(--space-section-v) var(--space-section-h);
  width: 100%;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  line-height: 1.2;
  background: linear-gradient(90deg, #FF5722 13%, #FF794E 53%, #ff5521 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: var(--space-heading-mb);
  margin-top: var(--space-heading-mb);
}

.who-content {
  max-width: 56.25rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.who-paragraph {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  margin-bottom: 1.25rem;
}

.who-paragraph u {
  color: #ff5521;
}

.vision-mission-section {
  background-color: #212121;
  padding: var(--space-section-v) var(--space-section-h);
  width: 100%;
}

.vision-mission-container {
  max-width: 56.25rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-gap-lg);
}

.vm-card {
  background-color: #ffffff;
  border-radius: 0.9375rem;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
}

.vm-card-image {
  width: 100%;
  height: 13.75rem;
  overflow: hidden;
  position: relative;
}

.vm-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #FFC107;
}

.vm-card-content {
  padding: var(--space-card-v) var(--space-card-h);
  background-color: #ffffff;
  text-align: left;
}

.vm-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.2;
  color: #FF5722;
  margin-bottom: 1rem;
  text-align: center;
}

.vm-card-intro {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 0.75rem;
}

.vm-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.vm-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #000000;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.vm-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.4;
}

.vm-card-footer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #000000;
  margin-top: 1rem;
}


.values-section {
  background-color: #F5F5F5;
  padding: var(--space-section-v) var(--space-section-h);
  width: 100%;
}

.values-grid {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-gap-lg);
}

.value-card {
  background-color: transparent;
  border-radius: 0;
  padding: 1.25rem 0.625rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
  height: 3.75rem;
}

.value-icon svg {
  width: 3.75rem;
  height: 3.75rem;
}

.value-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 0.5rem;
}

.value-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #000000;
}


/* ── Tournament Section ───────────────────────────────────── */
.tournament-section {
  background-color: #D9D9D9;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  width: 100%;
}

.tournament-intro {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 1.5rem;
}

.tournament-container {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: auto;
}

/* ── Left panel: Benefits ─────────────────────────────────── */
.tournament-benefits-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.benefits-panel-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #212121;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.benefits-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 70%;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #333333;
  font-weight: 400;
}

/* ── Right panel: Pipeline ────────────────────────────────── */
.tournament-pipeline {
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Row 2 benefits panel — same card style, content centered */
.benefits-row2-panel {
  justify-content: center;
}

.benefits-row2-panel .benefits-cards-row {
  width: 70%;
}

.pipeline-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #212121;
  text-align: center;
  margin-bottom: 1.25rem;
}

.pipeline-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 120px;
}

.stage-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}

.stage-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.stage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #212121;
  line-height: 1.3;
  text-align: center;
}

.pipeline-connector {
  flex: 1;
  height: 40px;
  min-width: 60px;
}

.pipeline-connector svg {
  width: 100%;
  height: 100%;
}

/* ── Description below ────────────────────────────────────── */
.tournament-description {
  max-width: 58rem;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #333333;
  text-align: right;
}






@media (max-width: 1024px) {

  .who-are-we-section,
  .vision-mission-section,
  .values-section,
  .tournament-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .tournament-container {
    gap: 3.125rem;
  }

  .tournament-description {
    text-align: center;
  }

}


@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: 500px;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
  }

  .about-hero-content {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-hero-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .about-hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
    max-width: 100%;
  }

  .who-are-we-section,
  .vision-mission-section,
  .values-section,
  .tournament-section {
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 3vw, 1.875rem);
  }

  .section-title,
  .section-title-left {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 2rem;
  }

  .who-paragraph {
    font-size: 1.125rem;
  }

  .vision-mission-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vm-card-content {
    padding: 2rem;
  }

  .vm-card-title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .tournament-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pipeline-stages {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pipeline-connector {
    width: 32px;
    height: 40px;
    transform: rotate(90deg);
  }

  .pipeline-stage {
    width: 100%;
  }

  .tournament-pipeline {
    padding: 1.5rem 1.25rem;
  }

  .tournament-description {
    text-align: center;
  }

}


@media (max-width: 480px) {
  .about-hero {
    height: 400px;
  }

  .tournament-description {
    text-align: center;
  }

  .about-hero-content {
    padding: 0 20px;
  }

  .about-hero-title {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .about-hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .who-are-we-section,
  .vision-mission-section,
  .values-section,
  .tournament-section {
    padding: clamp(2rem, 5vw, 3.125rem) clamp(1rem, 3vw, 1.25rem);
  }

  .section-title,
  .section-title-left {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 1.5rem;
  }

  .who-paragraph {
    font-size: 1rem;
  }

  .vm-card-image {
    height: 13.75rem;
  }

  .vm-card-content {
    padding: 1.5rem;
  }

  .vm-card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 1.25rem;
  }

  .vm-list li {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-card {
    padding: 1.75rem 1.25rem;
  }

  .value-icon {
    height: 4rem;
    margin-bottom: 1rem;
  }

  .value-icon svg {
    width: 3rem;
    height: 3rem;
  }

  .value-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .value-description {
    font-size: 0.8125rem;
  }

  .tournament-pipeline {
    padding: 1.5rem 1.25rem;
  }

  .pipeline-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .tier {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .tier-number {
    font-size: 1.75rem;
    min-width: 2.5rem;
  }

  .tier-content h4 {
    font-size: 1rem;
  }

  .tier-content p {
    font-size: 0.8125rem;
  }

  .tier-arrow {
    font-size: 1.5rem;
  }

  .tournament-benefits li {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

}