/* WinMindPerform static website
   Files: index.html, style.css, script.js
*/

:root {
  --navy: #07111f;
  --navy-2: #10243d;
  --navy-3: #193454;
  --gold: #d8bd7f;
  --gold-2: #b08d45;
  --beige: #f5f2ea;
  --beige-2: #fffaf0;
  --white: #ffffff;
  --text: #111827;
  --muted: #566174;
  --soft: #eef1f5;
  --success: #177a4c;
  --amber: #ad6a00;
  --red: #b42318;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.07);
  --radius: 26px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.6;
}

body > :not(.site-video-backdrop) {
  position: relative;
  z-index: 1;
}

.site-video-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #07111f;
}

.site-video-backdrop iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.45;
  filter: saturate(0.96) contrast(1.06);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 78px 0;
  background: var(--beige);
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h2 {
  color: var(--navy-2);
  font-size: clamp(31px, 5vw, 43px);
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

h3 {
  color: var(--navy-2);
  margin: 0 0 12px;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 880px;
  color: var(--muted);
  font-size: 17px;
}

.small-note {
  font-size: 13px;
  color: #cfd6e3;
  margin-top: 18px;
}

.warning-note {
  max-width: 900px;
  padding: 16px 18px;
  border-left: 5px solid var(--gold-2);
  background: #fff7e7;
  color: #5c4211;
  border-radius: 18px;
  font-weight: 650;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 189, 127, 0.22);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 750;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 10px;
}

.hero {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 86px 0 94px;
  border-radius: 0 0 42px 42px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.9) 0%, rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.58) 100%),
    radial-gradient(circle at 76% 16%, rgba(216, 189, 127, 0.24), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 24px;
  color: #f3f4f6;
  margin-bottom: 22px;
}

.hero-text {
  color: #e5e7eb;
  font-size: 19px;
  max-width: 770px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.hero-tags span,
.slot-list span,
.tag,
.status-tag {
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.hero-tags span {
  border: 1px solid rgba(216, 189, 127, 0.44);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-row.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.btn-outline {
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(216, 189, 127, 0.12);
}

.btn-dark {
  background: var(--navy-2);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-2);
  border: 1px solid #e5e7eb;
}

.hero-photo-wrap {
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 55px rgba(0,0,0,0.38);
}

.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  display: block;
}

.stats-wrap {
  max-width: var(--max);
  margin: -40px auto 0;
  padding: 0 24px;
}

.stats-grid,
.card-grid,
.interactive-grid,
.gallery-grid,
.recognition-grid,
.research-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.service-card,
.assessment-card,
.resource-card,
.toolkit-card,
.info-card,
.empty-state,
.recognition-grid article,
.research-grid article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  color: var(--navy-2);
  font-size: 41px;
  line-height: 1.1;
}

.stat-card span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.focus-panel {
  background: var(--navy-2);
  color: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(16,36,61,0.25);
}

.focus-panel h3 {
  color: var(--gold);
  font-size: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.quote-section {
  background: var(--white);
  padding: 68px 0;
}

.quote-section blockquote {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.35;
  text-align: center;
  color: var(--navy-2);
  font-weight: 780;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  border-top: 5px solid var(--gold-2);
  box-shadow: var(--shadow-soft);
}

.service-card p,
.assessment-card p,
.resource-card p,
.toolkit-card p {
  color: var(--muted);
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.86), rgba(16, 36, 61, 0.78)),
    rgba(7, 17, 31, 0.6);
  color: var(--white);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .eyebrow {
  color: var(--gold);
}

.soft-section {
  background: rgba(255,255,255,0.5);
}

.interactive-grid {
  grid-template-columns: repeat(3, 1fr);
}

.assessment-card,
.resource-card,
.toolkit-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16,36,61,0.08);
}

.assessment-card::before,
.resource-card::before,
.toolkit-card::before {
  content: "";
  height: 5px;
  background: var(--gold-2);
  position: absolute;
  inset: 0 0 auto;
}

