* {
  box-sizing: border-box;
}

:root {
  /* Argus logo palette — single source of truth */
  --logo-red: #e31837;
  --logo-red-deep: #b8122d;
  --logo-red-glow: rgba(227, 24, 55, 0.35);
  --logo-black: #0a0a0a;
  --logo-charcoal: #2d2d2d;
  --logo-gold: #c9a227;
  --logo-gold-bright: #e8c547;
  --logo-gold-soft: rgba(201, 162, 39, 0.2);
  --logo-white: #ffffff;
  --logo-mist: #f7f5f2;

  --bg-main: var(--logo-white);
  --bg-surface: #faf9f7;
  --bg-surface-soft: var(--logo-mist);
  --text-main: var(--logo-black);
  --text-muted: #5a5856;
  --brand: var(--logo-red);
  --brand-hover: var(--logo-red-deep);
  --brand-soft: #fdecef;
  --brand-lit: #ff6b7a;
  --accent: var(--logo-gold);
  --accent-bright: var(--logo-gold-bright);
  --border: #e8e5e1;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 14px 36px rgba(10, 10, 10, 0.07);
  --shadow-lg: 0 28px 56px rgba(10, 10, 10, 0.09);
  --shadow-brand: 0 6px 24px var(--logo-red-glow);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--brand-soft);
  color: var(--logo-black);
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  background-image: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    var(--bg-surface-soft) 48%,
    var(--logo-white) 100%
  );
  background-attachment: fixed;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: -3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 55%,
    var(--brand) 100%
  );
  opacity: 0.85;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  text-decoration: none;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo {
  display: block;
  height: 61px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .brand-logo-link:hover {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu li {
  min-width: 0;
}

.menu a {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(227, 24, 55, 0.07);
}

.hero-banner {
  margin: 0;
  line-height: 0;
  animation: heroFadeIn 1.1s ease-out both;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 58px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.8rem;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Logo accent underline — all light sections (not legacy band) */
.section:not(.legacy-section) h2 {
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--brand) 0%,
      var(--accent-bright) 100%
    )
    1;
  border-image-slice: 1;
  width: fit-content;
  max-width: 100%;
}

.animate-section {
  animation: sectionRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main > section.animate-section:nth-of-type(2) {
  animation-delay: 0.05s;
}

main > section.animate-section:nth-of-type(3) {
  animation-delay: 0.1s;
}

main > section.animate-section:nth-of-type(4) {
  animation-delay: 0.16s;
}

main > section.animate-section:nth-of-type(5) {
  animation-delay: 0.19s;
}

main > section.animate-section:nth-of-type(6) {
  animation-delay: 0.24s;
}

/* ----- Conclave Legacy (logo: red + black + gold) ----- */
.legacy-section {
  position: relative;
  padding: 72px 0 80px;
  color: #e8e6e3;
  overflow-x: clip;
  overflow-y: visible;
  border-top: 1px solid rgba(227, 24, 55, 0.35);
  border-bottom: 1px solid var(--logo-black);
}

@media (max-width: 900px) {
  .legacy-section {
    overflow-x: visible;
  }
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 88% 55% at 50% -15%, rgba(227, 24, 55, 0.2), transparent 52%),
    radial-gradient(ellipse 45% 45% at 100% 100%, var(--logo-gold-soft), transparent 45%),
    linear-gradient(168deg, var(--logo-black) 0%, #14120f 40%, #1c1814 100%);
  pointer-events: none;
}

.legacy-inner {
  position: relative;
  z-index: 1;
}

.legacy-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.legacy-eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.legacy-section h2,
.legacy-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.legacy-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #a8a5a0;
}

/* ----- Legacy roadmap panel (light UI — progress track + nodes, reference style) ----- */
.legacy-track {
  position: relative;
  width: 100%;
}

.legacy-panel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 28px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Horizontal track: grey bed + teal fill (completed journey) */
.legacy-progress {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 90px;
  height: 8px;
  z-index: 0;
  pointer-events: none;
}

.legacy-progress__bg {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
}

.legacy-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 55%, #2dd4bf 100%);
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
}

.legacy-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(8px, 1.5vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.legacy-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 0 10px;
  border-left: 1px solid #f1f5f9;
  animation: legacyCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.legacy-milestone:first-child {
  border-left: none;
}

.legacy-milestone:nth-child(1) {
  animation-delay: 0.06s;
}

.legacy-milestone:nth-child(2) {
  animation-delay: 0.12s;
}

.legacy-milestone:nth-child(3) {
  animation-delay: 0.18s;
}

.legacy-milestone:nth-child(4) {
  animation-delay: 0.24s;
}

/* Years: active style teal (first milestones), then slate — like reference */
.legacy-year {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #0d9488;
}

.legacy-milestone:nth-child(3) .legacy-year,
.legacy-milestone:nth-child(4) .legacy-year {
  color: #1e293b;
}

.legacy-milestone--final .legacy-year {
  color: #b45309;
}

/* Circular nodes with checkmarks */
.legacy-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 16px rgba(13, 148, 136, 0.2);
}

.legacy-node--done {
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(13, 148, 136, 0.25);
}

