/* =============================
   ABOUT PAGE REWORK
============================= */

body[data-page="about"] #about {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(1.05rem, 2.3vw, 1.9rem) clamp(0.9rem, 2.3vw, 1.5rem) 3rem;
}

body[data-page="about"] #about .about-hero {
  max-width: 980px;
  margin: 0 auto 1.35rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 86% 10%, rgba(124, 103, 95, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.4));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

body[data-page="about"] #about .about-title {
  margin: 0;
  line-height: 1.2;
  text-wrap: balance;
}

body[data-page="about"] #about .about-portrait-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0a0a0a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

body[data-page="about"] #about .about-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

body[data-page="about"] #about .about-intro {
  margin: 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.58;
}

body[data-page="about"] #about .about-grid {
  max-width: 1180px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body[data-page="about"] #about .about-block {
  margin: 0 auto 1rem;
  width: 100%;
  max-width: 1180px;
  padding: clamp(0.95rem, 1.9vw, 1.25rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(7, 7, 7, 0.42)),
    radial-gradient(circle at 14% 0%, rgba(124, 103, 95, 0.18), transparent 52%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

body[data-page="about"] #about .about-block h2 {
  margin: 0 0 0.55rem;
  line-height: 1.2;
  text-wrap: balance;
}

body[data-page="about"] #about .about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body[data-page="about"] #about .about-list li {
  margin: 0 0 0.6rem;
  line-height: 1.5;
}

body[data-page="about"] #about .about-list li:last-child {
  margin-bottom: 0;
}

body[data-page="about"] #about .about-list a,
body[data-page="about"] #about .about-resource-list a {
  color: #9fd2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page="about"] #about .about-resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

body[data-page="about"] #about .about-resource-list li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="about"] #about .about-resource-list img {
  flex-shrink: 0;
}

body[data-page="about"] #about .about-kofi-logo {
  object-fit: contain;
}

body[data-page="about"] #about .about-support-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: center;
}

body[data-page="about"] #about .about-support-copy p {
  margin: 0 0 1rem;
  max-width: 60ch;
  line-height: 1.58;
}

body[data-page="about"] #about .about-support-copy .about-goal-note {
  margin-top: 0.85rem;
  color: rgba(220, 225, 232, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

body[data-page="about"] #about .about-support-btn {
  min-width: 190px;
}

body[data-page="about"] #about .about-goal-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  text-decoration: none;
}

body[data-page="about"] #about .about-goal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  border-color: rgba(159, 210, 255, 0.34);
}

body[data-page="about"] #about .about-goal-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 628;
  object-fit: cover;
}

body[data-page="about"] #about .about-goal-link-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.78rem 0.95rem 0.9rem;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.56));
}

body[data-page="about"] #about .about-goal-link-icon {
  flex-shrink: 0;
}

body[data-page="about"] #about .about-goal-link-label {
  display: block;
  color: #9fd2ff;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

body[data-page="about"] #about .about-usage-block {
  max-width: 1180px;
}

body[data-page="about"] #about .about-qa {
  margin: 0 0 1rem;
  padding: 0 0 0.95rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

body[data-page="about"] #about .about-qa:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

body[data-page="about"] #about .about-qa h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.3;
}

body[data-page="about"] #about .about-qa p {
  margin: 0;
  max-width: none;
}

body[data-page="about"] #about .about-contact-block {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  text-align: center;
}

body[data-page="about"] #about .about-contact-copy {
  margin: 0 auto 1rem;
  max-width: 70ch;
}

body[data-page="about"] #about .about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.25rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

body[data-page="about"] #about .about-contact-btn:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  body[data-page="about"] #about .about-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  body[data-page="about"] #about .about-resource-list {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] #about .about-support-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body[data-page="about"] #about {
    padding-inline: clamp(0.2rem, 1vw, 0.36rem);
  }

  body[data-page="about"] #about .about-hero,
  body[data-page="about"] #about .about-block {
    border-radius: 12px;
    padding: clamp(0.58rem, 2.2vw, 0.78rem);
  }

  body[data-page="about"] #about .about-portrait-wrap,
  body[data-page="about"] #about .about-goal-card {
    max-width: none;
    width: 100%;
  }

  body[data-page="about"] #about .about-intro,
  body[data-page="about"] #about .about-list li,
  body[data-page="about"] #about .about-qa p {
    font-size: 0.94rem;
  }

  body[data-page="about"] #about .about-contact-btn {
    width: 100%;
    max-width: 360px;
  }
}
/* =============================
   USAGE ANSWER HIGHLIGHTS
============================= */

.answer-yes {
  color: #1f7a1f;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.answer-no {
  color: #E10600;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