.tag,
.status-tag {
  display: inline-block;
  padding: 6px 10px;
  background: #f1eadb;
  color: #76561d;
  margin-bottom: 12px;
}

.status-tag {
  background: #eaf2ff;
  color: #184b8f;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card-actions .btn {
  padding: 11px 16px;
  font-size: 14px;
}

.timeline {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.timeline article {
  margin-bottom: 36px;
}

.timeline article:last-child {
  margin-bottom: 0;
}

.timeline span {
  color: var(--gold);
  font-weight: 850;
}

.timeline p {
  color: #e5e7eb;
}

.timeline p:first-of-type {
  color: #cbd5e1;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pill-grid span {
  background: var(--white);
  color: var(--navy-2);
  border-radius: 18px;
  padding: 20px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.feature-section {
  padding-top: 0;
}

.feature-card {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 0;
}

.feature-card img {
  width: 100%;
  display: block;
  max-height: 670px;
  object-fit: cover;
}

.feature-body {
  padding: 34px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  padding: 10px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  padding: 10px 4px 2px;
}

.research-grid {
  grid-template-columns: repeat(3, 1fr);
}

.research-grid article,
.info-card {
  padding: 28px;
}

.ethics-grid article {
  display: flex;
  flex-direction: column;
}

.ethics-grid .card-actions {
  margin-top: auto;
}

.ethics-disclaimer {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--gold-2);
  border-radius: 18px;
  background: rgba(216, 189, 127, 0.14);
  color: #3f4a5d;
  font-weight: 700;
}

.research-grid ul {
  padding-left: 20px;
  margin: 0;
}

.empty-state {
  text-align: center;
  padding: 38px 28px;
  border: 1px dashed rgba(16,36,61,0.35);
  box-shadow: none;
  background: rgba(255,255,255,0.74);
}

.empty-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.recognition-section {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.84), rgba(16, 36, 61, 0.72)),
    rgba(7, 17, 31, 0.58);
  color: var(--white);
}

.recognition-section h2,
.recognition-section h3 {
  color: var(--white);
}

.recognition-section .eyebrow {
  color: var(--gold);
}

.recognition-grid {
  grid-template-columns: repeat(4, 1fr);
}

.recognition-grid article {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(216,189,127,0.20);
  padding: 26px;
}

.recognition-grid h3 {
  color: var(--gold);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(16, 36, 61, 0.82), rgba(7, 17, 31, 0.74)),
    rgba(7, 17, 31, 0.58);
  color: var(--white);
  padding: 78px 0;
  border-radius: 42px 42px 0 0;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-box > p:not(.eyebrow) {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;
}

.contact-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-links a {
  border: 1px solid rgba(216,189,127,0.34);
  color: #e5e7eb;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  background: rgba(255,255,255,0.06);
}

.portal-lock-note {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(216, 189, 127, 0.18);
  border: 1px solid rgba(216, 189, 127, 0.38);
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.request-access-page {
  min-height: 100vh;
  background: #07111f;
}

.request-access-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.86), rgba(16, 36, 61, 0.72)),
    rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(10px);
}