.legacy-node--final {
  background: linear-gradient(145deg, #fbbf24 0%, #d97706 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 18px rgba(251, 191, 36, 0.35);
}

.legacy-check {
  display: block;
}

.legacy-milestone__body {
  width: 100%;
  max-width: 100%;
  padding: 14px 12px 16px;
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .legacy-milestone:hover .legacy-milestone__body {
    transform: translateY(-3px);
    border-color: #e2e8f0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }
}

.legacy-season {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.legacy-blurb {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

@keyframes legacyCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1100px) {
  .legacy-panel {
    padding: 40px 36px 44px;
  }

  .legacy-progress {
    top: 94px;
  }

  .legacy-blurb {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .legacy-panel {
    padding: 32px 18px 36px;
  }

  .legacy-progress {
    left: 7%;
    right: 7%;
    top: 88px;
  }

  .legacy-milestone {
    padding: 0 6px;
  }

  .legacy-node {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .legacy-year {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
}

/* Stack on smaller screens — readable vertical roadmap */
@media (max-width: 768px) {
  .legacy-panel {
    padding: 24px 16px 28px;
    border-radius: 16px;
  }

  .legacy-progress {
    display: none;
  }

  .legacy-panel::before {
    content: "";
    position: absolute;
    left: 52px;
    top: 72px;
    bottom: 28px;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: linear-gradient(180deg, #0d9488 0%, #14b8a6 55%, #fbbf24 100%);
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
  }

  .legacy-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .legacy-milestone {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    padding: 18px 8px 18px 12px;
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .legacy-milestone:last-child {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .legacy-year {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 8px;
    font-size: 0.9rem;
  }

  .legacy-node {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    align-self: start;
    width: 40px;
    height: 40px;
  }

  .legacy-milestone__body {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 14px 14px 16px;
  }

  .legacy-milestone:nth-child(3) .legacy-year,
  .legacy-milestone:nth-child(4) .legacy-year {
    color: #0d9488;
  }

  .legacy-milestone--final .legacy-year {
    color: #b45309;
  }
}

@media (max-width: 400px) {
  .legacy-panel::before {
    left: 44px;
  }

  .legacy-milestone {
    grid-template-columns: 46px 1fr;
    padding-left: 8px;
  }
}

.about-split {
  background: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    #fdf2f3 38%,
    var(--bg-surface-soft) 50%,
    var(--logo-white) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.about-copy {
  padding-left: clamp(12px, 2vw, 20px);
  border-left: 3px solid var(--brand);
}

.about-eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.about-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--text-main);
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 52ch;
}

.about-copy p:last-of-type {
  margin-bottom: 18px;
}

.about-copy strong {
  color: var(--text-main);
  font-weight: 700;
}

.about-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pills li {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-pills li:hover {
    border-color: #fecaca;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
  }
}

.about-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: min(100%, 520px);
  margin-inline: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid var(--brand);
    padding-top: 20px;
  }

  .about-media {
    max-width: min(100%, 400px);
    aspect-ratio: 1 / 1;
  }

  .about-copy p {
    max-width: none;
  }
}

.highlights ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
}

.highlights ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.highlights ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 2px var(--logo-white), 0 2px 6px rgba(227, 24, 55, 0.25);
}

/* ----- Categories Preview — award category cards ----- */
.categories-preview {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
}

.categories-preview__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(227, 24, 55, 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 85%, rgba(201, 162, 39, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(227, 24, 55, 0.04), transparent 50%),
    linear-gradient(180deg, #fffdfb 0%, #faf7f4 42%, #fffdfb 100%);
  pointer-events: none;
}

.categories-preview__inner {
  position: relative;
  z-index: 1;
}

.categories-awards {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px) 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.categories-awards__head {
  margin-bottom: 40px;
  text-align: left;
}

.categories-awards__head h2 {
  width: fit-content;
  max-width: 100%;
}

.categories-awards__subtitle {
  margin: 0;
  max-width: 42rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.categories-awards__subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.categories-awards__list {
  --award-gap: clamp(18px, 2.2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--award-gap);
  align-items: stretch;
}

.categories-awards__list > .award-row {
  grid-column: span 2;
}

@media (min-width: 901px) {
  .award-row--last {
    grid-column: 3 / span 2;
  }

  .award-row--center-start {
    grid-column: 2 / span 2;
  }

  .award-row--center-end {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 900px) {
  .categories-awards__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories-awards__list > .award-row {
    grid-column: auto;
  }

  .award-row--center-start,
  .award-row--center-end {
    grid-column: auto;
  }

  .award-row--last {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - var(--award-gap)) / 2));
  }
}

@media (max-width: 640px) {
  .categories-awards__list {
    grid-template-columns: 1fr;
  }

  .award-row--last {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.award-row {
  --award-card-pad: clamp(22px, 2.5vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: calc(10px + var(--award-card-pad)) var(--award-card-pad) var(--award-card-pad);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(165deg, var(--logo-white) 0%, #fdfcfa 48%, #faf8f5 100%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 40px rgba(10, 10, 10, 0.06),
    0 2px 8px rgba(10, 10, 10, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.award-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 42%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 16px rgba(227, 24, 55, 0.25);
}

.award-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    120% 80% at 10% 0%,
    rgba(232, 197, 71, 0.12),
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .award-row:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 24, 55, 0.18);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 22px 48px rgba(10, 10, 10, 0.1),
      0 8px 20px rgba(227, 24, 55, 0.12);
  }

  .award-row:hover::after {
    opacity: 1;
  }

  .award-row:hover .award-row__icon {
    border-color: rgba(227, 24, 55, 0.28);
    background: linear-gradient(
      145deg,
      rgba(253, 236, 239, 0.95) 0%,
      rgba(255, 250, 235, 0.9) 100%
    );
    color: var(--brand);
    box-shadow: 0 6px 18px rgba(227, 24, 55, 0.12);
  }
}

.award-row__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--brand);
  background: linear-gradient(
    145deg,
    rgba(253, 236, 239, 0.85) 0%,
    rgba(255, 252, 245, 0.95) 100%
  );
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.award-row__icon svg {
  flex-shrink: 0;
}

.award-row__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.award-row__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.award-row__meta {
  display: inline-block;
  margin: 10px 0 0;
  padding: 5px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(227, 24, 55, 0.08);
  border: 1px solid rgba(227, 24, 55, 0.12);
}

.award-row__desc {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.award-row__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.btn-award-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  padding: 11px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--logo-white);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-hover) 100%);
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-award-card__arrow {
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease;
}

.btn-award-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(227, 24, 55, 0.38);
  }

  .btn-award-card:hover .btn-award-card__arrow {
    transform: translateX(4px);
  }
}

.btn-award-card-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: min(100%, 120px);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--logo-white);
  box-shadow: var(--shadow-sm);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-award-card-secondary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card-secondary:hover {
    color: var(--brand);
    border-color: rgba(227, 24, 55, 0.35);
    background: var(--brand-soft);
    transform: translateY(-1px);
  }
}

@media (max-width: 520px) {
  .categories-preview {
    padding: 68px 0 76px;
  }

  .categories-awards__head {
    margin-bottom: 28px;
  }

  .award-row {
    border-radius: 20px;
  }

  .award-row__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-award-card,
  .btn-award-card-secondary {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

.timeline {
  position: relative;
  padding: 72px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, #faf9f7 0%, var(--logo-white) 38%, #f7f5f0 100%);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.05);
  overflow: hidden;
}

.timeline-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(227, 24, 55, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(201, 162, 39, 0.08), transparent 50%);
  pointer-events: none;
}

.timeline-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 48px;
}

.timeline-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.timeline-eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-lede {
  margin: 14px auto 0;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 48px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    rgba(227, 24, 55, 0.85) 0%,
    rgba(227, 24, 55, 0.35) 35%,
    rgba(201, 162, 39, 0.55) 70%,
    rgba(201, 162, 39, 0.9) 100%
  );
  opacity: 0.55;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 20px;
  align-items: start;
  padding-bottom: 28px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 4px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--logo-white);
  background: linear-gradient(145deg, var(--brand) 0%, var(--logo-red-deep) 100%);
  border: 3px solid var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(227, 24, 55, 0.15),
    0 6px 16px rgba(227, 24, 55, 0.25);
  transition: transform 0.28s ease;
}

.timeline-step__marker--final {
  color: #1a0a0a;
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--logo-gold) 100%);
  border-color: var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(201, 162, 39, 0.25),
    0 8px 22px rgba(201, 162, 39, 0.35);
}

