/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 70, 95, 0.18), transparent 28%),
    linear-gradient(rgba(5, 5, 5, 0.56), rgba(5, 5, 5, 0.9)),
    url("../../images/ronin-hero.jpg") center center / cover no-repeat;
}

.about-page {
  --about-border: rgba(255, 70, 95, 0.26);
  --about-panel: linear-gradient(135deg, rgba(17, 17, 22, 0.96), rgba(6, 6, 9, 0.99));
}

.about-command,
.doctrine-grid,
.about-standards {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 26px;
  align-items: stretch;
  padding-top: 92px;
}

.about-manifesto,
.about-identity-card,
.doctrine-card,
.about-standards {
  border: 1px solid var(--about-border);
  background:
    radial-gradient(circle at top right, rgba(180, 0, 20, 0.16), transparent 34%),
    var(--about-panel);
  box-shadow:
    0 0 42px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-manifesto {
  position: relative;
  overflow: hidden;
  padding: 44px;
}

.about-manifesto::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 70, 95, 0.22);
  transform: rotate(45deg);
  background: rgba(120, 0, 15, 0.08);
}

.about-manifesto h2,
.about-feature-copy h2,
.standards-header h2 {
  margin: 10px 0 22px;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-manifesto h2 {
  max-width: 900px;
  font-size: clamp(2.05rem, 5vw, 4.3rem);
  line-height: 0.96;
}

.about-manifesto p,
.about-identity-card p,
.about-feature-copy p,
.standards-header p,
.standard-item p,
.doctrine-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.about-manifesto p {
  max-width: 850px;
  margin: 0 0 18px;
}

.manifesto-footer {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 70, 95, 0.35);
  color: #ff4058;
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-identity-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.about-identity-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 16px rgba(255, 70, 95, 0.32));
}

.about-identity-card h3 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.about-identity-card p {
  margin: 0;
}

/* =========================
   DOCTRINE GRID
========================= */

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.doctrine-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.doctrine-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 70, 95, 0.8), transparent);
  opacity: 0.5;
}

.doctrine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 70, 95, 0.58);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.doctrine-number {
  display: block;
  margin-bottom: 18px;
  color: #ff4058;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
}

.doctrine-card h3,
.standard-item h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doctrine-card p {
  margin: 0;
}

/* =========================
   CONFEDERACY FEATURE BAND
========================= */

.about-feature-band {
  position: relative;
  overflow: hidden;
  margin: 70px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(rgba(6, 6, 8, 0.84), rgba(6, 6, 8, 0.92)),
    url("../../images/ronin-hero.jpg") center center / cover no-repeat;
}

.about-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 85% 35%, rgba(255, 70, 95, 0.18), transparent 32%);
}

.about-feature-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px;
}

.about-feature-copy {
  position: relative;
  max-width: 860px;
  padding: 38px;
  border: 1px solid rgba(255, 70, 95, 0.24);
  border-left: 3px solid rgba(255, 70, 95, 0.75);
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(8px);
}

.about-feature-copy::before {
  content: "RC";
  position: absolute;
  top: 26px;
  right: 32px;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.about-feature-copy h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.about-feature-copy p {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: 1.02rem;
}

/* =========================
   STANDARDS TIMELINE
========================= */

.about-standards {
  margin-top: 34px;
  padding: 34px;
}

.standards-header {
  max-width: 860px;
  padding-bottom: 28px;
}

.standards-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.standards-header p {
  margin: 0;
}

.standards-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.standard-item {
  position: relative;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.standard-item:first-child {
  border-left: none;
}

.standard-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 70, 95, 0.85);
  background: rgba(255, 70, 95, 0.24);
  transform: rotate(45deg);
}

.standard-item span {
  display: block;
  margin-bottom: 14px;
  color: #ff4058;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.standard-item p {
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .about-command {
    grid-template-columns: 1fr;
  }

  .doctrine-grid,
  .standards-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standard-item:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 720px) {
  .about-command {
    padding-top: 68px;
  }

  .about-command,
  .doctrine-grid,
  .about-standards {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-manifesto,
  .about-identity-card,
  .about-standards {
    padding: 24px;
  }

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

  .standard-item,
  .standard-item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .standard-item:first-child {
    border-top: none;
  }

  .about-feature-inner {
    padding: 80px 18px;
  }

  .about-feature-copy {
    padding: 28px;
  }
}
