/* ============================================================
   ABOUT US PAGE — about.css
   ============================================================ */


/* ── HERO ── */
.about-hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 100%),
    url('../img/bg-map.jpg') 50% / cover no-repeat;
  background-color: #111111;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 0;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.about-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

/* Left */
.about-hero__left {
  flex: 1;
  min-width: 0;
  padding-bottom: 72px;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.about-hero__label-bar {
  width: 24px;
  height: 2px;
  background: var(--c-green);
  flex-shrink: 0;
}

.about-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 24px;
  max-width: 580px;
}

.about-hero__heading em {
  color: var(--c-green);
  font-style: normal;
}

.about-hero__text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 36px;
}

.about-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Right — player art */
.about-hero__right {
  flex-shrink: 0;
  width: clamp(260px, 32vw, 440px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  align-self: flex-end;
}

/* Subtle glow behind the figure */
.about-hero__right::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at center bottom, rgba(153,238,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero__img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 0 40px rgba(153,238,45,0.08));
}


/* ── WHY US ── */
.about-why {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #111;
  position: relative;
}

/* Subtle top divider line */
.about-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153,238,45,0.25) 50%, transparent);
}

.about-why__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.about-why__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.02em;
  color: var(--c-white);
  line-height: 0.95;
}

/* Three-column grid */
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.about-why__card {
  position: relative;
  padding: 40px 32px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}

.about-why__card:hover {
  border-color: rgba(153,238,45,0.25);
  background: rgba(153,238,45,0.04);
}

/* Green top accent bar */
.about-why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-green);
  opacity: 0.6;
  transition: opacity .3s ease;
}

.about-why__card:hover::before { opacity: 1; }

/* Large number watermark */
.about-why__card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color .3s;
}

.about-why__card:hover::after { color: rgba(153,238,45,0.05); }

/* Icon box */
.about-why__icon {
  width: 48px;
  height: 48px;
  background: rgba(153,238,45,0.08);
  border: 1px solid rgba(153,238,45,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-green);
  transition: background .3s, border-color .3s;
}

.about-why__card:hover .about-why__icon {
  background: rgba(153,238,45,0.14);
  border-color: rgba(153,238,45,0.32);
}

.about-why__card-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.03em;
  color: var(--c-white);
  margin-bottom: 12px;
  line-height: 1;
}

.about-why__card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}


/* ── COMMUNITY / CLOSING ── */
.about-community {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background:
    linear-gradient(180deg, rgba(153,238,45,0.05) 0%, transparent 50%),
    #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  text-align: center;
}

/* Background watermark word */
.about-community::before {
  content: 'COMMUNITY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.about-community__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.about-community__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 20px;
}

.about-community__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  letter-spacing: 0.02em;
  color: var(--c-white);
  line-height: 0.95;
  margin-bottom: 28px;
}

.about-community__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.about-community__sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  margin-bottom: 44px;
}

.about-community__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-community__cta .btn--light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-why__card { padding: 32px 24px 28px; }
}

@media (max-width: 900px) {
  .about-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .about-hero__left { padding-bottom: 40px; }

  .about-hero__right {
    width: 100%;
    max-width: 320px;
    align-self: flex-end;
    margin-top: -20px;
  }

  .about-hero {
    padding-bottom: 0;
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .about-why__grid { grid-template-columns: 1fr; gap: 12px; }

  .about-why__card { padding: 28px 24px 24px; }
  .about-why__card::after { font-size: 80px; }

  .about-hero__heading { max-width: 100%; }
  .about-hero__text    { max-width: 100%; font-size: 15px; }

  .about-community__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero__right { max-width: 260px; }

  .about-why__card { padding: 24px 20px 20px; }
  .about-why__card-title { font-size: 26px; }
}