.timeline-step__card {
  padding: 20px 22px 22px;
  background: var(--logo-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.timeline-step__card--highlight {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(165deg, #fffefb 0%, var(--logo-white) 100%);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(201, 162, 39, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .timeline-step:hover .timeline-step__card {
    border-color: rgba(227, 24, 55, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .timeline-step:hover .timeline-step__card--highlight {
    border-color: rgba(201, 162, 39, 0.55);
  }

  .timeline-step:hover .timeline-step__marker {
    transform: scale(1.06);
  }
}

.timeline-step__label {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-step--highlight .timeline-step__label {
  color: #9a7b18;
}

.timeline-step__date {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

.timeline-step__hint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .timeline {
    padding: 56px 0 64px;
  }

  .timeline-header {
    margin-bottom: 36px;
  }

  .timeline-steps::before {
    left: 14px;
    bottom: 40px;
  }

  .timeline-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 14px;
    padding-bottom: 22px;
  }

  .timeline-step__marker {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .timeline-step__card {
    padding: 16px 18px 18px;
    border-radius: 14px;
  }

  .timeline-step__date {
    font-size: 1.15rem;
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  color: #e8e9ec;
  background: linear-gradient(180deg, #0e1218 0%, #080b0f 50%, #06080c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 45%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 20px var(--logo-red-glow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  padding: 52px 0 44px;
}

.site-footer__brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
  border-radius: 14px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-logo-frame {
  display: inline-block;
  padding: 12px 18px;
  background: var(--logo-white);
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: min(260px, 72vw);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
}

.footer-tagline {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.footer-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 28rem;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.95);
}

.site-footer__aside {
  min-width: 0;
}

.site-footer__contact-lede {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #9ca3af;
}

.site-footer__contact-details {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.site-footer__contact-details a {
  font-size: 0.93rem;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__contact-details a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__contact-details a:hover {
    color: var(--logo-white);
    transform: translateX(3px);
  }
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.site-footer__badge-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-bright));
  box-shadow: 0 0 12px var(--logo-red-glow);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.site-footer__top {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d1d5db;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-footer__top:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__top:hover {
    color: var(--logo-white);
    border-color: rgba(232, 197, 71, 0.45);
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 36px;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    padding: 40px 0 32px;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 24px;
  }

  .site-footer__contact-details a:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-wrap nav {
    width: 100%;
  }

  .menu {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: 94%;
  }

  .menu {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2px;
  }

  .menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

}

@media (hover: none), (pointer: coarse) {
  .menu a {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-banner,
  .animate-section,
  .brand-logo-link,
  .footer-logo-link {
    animation: none !important;
  }

  .legacy-milestone {
    animation: none !important;
  }

  .award-row {
    transition: none;
  }

  .award-row__icon {
    transition: none;
  }

  .award-row::after {
    transition: none;
  }

  .timeline-step__card {
    transition: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .timeline-step:hover .timeline-step__card,
    .timeline-step:hover .timeline-step__marker {
      transform: none;
    }

    .award-row:hover {
      transform: none;
    }

    .award-row:hover .award-row__icon {
      transform: none;
    }

    .btn-award-card:hover,
    .btn-award-card:hover .btn-award-card__arrow {
      transform: none;
    }

    .btn-award-card-secondary:hover {
      transform: none;
    }

    .footer-logo-link:hover,
    .site-footer__contact-details a:hover {
      transform: none;
    }

    .legacy-milestone:hover .legacy-milestone__body {
      transform: none;
    }
  }
}
* {
  box-sizing: border-box;
}

:root {
  /* Argus logo palette — single source of truth */
  --logo-red: #e31837;
  --logo-red-deep: #b8122d;
  --logo-red-glow: rgba(227, 24, 55, 0.35);
  --logo-black: #0a0a0a;
  --logo-charcoal: #2d2d2d;
  --logo-gold: #c9a227;
  --logo-gold-bright: #e8c547;
  --logo-gold-soft: rgba(201, 162, 39, 0.2);
  --logo-white: #ffffff;
  --logo-mist: #f7f5f2;

  --bg-main: var(--logo-white);
  --bg-surface: #faf9f7;
  --bg-surface-soft: var(--logo-mist);
  --text-main: var(--logo-black);
  --text-muted: #5a5856;
  --brand: var(--logo-red);
  --brand-hover: var(--logo-red-deep);
  --brand-soft: #fdecef;
  --brand-lit: #ff6b7a;
  --accent: var(--logo-gold);
  --accent-bright: var(--logo-gold-bright);
  --border: #e8e5e1;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 14px 36px rgba(10, 10, 10, 0.07);
  --shadow-lg: 0 28px 56px rgba(10, 10, 10, 0.09);
  --shadow-brand: 0 6px 24px var(--logo-red-glow);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--brand-soft);
  color: var(--logo-black);
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  background-image: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    var(--bg-surface-soft) 48%,
    var(--logo-white) 100%
  );
  background-attachment: fixed;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: -3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 55%,
    var(--brand) 100%
  );
  opacity: 0.85;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  text-decoration: none;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo {
  display: block;
  height: 61px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .brand-logo-link:hover {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu li {
  min-width: 0;
}

.menu a {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(227, 24, 55, 0.07);
}

.hero-banner {
  margin: 0;
  line-height: 0;
  animation: heroFadeIn 1.1s ease-out both;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 58px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.8rem;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Logo accent underline — all light sections (not legacy band) */
.section:not(.legacy-section) h2 {
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--brand) 0%,
      var(--accent-bright) 100%
    )
    1;
  border-image-slice: 1;
  width: fit-content;
  max-width: 100%;
}

.animate-section {
  animation: sectionRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main > section.animate-section:nth-of-type(2) {
  animation-delay: 0.05s;
}

main > section.animate-section:nth-of-type(3) {
  animation-delay: 0.1s;
}

main > section.animate-section:nth-of-type(4) {
  animation-delay: 0.16s;
}

main > section.animate-section:nth-of-type(5) {
  animation-delay: 0.19s;
}

main > section.animate-section:nth-of-type(6) {
  animation-delay: 0.24s;
}

/* ----- Conclave Legacy (logo: red + black + gold) ----- */
.legacy-section {
  position: relative;
  padding: 72px 0 80px;
  color: #e8e6e3;
  overflow-x: clip;
  overflow-y: visible;
  border-top: 1px solid rgba(227, 24, 55, 0.35);
  border-bottom: 1px solid var(--logo-black);
}

@media (max-width: 900px) {
  .legacy-section {
    overflow-x: visible;
  }
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 88% 55% at 50% -15%, rgba(227, 24, 55, 0.2), transparent 52%),
    radial-gradient(ellipse 45% 45% at 100% 100%, var(--logo-gold-soft), transparent 45%),
    linear-gradient(168deg, var(--logo-black) 0%, #14120f 40%, #1c1814 100%);
  pointer-events: none;
}

.legacy-inner {
  position: relative;
  z-index: 1;
}

.legacy-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.legacy-eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.legacy-section h2,
.legacy-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.legacy-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #a8a5a0;
}

/* ----- Legacy roadmap panel (light UI — progress track + nodes, reference style) ----- */
.legacy-track {
  position: relative;
  width: 100%;
}

.legacy-panel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 28px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Horizontal track: grey bed + teal fill (completed journey) */
.legacy-progress {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 90px;
  height: 8px;
  z-index: 0;
  pointer-events: none;
}

.legacy-progress__bg {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
}

.legacy-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 55%, #2dd4bf 100%);
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
}

.legacy-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(8px, 1.5vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.legacy-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 0 10px;
  border-left: 1px solid #f1f5f9;
  animation: legacyCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.legacy-milestone:first-child {
  border-left: none;
}

.legacy-milestone:nth-child(1) {
  animation-delay: 0.06s;
}

.legacy-milestone:nth-child(2) {
  animation-delay: 0.12s;
}

.legacy-milestone:nth-child(3) {
  animation-delay: 0.18s;
}

.legacy-milestone:nth-child(4) {
  animation-delay: 0.24s;
}

/* Years: active style teal (first milestones), then slate — like reference */
.legacy-year {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #0d9488;
}

.legacy-milestone:nth-child(3) .legacy-year,
.legacy-milestone:nth-child(4) .legacy-year {
  color: #1e293b;
}

.legacy-milestone--final .legacy-year {
  color: #b45309;
}

/* Circular nodes with checkmarks */
.legacy-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 16px rgba(13, 148, 136, 0.2);
}

.legacy-node--done {
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(13, 148, 136, 0.25);
}

.legacy-node--final {
  background: linear-gradient(145deg, #fbbf24 0%, #d97706 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 18px rgba(251, 191, 36, 0.35);
}

.legacy-check {
  display: block;
}

.legacy-milestone__body {
  width: 100%;
  max-width: 100%;
  padding: 14px 12px 16px;
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .legacy-milestone:hover .legacy-milestone__body {
    transform: translateY(-3px);
    border-color: #e2e8f0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }
}

.legacy-season {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.legacy-blurb {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

@keyframes legacyCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1100px) {
  .legacy-panel {
    padding: 40px 36px 44px;
  }

  .legacy-progress {
    top: 94px;
  }

  .legacy-blurb {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .legacy-panel {
    padding: 32px 18px 36px;
  }

  .legacy-progress {
    left: 7%;
    right: 7%;
    top: 88px;
  }

  .legacy-milestone {
    padding: 0 6px;
  }

  .legacy-node {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .legacy-year {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
}

/* Stack on smaller screens — readable vertical roadmap */
@media (max-width: 768px) {
  .legacy-panel {
    padding: 24px 16px 28px;
    border-radius: 16px;
  }

  .legacy-progress {
    display: none;
  }

  .legacy-panel::before {
    content: "";
    position: absolute;
    left: 52px;
    top: 72px;
    bottom: 28px;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: linear-gradient(180deg, #0d9488 0%, #14b8a6 55%, #fbbf24 100%);
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
  }

  .legacy-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .legacy-milestone {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    padding: 18px 8px 18px 12px;
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .legacy-milestone:last-child {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .legacy-year {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 8px;
    font-size: 0.9rem;
  }

  .legacy-node {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    align-self: start;
    width: 40px;
    height: 40px;
  }

  .legacy-milestone__body {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 14px 14px 16px;
  }

  .legacy-milestone:nth-child(3) .legacy-year,
  .legacy-milestone:nth-child(4) .legacy-year {
    color: #0d9488;
  }

  .legacy-milestone--final .legacy-year {
    color: #b45309;
  }
}

@media (max-width: 400px) {
  .legacy-panel::before {
    left: 44px;
  }

  .legacy-milestone {
    grid-template-columns: 46px 1fr;
    padding-left: 8px;
  }
}

.about-split {
  background: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    #fdf2f3 38%,
    var(--bg-surface-soft) 50%,
    var(--logo-white) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.about-copy {
  padding-left: clamp(12px, 2vw, 20px);
  border-left: 3px solid var(--brand);
}

.about-eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.about-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--text-main);
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 52ch;
}

.about-copy p:last-of-type {
  margin-bottom: 18px;
}

.about-copy strong {
  color: var(--text-main);
  font-weight: 700;
}

.about-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pills li {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-pills li:hover {
    border-color: #fecaca;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
  }
}

.about-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: min(100%, 520px);
  margin-inline: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid var(--brand);
    padding-top: 20px;
  }

  .about-media {
    max-width: min(100%, 400px);
    aspect-ratio: 1 / 1;
  }

  .about-copy p {
    max-width: none;
  }
}

.highlights ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
}

.highlights ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.highlights ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 2px var(--logo-white), 0 2px 6px rgba(227, 24, 55, 0.25);
}

/* ----- Categories Preview — award category cards ----- */
.categories-preview {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
}

.categories-preview__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(227, 24, 55, 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 85%, rgba(201, 162, 39, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(227, 24, 55, 0.04), transparent 50%),
    linear-gradient(180deg, #fffdfb 0%, #faf7f4 42%, #fffdfb 100%);
  pointer-events: none;
}

.categories-preview__inner {
  position: relative;
  z-index: 1;
}

.categories-awards {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px) 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.categories-awards__head {
  margin-bottom: 40px;
  text-align: left;
}

.categories-awards__head h2 {
  width: fit-content;
  max-width: 100%;
}

.categories-awards__subtitle {
  margin: 0;
  max-width: 42rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.categories-awards__subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.categories-awards__list {
  --award-gap: clamp(18px, 2.2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--award-gap);
  align-items: stretch;
}

.categories-awards__list > .award-row {
  grid-column: span 2;
}

@media (min-width: 901px) {
  .award-row--last {
    grid-column: 3 / span 2;
  }

  .award-row--center-start {
    grid-column: 2 / span 2;
  }

  .award-row--center-end {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 900px) {
  .categories-awards__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories-awards__list > .award-row {
    grid-column: auto;
  }

  .award-row--center-start,
  .award-row--center-end {
    grid-column: auto;
  }

  .award-row--last {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - var(--award-gap)) / 2));
  }
}

@media (max-width: 640px) {
  .categories-awards__list {
    grid-template-columns: 1fr;
  }

  .award-row--last {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.award-row {
  --award-card-pad: clamp(22px, 2.5vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: calc(10px + var(--award-card-pad)) var(--award-card-pad) var(--award-card-pad);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(165deg, var(--logo-white) 0%, #fdfcfa 48%, #faf8f5 100%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 40px rgba(10, 10, 10, 0.06),
    0 2px 8px rgba(10, 10, 10, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.award-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 42%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 16px rgba(227, 24, 55, 0.25);
}

.award-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    120% 80% at 10% 0%,
    rgba(232, 197, 71, 0.12),
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .award-row:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 24, 55, 0.18);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 22px 48px rgba(10, 10, 10, 0.1),
      0 8px 20px rgba(227, 24, 55, 0.12);
  }

  .award-row:hover::after {
    opacity: 1;
  }

  .award-row:hover .award-row__icon {
    border-color: rgba(227, 24, 55, 0.28);
    background: linear-gradient(
      145deg,
      rgba(253, 236, 239, 0.95) 0%,
      rgba(255, 250, 235, 0.9) 100%
    );
    color: var(--brand);
    box-shadow: 0 6px 18px rgba(227, 24, 55, 0.12);
  }
}

.award-row__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--brand);
  background: linear-gradient(
    145deg,
    rgba(253, 236, 239, 0.85) 0%,
    rgba(255, 252, 245, 0.95) 100%
  );
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.award-row__icon svg {
  flex-shrink: 0;
}

.award-row__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.award-row__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.award-row__meta {
  display: inline-block;
  margin: 10px 0 0;
  padding: 5px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(227, 24, 55, 0.08);
  border: 1px solid rgba(227, 24, 55, 0.12);
}

.award-row__desc {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.award-row__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.btn-award-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  padding: 11px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--logo-white);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-hover) 100%);
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-award-card__arrow {
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease;
}

.btn-award-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(227, 24, 55, 0.38);
  }

  .btn-award-card:hover .btn-award-card__arrow {
    transform: translateX(4px);
  }
}

.btn-award-card-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: min(100%, 120px);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--logo-white);
  box-shadow: var(--shadow-sm);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-award-card-secondary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card-secondary:hover {
    color: var(--brand);
    border-color: rgba(227, 24, 55, 0.35);
    background: var(--brand-soft);
    transform: translateY(-1px);
  }
}

@media (max-width: 520px) {
  .categories-preview {
    padding: 68px 0 76px;
  }

  .categories-awards__head {
    margin-bottom: 28px;
  }

  .award-row {
    border-radius: 20px;
  }

  .award-row__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-award-card,
  .btn-award-card-secondary {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

.timeline {
  position: relative;
  padding: 72px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, #faf9f7 0%, var(--logo-white) 38%, #f7f5f0 100%);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.05);
  overflow: hidden;
}

.timeline-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(227, 24, 55, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(201, 162, 39, 0.08), transparent 50%);
  pointer-events: none;
}

.timeline-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 48px;
}

.timeline-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.timeline-eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-lede {
  margin: 14px auto 0;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 48px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    rgba(227, 24, 55, 0.85) 0%,
    rgba(227, 24, 55, 0.35) 35%,
    rgba(201, 162, 39, 0.55) 70%,
    rgba(201, 162, 39, 0.9) 100%
  );
  opacity: 0.55;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 20px;
  align-items: start;
  padding-bottom: 28px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 4px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--logo-white);
  background: linear-gradient(145deg, var(--brand) 0%, var(--logo-red-deep) 100%);
  border: 3px solid var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(227, 24, 55, 0.15),
    0 6px 16px rgba(227, 24, 55, 0.25);
  transition: transform 0.28s ease;
}

.timeline-step__marker--final {
  color: #1a0a0a;
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--logo-gold) 100%);
  border-color: var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(201, 162, 39, 0.25),
    0 8px 22px rgba(201, 162, 39, 0.35);
}

