.why-page {
  color: var(--color-text);
  background: var(--color-bg);
}

.why-shell {
  min-height: 100vh;
  background: var(--color-bg);
}

.why-header {
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-header__brand,
.why-header__back {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.why-header__brand:hover,
.why-header__back:hover {
  color: var(--color-text);
}

.why-main {
  padding: 2rem 1.5rem 5rem;
}

.why-hero,
.why-article,
.why-signature {
  max-width: 46rem;
  margin: 0 auto;
}

.why-hero {
  padding: 4rem 0 3rem;
}

.why-hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-hero h1,
.why-section h2 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  letter-spacing: -0.03em;
}

.why-hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.98;
}

.why-hero__subhead {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  color: var(--color-text-secondary);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.45;
}

.why-hero__author {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.why-article {
  display: grid;
  gap: 4rem;
}

.why-section {
  display: grid;
  gap: 1.4rem;
}

.why-section__header h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.why-section__body {
  display: grid;
  gap: 1.2rem;
}

.why-block {
  position: relative;
}

.why-block p,
.why-list,
.why-table {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.why-block p,
.why-list li,
.why-table td {
  color: var(--color-text-secondary);
  font-size: 1.12rem;
  line-height: 1.88;
}

.why-list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.why-list strong {
  color: var(--color-text);
}

.why-share {
  position: absolute;
  top: 0.2rem;
  right: -4.4rem;
  opacity: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text-secondary);
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 140ms ease, color 140ms ease, border-color 140ms ease;
}

.why-block:hover .why-share,
.why-block:focus-within .why-share,
.why-share.is-visible {
  opacity: 1;
}

.why-share:hover,
.why-share:focus-visible {
  color: var(--color-text);
  border-color: var(--color-accent);
  outline: none;
}

.why-pullquote {
  margin: 1.6rem 0;
  padding: 2.2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-pullquote p {
  margin: 0;
  color: var(--color-text);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.why-pullquote footer {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
}

.why-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
}

.why-table th,
.why-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.why-table th {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-signature {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.why-signature p:first-child {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

.why-signature p:last-child {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .why-share {
    right: 0;
  }
}

@media (max-width: 768px) {
  .why-main {
    padding: 1.2rem 1.1rem 4rem;
  }

  .why-hero {
    padding: 2.8rem 0 2.4rem;
  }

  .why-article {
    gap: 3.2rem;
  }

  .why-block p,
  .why-list li,
  .why-table td {
    font-size: 1.03rem;
    line-height: 1.8;
  }

  .why-share {
    position: static;
    margin-top: 0.7rem;
    opacity: 1;
  }

  .why-pullquote {
    padding: 1.7rem 0;
  }
}