.request-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.request-access-hero h1 {
  color: var(--gold);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.request-access-card {
  border: 1px solid rgba(216, 189, 127, 0.28);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.request-access-card h2 {
  color: var(--white);
  font-size: 30px;
}

.request-access-card li {
  color: #e5e7eb;
}

.site-footer {
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(10px);
  color: #cbd5e1;
  padding: 26px;
  text-align: center;
  font-size: 14px;
}

.site-footer p {
  margin: 4px 0;
}

/* Modal and interactive app */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  background: var(--white);
  color: var(--text);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.modal-title {
  color: var(--navy-2);
  margin-right: 56px;
}

.modal-lead {
  color: var(--muted);
  max-width: 760px;
}

.assessment-form {
  margin-top: 24px;
}

.question {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.question p {
  font-weight: 800;
  color: var(--navy-2);
  margin-bottom: 12px;
}

.scale {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scale label {
  cursor: pointer;
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.scale input {
  margin-right: 5px;
}

.result-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.result-card h3 {
  color: var(--navy-2);
}

.result-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy-2);
  line-height: 1;
}

.result-category {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  margin: 10px 0 16px;
}

.category-strong,
.category-green {
  background: var(--success);
}

.category-moderate,
.category-amber {
  background: var(--amber);
}

.category-low,
.category-red {
  background: var(--red);
}

.domain-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.domain-pill {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  color: var(--navy-2);
  font-weight: 800;
}

.resource-content h3,
.tool-output h3 {
  color: var(--navy-2);
}

.resource-content section {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  margin: 14px 0;
}

.resource-content ul,
.tool-output ul {
  margin: 0;
  padding-left: 20px;
}

.tool-panel {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 850;
  color: var(--navy-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: var(--white);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.tool-output {
  padding: 22px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.coming-soon {
  padding: 16px;
  border-radius: 18px;
  background: #fff7e7;
  color: #6b4a10;
  font-weight: 800;
  border: 1px solid #f0d595;
}

.timer {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  margin: 10px 0;
  box-shadow: var(--shadow);
}

.print-only {
  display: none;
}

@media print {
  body * {
    visibility: hidden;
  }

  .modal-panel,
  .modal-panel * {
    visibility: visible;
  }

  .modal-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin: 0;
    box-shadow: none;
  }

  .modal-close,
  .button-row,
  .card-actions {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 1040px) {
  .stats-grid,
  .card-grid,
  .interactive-grid,
  .gallery-grid,
  .research-grid,
  .recognition-grid,
  .pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .request-access-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    height: 500px;
  }
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    left: 16px;
    right: 16px;
    padding: 16px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(216,189,127,0.24);
    border-radius: 20px;
    display: none;
    justify-content: flex-start;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-grid,
  .stats-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 62px 0 76px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-photo {
    height: 420px;
  }

  .stats-grid,
  .card-grid,
  .interactive-grid,
  .gallery-grid,
  .research-grid,
  .recognition-grid,
  .pill-grid,
  .domain-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    padding: 24px 18px;
    width: min(100% - 22px, 980px);
  }

  .scale label {
    width: calc(50% - 5px);
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-video-backdrop iframe {
    opacity: 0.38;
  }

  .hero {
    padding: clamp(34px, 8vw, 54px) 0 clamp(28px, 7vw, 42px);
    border-radius: 0 0 28px 28px;
    overflow: visible;
  }

  .hero-grid {
    width: min(100% - 32px, 520px);
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.35;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-tags {
    margin: 20px 0 24px;
  }

  .button-row .btn {
    min-height: 48px;
  }

  .hero-photo-wrap {
    width: 100%;
    max-width: 430px;
    justify-self: center;
    margin: 6px auto 0;
    padding: 10px;
    border-radius: 28px;
  }

  .hero-photo {
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: min(62vh, 500px);
    min-height: 0;
    border-radius: 22px;
    object-position: center top;
  }

  .stats-wrap {
    margin: 24px auto 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .stat-card {
    min-height: 112px;
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .hero-photo {
    max-height: min(58vh, 450px);
  }

  .hero-tags span {
    font-size: 12px;
  }
}

.recognition-section .recognition-grid article {
  background: rgba(255, 255, 255, 0.96) !important;
}

.recognition-section .recognition-grid article h3 {
  color: #10243d !important;
}

.recognition-section .recognition-grid article p {
  color: #566174 !important;
}

.recognition-section .recognition-grid article * {
  text-shadow: none !important;
}

#podcast.podcast-dark-section {
  color: #ffffff !important;
}

#podcast.podcast-dark-section h2,
#podcast.podcast-dark-section h3,
#podcast.podcast-dark-section h4,
#podcast.podcast-dark-section .lead,
#podcast.podcast-dark-section p {
  color: #ffffff !important;
  text-shadow: none !important;
}