.timeline-step__card {
  padding: 20px 22px 22px;
  background: var(--logo-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.timeline-step__card--highlight {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(165deg, #fffefb 0%, var(--logo-white) 100%);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(201, 162, 39, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .timeline-step:hover .timeline-step__card {
    border-color: rgba(227, 24, 55, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .timeline-step:hover .timeline-step__card--highlight {
    border-color: rgba(201, 162, 39, 0.55);
  }

  .timeline-step:hover .timeline-step__marker {
    transform: scale(1.06);
  }
}

.timeline-step__label {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-step--highlight .timeline-step__label {
  color: #9a7b18;
}

.timeline-step__date {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

.timeline-step__hint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .timeline {
    padding: 56px 0 64px;
  }

  .timeline-header {
    margin-bottom: 36px;
  }

  .timeline-steps::before {
    left: 14px;
    bottom: 40px;
  }

  .timeline-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 14px;
    padding-bottom: 22px;
  }

  .timeline-step__marker {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .timeline-step__card {
    padding: 16px 18px 18px;
    border-radius: 14px;
  }

  .timeline-step__date {
    font-size: 1.15rem;
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  color: #e8e9ec;
  background: linear-gradient(180deg, #0e1218 0%, #080b0f 50%, #06080c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 45%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 20px var(--logo-red-glow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  padding: 52px 0 44px;
}

.site-footer__brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
  border-radius: 14px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-logo-frame {
  display: inline-block;
  padding: 12px 18px;
  background: var(--logo-white);
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: min(260px, 72vw);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
}

.footer-tagline {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.footer-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 28rem;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.95);
}

.site-footer__aside {
  min-width: 0;
}

.site-footer__contact-lede {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #9ca3af;
}

.site-footer__contact-details {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.site-footer__contact-details a {
  font-size: 0.93rem;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__contact-details a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__contact-details a:hover {
    color: var(--logo-white);
    transform: translateX(3px);
  }
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.site-footer__badge-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-bright));
  box-shadow: 0 0 12px var(--logo-red-glow);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.site-footer__top {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d1d5db;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-footer__top:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__top:hover {
    color: var(--logo-white);
    border-color: rgba(232, 197, 71, 0.45);
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 36px;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    padding: 40px 0 32px;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 24px;
  }

  .site-footer__contact-details a:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-wrap nav {
    width: 100%;
  }

  .menu {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: 94%;
  }

  .menu {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2px;
  }

  .menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

}

@media (hover: none), (pointer: coarse) {
  .menu a {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-banner,
  .animate-section,
  .brand-logo-link,
  .footer-logo-link {
    animation: none !important;
  }

  .legacy-milestone {
    animation: none !important;
  }

  .award-row {
    transition: none;
  }

  .award-row__icon {
    transition: none;
  }

  .award-row::after {
    transition: none;
  }

  .timeline-step__card {
    transition: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .timeline-step:hover .timeline-step__card,
    .timeline-step:hover .timeline-step__marker {
      transform: none;
    }

    .award-row:hover {
      transform: none;
    }

    .award-row:hover .award-row__icon {
      transform: none;
    }

    .btn-award-card:hover,
    .btn-award-card:hover .btn-award-card__arrow {
      transform: none;
    }

    .btn-award-card-secondary:hover {
      transform: none;
    }

    .footer-logo-link:hover,
    .site-footer__contact-details a:hover {
      transform: none;
    }

    .legacy-milestone:hover .legacy-milestone__body {
      transform: none;
    }
  }
}
* {
  box-sizing: border-box;
}

:root {
  /* Argus logo palette — single source of truth */
  --logo-red: #e31837;
  --logo-red-deep: #b8122d;
  --logo-red-glow: rgba(227, 24, 55, 0.35);
  --logo-black: #0a0a0a;
  --logo-charcoal: #2d2d2d;
  --logo-gold: #c9a227;
  --logo-gold-bright: #e8c547;
  --logo-gold-soft: rgba(201, 162, 39, 0.2);
  --logo-white: #ffffff;
  --logo-mist: #f7f5f2;

  --bg-main: var(--logo-white);
  --bg-surface: #faf9f7;
  --bg-surface-soft: var(--logo-mist);
  --text-main: var(--logo-black);
  --text-muted: #5a5856;
  --brand: var(--logo-red);
  --brand-hover: var(--logo-red-deep);
  --brand-soft: #fdecef;
  --brand-lit: #ff6b7a;
  --accent: var(--logo-gold);
  --accent-bright: var(--logo-gold-bright);
  --border: #e8e5e1;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 14px 36px rgba(10, 10, 10, 0.07);
  --shadow-lg: 0 28px 56px rgba(10, 10, 10, 0.09);
  --shadow-brand: 0 6px 24px var(--logo-red-glow);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--brand-soft);
  color: var(--logo-black);
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  background-image: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    var(--bg-surface-soft) 48%,
    var(--logo-white) 100%
  );
  background-attachment: fixed;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: -3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 55%,
    var(--brand) 100%
  );
  opacity: 0.85;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  text-decoration: none;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo {
  display: block;
  height: 61px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .brand-logo-link:hover {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu li {
  min-width: 0;
}

.menu a {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(227, 24, 55, 0.07);
}

.hero-banner {
  margin: 0;
  line-height: 0;
  animation: heroFadeIn 1.1s ease-out both;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 58px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.8rem;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Logo accent underline — all light sections (not legacy band) */
.section:not(.legacy-section) h2 {
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--brand) 0%,
      var(--accent-bright) 100%
    )
    1;
  border-image-slice: 1;
  width: fit-content;
  max-width: 100%;
}

.animate-section {
  animation: sectionRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main > section.animate-section:nth-of-type(2) {
  animation-delay: 0.05s;
}

main > section.animate-section:nth-of-type(3) {
  animation-delay: 0.1s;
}

main > section.animate-section:nth-of-type(4) {
  animation-delay: 0.16s;
}

main > section.animate-section:nth-of-type(5) {
  animation-delay: 0.19s;
}

main > section.animate-section:nth-of-type(6) {
  animation-delay: 0.24s;
}

/* ----- Conclave Legacy (logo: red + black + gold) ----- */
.legacy-section {
  position: relative;
  padding: 72px 0 80px;
  color: #e8e6e3;
  overflow-x: clip;
  overflow-y: visible;
  border-top: 1px solid rgba(227, 24, 55, 0.35);
  border-bottom: 1px solid var(--logo-black);
}

@media (max-width: 900px) {
  .legacy-section {
    overflow-x: visible;
  }
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 88% 55% at 50% -15%, rgba(227, 24, 55, 0.2), transparent 52%),
    radial-gradient(ellipse 45% 45% at 100% 100%, var(--logo-gold-soft), transparent 45%),
    linear-gradient(168deg, var(--logo-black) 0%, #14120f 40%, #1c1814 100%);
  pointer-events: none;
}

.legacy-inner {
  position: relative;
  z-index: 1;
}

.legacy-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.legacy-eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.legacy-section h2,
.legacy-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.legacy-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #a8a5a0;
}

/* ----- Legacy roadmap panel (light UI — progress track + nodes, reference style) ----- */
.legacy-track {
  position: relative;
  width: 100%;
}

.legacy-panel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 28px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Horizontal track: grey bed + teal fill (completed journey) */
.legacy-progress {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 90px;
  height: 8px;
  z-index: 0;
  pointer-events: none;
}

.legacy-progress__bg {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
}

.legacy-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 55%, #2dd4bf 100%);
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
}

.legacy-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(8px, 1.5vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.legacy-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 0 10px;
  border-left: 1px solid #f1f5f9;
  animation: legacyCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.legacy-milestone:first-child {
  border-left: none;
}

.legacy-milestone:nth-child(1) {
  animation-delay: 0.06s;
}

.legacy-milestone:nth-child(2) {
  animation-delay: 0.12s;
}

.legacy-milestone:nth-child(3) {
  animation-delay: 0.18s;
}

.legacy-milestone:nth-child(4) {
  animation-delay: 0.24s;
}

/* Years: active style teal (first milestones), then slate — like reference */
.legacy-year {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #0d9488;
}

.legacy-milestone:nth-child(3) .legacy-year,
.legacy-milestone:nth-child(4) .legacy-year {
  color: #1e293b;
}

.legacy-milestone--final .legacy-year {
  color: #b45309;
}

/* Circular nodes with checkmarks */
.legacy-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 16px rgba(13, 148, 136, 0.2);
}

.legacy-node--done {
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(13, 148, 136, 0.25);
}

.legacy-node--final {
  background: linear-gradient(145deg, #fbbf24 0%, #d97706 100%);
  border: 3px solid #ffffff;
  outline: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12),
    0 4px 18px rgba(251, 191, 36, 0.35);
}

.legacy-check {
  display: block;
}

.legacy-milestone__body {
  width: 100%;
  max-width: 100%;
  padding: 14px 12px 16px;
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .legacy-milestone:hover .legacy-milestone__body {
    transform: translateY(-3px);
    border-color: #e2e8f0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }
}

.legacy-season {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.legacy-blurb {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

@keyframes legacyCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1100px) {
  .legacy-panel {
    padding: 40px 36px 44px;
  }

  .legacy-progress {
    top: 94px;
  }

  .legacy-blurb {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .legacy-panel {
    padding: 32px 18px 36px;
  }

  .legacy-progress {
    left: 7%;
    right: 7%;
    top: 88px;
  }

  .legacy-milestone {
    padding: 0 6px;
  }

  .legacy-node {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .legacy-year {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
}

/* Stack on smaller screens — readable vertical roadmap */
@media (max-width: 768px) {
  .legacy-panel {
    padding: 24px 16px 28px;
    border-radius: 16px;
  }

  .legacy-progress {
    display: none;
  }

  .legacy-panel::before {
    content: "";
    position: absolute;
    left: 52px;
    top: 72px;
    bottom: 28px;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: linear-gradient(180deg, #0d9488 0%, #14b8a6 55%, #fbbf24 100%);
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
  }

  .legacy-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .legacy-milestone {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    padding: 18px 8px 18px 12px;
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .legacy-milestone:last-child {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .legacy-year {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 8px;
    font-size: 0.9rem;
  }

  .legacy-node {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    align-self: start;
    width: 40px;
    height: 40px;
  }

  .legacy-milestone__body {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 14px 14px 16px;
  }

  .legacy-milestone:nth-child(3) .legacy-year,
  .legacy-milestone:nth-child(4) .legacy-year {
    color: #0d9488;
  }

  .legacy-milestone--final .legacy-year {
    color: #b45309;
  }
}

@media (max-width: 400px) {
  .legacy-panel::before {
    left: 44px;
  }

  .legacy-milestone {
    grid-template-columns: 46px 1fr;
    padding-left: 8px;
  }
}

.about-split {
  background: linear-gradient(
    180deg,
    var(--logo-white) 0%,
    #fdf2f3 38%,
    var(--bg-surface-soft) 50%,
    var(--logo-white) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.about-copy {
  padding-left: clamp(12px, 2vw, 20px);
  border-left: 3px solid var(--brand);
}

.about-eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.about-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--text-main);
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 52ch;
}

.about-copy p:last-of-type {
  margin-bottom: 18px;
}

.about-copy strong {
  color: var(--text-main);
  font-weight: 700;
}

.about-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pills li {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-pills li:hover {
    border-color: #fecaca;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
  }
}

.about-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: min(100%, 520px);
  margin-inline: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid var(--brand);
    padding-top: 20px;
  }

  .about-media {
    max-width: min(100%, 400px);
    aspect-ratio: 1 / 1;
  }

  .about-copy p {
    max-width: none;
  }
}

.highlights ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
}

.highlights ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.highlights ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 2px var(--logo-white), 0 2px 6px rgba(227, 24, 55, 0.25);
}

/* ----- Categories Preview — award category cards ----- */
.categories-preview {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
}

.categories-preview__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(227, 24, 55, 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 85%, rgba(201, 162, 39, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(227, 24, 55, 0.04), transparent 50%),
    linear-gradient(180deg, #fffdfb 0%, #faf7f4 42%, #fffdfb 100%);
  pointer-events: none;
}

.categories-preview__inner {
  position: relative;
  z-index: 1;
}

.categories-awards {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px) 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.categories-awards__head {
  margin-bottom: 40px;
  text-align: left;
}

.categories-awards__head h2 {
  width: fit-content;
  max-width: 100%;
}

.categories-awards__subtitle {
  margin: 0;
  max-width: 42rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.categories-awards__subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.categories-awards__list {
  --award-gap: clamp(18px, 2.2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--award-gap);
  align-items: stretch;
}

.categories-awards__list > .award-row {
  grid-column: span 2;
}

@media (min-width: 901px) {
  .award-row--last {
    grid-column: 3 / span 2;
  }

  .award-row--center-start {
    grid-column: 2 / span 2;
  }

  .award-row--center-end {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 900px) {
  .categories-awards__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories-awards__list > .award-row {
    grid-column: auto;
  }

  .award-row--center-start,
  .award-row--center-end {
    grid-column: auto;
  }

  .award-row--last {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - var(--award-gap)) / 2));
  }
}

@media (max-width: 640px) {
  .categories-awards__list {
    grid-template-columns: 1fr;
  }

  .award-row--last {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.award-row {
  --award-card-pad: clamp(22px, 2.5vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: calc(10px + var(--award-card-pad)) var(--award-card-pad) var(--award-card-pad);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(165deg, var(--logo-white) 0%, #fdfcfa 48%, #faf8f5 100%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 40px rgba(10, 10, 10, 0.06),
    0 2px 8px rgba(10, 10, 10, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.award-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 42%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 16px rgba(227, 24, 55, 0.25);
}

.award-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    120% 80% at 10% 0%,
    rgba(232, 197, 71, 0.12),
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .award-row:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 24, 55, 0.18);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 22px 48px rgba(10, 10, 10, 0.1),
      0 8px 20px rgba(227, 24, 55, 0.12);
  }

  .award-row:hover::after {
    opacity: 1;
  }

  .award-row:hover .award-row__icon {
    border-color: rgba(227, 24, 55, 0.28);
    background: linear-gradient(
      145deg,
      rgba(253, 236, 239, 0.95) 0%,
      rgba(255, 250, 235, 0.9) 100%
    );
    color: var(--brand);
    box-shadow: 0 6px 18px rgba(227, 24, 55, 0.12);
  }
}

.award-row__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--brand);
  background: linear-gradient(
    145deg,
    rgba(253, 236, 239, 0.85) 0%,
    rgba(255, 252, 245, 0.95) 100%
  );
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.award-row__icon svg {
  flex-shrink: 0;
}

.award-row__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.award-row__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.award-row__meta {
  display: inline-block;
  margin: 10px 0 0;
  padding: 5px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(227, 24, 55, 0.08);
  border: 1px solid rgba(227, 24, 55, 0.12);
}

.award-row__desc {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.award-row__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.btn-award-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  padding: 11px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--logo-white);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-hover) 100%);
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-award-card__arrow {
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease;
}

.btn-award-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(227, 24, 55, 0.38);
  }

  .btn-award-card:hover .btn-award-card__arrow {
    transform: translateX(4px);
  }
}

.btn-award-card-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: min(100%, 120px);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--logo-white);
  box-shadow: var(--shadow-sm);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-award-card-secondary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-award-card-secondary:hover {
    color: var(--brand);
    border-color: rgba(227, 24, 55, 0.35);
    background: var(--brand-soft);
    transform: translateY(-1px);
  }
}

@media (max-width: 520px) {
  .categories-preview {
    padding: 68px 0 76px;
  }

  .categories-awards__head {
    margin-bottom: 28px;
  }

  .award-row {
    border-radius: 20px;
  }

  .award-row__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-award-card,
  .btn-award-card-secondary {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

.timeline {
  position: relative;
  padding: 72px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, #faf9f7 0%, var(--logo-white) 38%, #f7f5f0 100%);
  box-shadow: inset 0 1px 0 rgba(227, 24, 55, 0.05);
  overflow: hidden;
}

.timeline-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(227, 24, 55, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(201, 162, 39, 0.08), transparent 50%);
  pointer-events: none;
}

.timeline-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 48px;
}

.timeline-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.timeline-eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-lede {
  margin: 14px auto 0;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 48px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    rgba(227, 24, 55, 0.85) 0%,
    rgba(227, 24, 55, 0.35) 35%,
    rgba(201, 162, 39, 0.55) 70%,
    rgba(201, 162, 39, 0.9) 100%
  );
  opacity: 0.55;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 20px;
  align-items: start;
  padding-bottom: 28px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 4px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--logo-white);
  background: linear-gradient(145deg, var(--brand) 0%, var(--logo-red-deep) 100%);
  border: 3px solid var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(227, 24, 55, 0.15),
    0 6px 16px rgba(227, 24, 55, 0.25);
  transition: transform 0.28s ease;
}

.timeline-step__marker--final {
  color: #1a0a0a;
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--logo-gold) 100%);
  border-color: var(--logo-white);
  box-shadow:
    0 0 0 2px rgba(201, 162, 39, 0.25),
    0 8px 22px rgba(201, 162, 39, 0.35);
}

.timeline-step__card {
  padding: 20px 22px 22px;
  background: var(--logo-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.timeline-step__card--highlight {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(165deg, #fffefb 0%, var(--logo-white) 100%);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(201, 162, 39, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .timeline-step:hover .timeline-step__card {
    border-color: rgba(227, 24, 55, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .timeline-step:hover .timeline-step__card--highlight {
    border-color: rgba(201, 162, 39, 0.55);
  }

  .timeline-step:hover .timeline-step__marker {
    transform: scale(1.06);
  }
}

.timeline-step__label {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.timeline-step--highlight .timeline-step__label {
  color: #9a7b18;
}

.timeline-step__date {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

.timeline-step__hint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .timeline {
    padding: 56px 0 64px;
  }

  .timeline-header {
    margin-bottom: 36px;
  }

  .timeline-steps::before {
    left: 14px;
    bottom: 40px;
  }

  .timeline-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 14px;
    padding-bottom: 22px;
  }

  .timeline-step__marker {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .timeline-step__card {
    padding: 16px 18px 18px;
    border-radius: 14px;
  }

  .timeline-step__date {
    font-size: 1.15rem;
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  color: #e8e9ec;
  background: linear-gradient(180deg, #0e1218 0%, #080b0f 50%, #06080c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent-bright) 45%,
    var(--brand) 100%
  );
  box-shadow: 0 2px 20px var(--logo-red-glow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  padding: 52px 0 44px;
}

.site-footer__brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
  border-radius: 14px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-logo-frame {
  display: inline-block;
  padding: 12px 18px;
  background: var(--logo-white);
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: min(260px, 72vw);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
}

.footer-tagline {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.footer-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 28rem;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.95);
}

.site-footer__aside {
  min-width: 0;
}

.site-footer__contact-lede {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #9ca3af;
}

.site-footer__contact-details {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.site-footer__contact-details a {
  font-size: 0.93rem;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__contact-details a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__contact-details a:hover {
    color: var(--logo-white);
    transform: translateX(3px);
  }
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.site-footer__badge-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-bright));
  box-shadow: 0 0 12px var(--logo-red-glow);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.site-footer__top {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d1d5db;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-footer__top:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__top:hover {
    color: var(--logo-white);
    border-color: rgba(232, 197, 71, 0.45);
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 36px;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    padding: 40px 0 32px;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 24px;
  }

  .site-footer__contact-details a:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-wrap nav {
    width: 100%;
  }

  .menu {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: 94%;
  }

  .menu {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2px;
  }

  .menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

}

@media (hover: none), (pointer: coarse) {
  .menu a {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-banner,
  .animate-section,
  .brand-logo-link,
  .footer-logo-link {
    animation: none !important;
  }

  .legacy-milestone {
    animation: none !important;
  }

  .award-row {
    transition: none;
  }

  .award-row__icon {
    transition: none;
  }

  .award-row::after {
    transition: none;
  }

  .timeline-step__card {
    transition: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .timeline-step:hover .timeline-step__card,
    .timeline-step:hover .timeline-step__marker {
      transform: none;
    }

    .award-row:hover {
      transform: none;
    }

    .award-row:hover .award-row__icon {
      transform: none;
    }

    .btn-award-card:hover,
    .btn-award-card:hover .btn-award-card__arrow {
      transform: none;
    }

    .btn-award-card-secondary:hover {
      transform: none;
    }

    .footer-logo-link:hover,
    .site-footer__contact-details a:hover {
      transform: none;
    }

    .legacy-milestone:hover .legacy-milestone__body {
      transform: none;
    }
  }
}

/* Header menu dropdown */
.menu-item-has-dropdown {
  position: relative;
}

.menu-item-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-item-has-dropdown > a::after {
  content: "▾";
  font-size: 0.75rem;
  line-height: 1;
  transform: translateY(-1px);
}

.menu-dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 170px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.menu-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  border-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .menu-item-has-dropdown:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-dropdown a:hover {
    color: var(--brand);
    background: rgba(227, 24, 55, 0.08);
  }
}

.menu-item-has-dropdown:focus-within .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-item-has-dropdown {
    width: 100%;
  }

  .menu-item-has-dropdown > a {
    width: 100%;
  }

  .menu-dropdown {
    position: static;
    margin-top: 0;
    min-width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-item-has-dropdown.is-submenu-open .menu-dropdown {
    margin-top: 6px;
    max-height: 14rem;
  }

  .menu-item-has-dropdown:focus-within .menu-dropdown {
    max-height: 0;
  }

  .menu-item-has-dropdown.is-submenu-open:focus-within .menu-dropdown {
    max-height: 14rem;
  }
}

/* Award categories menu glow */
.menu-link-award-glow {
  color: var(--brand) !important;
  text-shadow: 0 0 8px rgba(227, 24, 55, 0.34), 0 0 14px rgba(245, 180, 50, 0.26);
  border-bottom-color: rgba(227, 24, 55, 0.6);
  animation: menuAwardGlow 2.1s ease-in-out infinite alternate;
}

@media (hover: hover) and (pointer: fine) {
  .menu-link-award-glow:hover {
    color: var(--brand);
    text-shadow: 0 0 10px rgba(227, 24, 55, 0.45), 0 0 18px rgba(245, 180, 50, 0.34);
    border-bottom-color: var(--brand);
  }
}

@keyframes menuAwardGlow {
  from {
    text-shadow: 0 0 6px rgba(227, 24, 55, 0.26), 0 0 10px rgba(245, 180, 50, 0.2);
  }
  to {
    text-shadow: 0 0 11px rgba(227, 24, 55, 0.48), 0 0 20px rgba(245, 180, 50, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-link-award-glow {
    animation: none;
  }
}

/* Key Highlights redesign */
.highlights {
  position: relative;
  padding: 72px 0;
}

.highlights .container {
  position: relative;
  padding: clamp(22px, 3.6vw, 34px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 14%, rgba(227, 24, 55, 0.12), transparent 40%),
    radial-gradient(circle at 14% 88%, rgba(201, 162, 39, 0.14), transparent 44%),
    linear-gradient(155deg, #fffefe 0%, #f8f5f2 100%);
  border: 1px solid rgba(227, 24, 55, 0.12);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
}

.highlights h2 {
  margin-bottom: 20px;
}

.highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.highlights ul li {
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(227, 24, 55, 0.12);
  color: var(--text-main);
  line-height: 1.52;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.highlights ul li::before {
  counter-increment: highlights-counter;
  content: counter(highlights-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-white);
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(140deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 6px 12px rgba(227, 24, 55, 0.28);
}

.highlights ul {
  counter-reset: highlights-counter;
}

@media (hover: hover) and (pointer: fine) {
  .highlights ul li:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 24, 55, 0.34);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.1), 0 0 20px rgba(227, 24, 55, 0.14);
  }
}

@media (max-width: 900px) {
  .highlights ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .highlights {
    padding: 54px 0;
  }

  .highlights .container {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .highlights ul li {
    padding: 12px 12px 12px 44px;
  }
}

/* Season page */
.season-hero {
  position: relative;
  padding: 78px 0 56px;
  background:
    radial-gradient(circle at 85% 12%, rgba(227, 24, 55, 0.12), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(201, 162, 39, 0.16), transparent 44%),
    linear-gradient(180deg, #fffdfb 0%, #f7f4f0 100%);
}

.season-hero__inner {
  text-align: center;
  max-width: 820px;
}

.season-hero__eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--brand);
}

.season-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--text-main);
}

.season-hero p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--text-muted);
  line-height: 1.7;
}

.season-grid-section {
  padding-top: 18px;
  padding-bottom: 74px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.season-card {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(227, 24, 55, 0.15);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  scroll-margin-top: 100px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.season-card__badge {
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: rgba(227, 24, 55, 0.1);
}

.season-card h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.season-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .season-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 24, 55, 0.35);
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.12), 0 0 26px rgba(227, 24, 55, 0.13);
  }
}

@media (max-width: 900px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-hero {
    padding-top: 66px;
  }
}

.season-detail {
  padding-top: 18px;
  padding-bottom: 18px;
}

.season-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.season-detail__card {
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(227, 24, 55, 0.15);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.season-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.season-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.season-section__cta {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--brand);
  border-bottom: 2px solid rgba(227, 24, 55, 0.35);
  padding-bottom: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .season-section__cta:hover {
    border-bottom-color: var(--brand);
  }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.media-card__thumb {
  display: block;
  height: 160px;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 24, 55, 0.22), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(201, 162, 39, 0.22), transparent 45%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.02));
}

.media-card--wide .media-card__thumb {
  height: 190px;
}

.media-card__play {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 0.9rem;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.media-card__title {
  display: block;
  padding: 12px 12px 14px;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 24, 55, 0.34);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.14), 0 0 24px rgba(227, 24, 55, 0.12);
  }
}

.season-social {
  padding-top: 34px;
  padding-bottom: 74px;
}

.season-social__inner {
  text-align: center;
  padding: 26px 18px;
  border-radius: 18px;
  background: linear-gradient(155deg, #fffefe 0%, #f8f5f2 100%);
  border: 1px solid rgba(227, 24, 55, 0.12);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.season-social__links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.season-social__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(227, 24, 55, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .season-social__link:hover {
    border-color: rgba(227, 24, 55, 0.35);
    box-shadow: 0 16px 24px rgba(15, 23, 42, 0.1), 0 0 20px rgba(227, 24, 55, 0.12);
  }
}

@media (max-width: 900px) {
  .season-detail__grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card__thumb {
    height: 170px;
  }
}

.video-row,
.image-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.video-row__lede {
  margin: 0 0 18px;
  max-width: 68ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.72);
}

.video-row__lede code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(227, 24, 55, 0.06);
  border: 1px solid rgba(227, 24, 55, 0.12);
}

.video-row__lede--compact {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 0.9rem;
  max-width: 60ch;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.video-card--youtube {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.video-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease;
}

.video-card__caption {
  display: block;
  padding: 10px 12px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
}

.video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.image-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 24, 55, 0.14);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .video-card:hover,
  .image-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 24, 55, 0.34);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.14), 0 0 24px rgba(227, 24, 55, 0.12);
  }

  .video-card--youtube:hover .video-card__play-overlay {
    background: rgba(0, 0, 0, 0.38);
  }
}

@media (max-width: 900px) {
  .video-row,
  .image-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-row--season1-gallery .image-card:nth-child(9),
  .image-row--season1-gallery .image-card:nth-child(10) {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .video-row,
  .image-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .image-row--season1-gallery .image-card:nth-child(9) {
    grid-column: 2;
  }

  .image-row--season1-gallery .image-card:nth-child(10) {
    grid-column: 3;
  }
}

/* YouTube Shorts–style cards (vertical 9:16) */
.video-row--shorts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.video-card--short {
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
}

.video-card--short .video-card__thumb {
  aspect-ratio: 9 / 16;
  background: #0d0d0d;
}

.video-card--short .video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-card--short .video-card__play-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 100%);
}

.video-card--short .video-card__play-overlay svg {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.video-card--short .video-card__play-overlay svg circle {
  fill: #ff0000;
  stroke: rgba(255, 255, 255, 0);
}

.video-card--short .video-card__play-overlay svg path {
  fill: #ffffff;
}

.video-card--short .video-card__caption {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .video-card--short:hover .video-card__play-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.5) 100%);
  }

  .video-card--short:hover .video-card__play-overlay svg {
    transform: scale(1.06);
    transition: transform 0.22s ease;
  }
}

@media (max-width: 900px) {
  .video-row--shorts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .video-row--shorts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .video-row--shorts {
    grid-template-columns: 1fr;
  }

  .video-card--short .video-card__thumb {
    aspect-ratio: 9 / 14;
  }
}

/* Responsive site header navigation */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-surface);
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  .nav-toggle:hover {
    background: var(--logo-white);
    border-color: rgba(227, 24, 55, 0.28);
    box-shadow: var(--shadow-sm);
  }
}

@media (min-width: 901px) {
  .site-nav {
    display: block;
  }

  .menu {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .header-wrap {
    gap: 14px;
  }

  .brand-logo {
    height: 54px;
    max-width: min(200px, 42vw);
  }

  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 0.875rem;
    padding: 6px 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    z-index: 30;
  }

  .site-header .header-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 10px 0;
  }

  .site-header .brand-logo-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .brand-logo {
    height: 48px;
    max-width: min(200px, 52vw);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-header .site-nav {
    flex: 1 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-header.is-nav-open .site-nav {
    max-height: min(80vh, 32rem);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 4px;
    padding-bottom: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    justify-content: flex-start;
  }

  .site-header .menu > li {
    width: 100%;
  }

  .site-header .menu a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header .menu-dropdown a {
    padding: 10px 0 10px 12px;
    border-bottom: 1px solid var(--border);
  }

  .site-header .menu-dropdown li:last-child a {
    border-bottom: 0;
  }

  .site-header .menu-item-has-dropdown > a::after {
    transition: transform 0.2s ease;
  }

  .site-header .menu-item-has-dropdown.is-submenu-open > a::after {
    transform: translateY(-1px) rotate(180deg);
  }

  .site-header .menu-item-has-dropdown .menu-dropdown {
    position: static;
    margin: 0;
    padding: 0 0 0 12px;
    min-width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-header .menu-item-has-dropdown.is-submenu-open .menu-dropdown {
    max-height: 14rem;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .site-header .menu-item-has-dropdown > a {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    height: 44px;
    max-width: min(180px, 58vw);
  }
}

body.is-nav-locked {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle,
  .nav-toggle__bar,
  .site-header .site-nav {
    transition: none;
  }
}
