:root {
  --color-purple: #6f2da8;
  --color-purple-dark: #4b1d72;
  --color-green: #00a651;
  --color-green-dark: #00843d;
  --color-yellow: #ffd400;
  --color-primary: var(--color-yellow);
  --color-primary-dark: #e5bf00;
  --color-background: #fffbe6;
  --color-surface: #fffef7;
  --color-surface-dark: var(--color-purple-dark);
  --color-surface-muted: #f6f1ff;
  --color-text: #1a1027;
  --color-text-muted: #46375f;
  --color-text-light: rgba(255, 255, 255, 0.88);
  --color-border: rgba(111, 45, 168, 0.18);
  --color-border-strong: rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 12px 30px rgba(75, 29, 114, 0.12);
  --shadow-strong: 0 18px 40px rgba(75, 29, 114, 0.22);
  --header-height: 64px;
  --font-display: "Helvetica Neue", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

#root {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.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;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(90vw, 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(75, 29, 114, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 212, 0, 0.28);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.45);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-primary);
  color: #18181b;
  box-shadow: 0 12px 24px rgba(255, 212, 0, 0.32);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(111, 45, 168, 0.78);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn--ghost:hover {
  background: rgba(111, 45, 168, 0.88);
}

.btn--outline-dark {
  background: rgba(32, 20, 48, 0.08);
  border-color: rgba(32, 20, 48, 0.18);
  color: var(--color-text);
}

.btn--outline-dark:hover {
  background: rgba(32, 20, 48, 0.14);
}

.hero {
  position: relative;
  color: #fff;
  min-height: clamp(420px, 70vh, 580px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-purple-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 960px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 128px) 0;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.92);
  color: #1a1027;
  border: 1px solid rgba(26, 16, 39, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.03;
  margin: 18px 0 10px;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.hero__copy {
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.hero__copy span {
  display: block;
}

.hero__copy span + span {
  margin-top: 4px;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.countdown {
  margin-top: 36px;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  max-width: 640px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.countdown::-webkit-scrollbar {
  display: none;
}

.countdown__item {
  min-width: 120px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown__value {
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 2rem;
  margin-bottom: 6px;
}

.countdown__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}


.section {
  position: relative;
  --section-bg-color: var(--color-yellow);
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--section-bg-color);
  color: var(--color-text);
}

.section:last-of-type::after {
  display: none;
}

.section--muted {
  --section-bg-color: var(--color-green);
  color: #082913;
}

.section--dark {
  --section-bg-color: var(--color-purple);
  color: #fff;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.section__header--split {
  flex-direction: column;
}

@media (min-width: 768px) {
  .section__header--split {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-purple-dark);
  font-weight: 600;
}

.section--muted .section__eyebrow {
  color: #04160a;
}

.section--dark .section__eyebrow {
  color: rgba(255, 212, 0, 0.85);
}

.section__title {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  margin: 0;
}

.section__description {
  max-width: 520px;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section--muted .section__description {
  color: rgba(8, 41, 19, 0.82);
}

.section--dark .section__description {
  color: rgba(255, 255, 255, 0.72);
}

.story-grid,
.highlight-grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.story-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.timeline-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.timeline-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
}

.timeline-card__title {
  margin: 18px 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}

.timeline-card__body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-card__period {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 212, 0, 0.9);
  font-weight: 600;
}

.pillars-timeline .timeline-card__title {
  color: rgba(255, 212, 0, 0.9);
}


.values-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.value-card {
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.value-card__image {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.value-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.callout {
  text-align: center;
  padding: clamp(72px, 10vw, 112px) 0;
  background: linear-gradient(135deg, rgba(111, 45, 168, 0.95), rgba(0, 166, 81, 0.85));
  color: #fff;
}

.callout__inner {
  width: min(90vw, 720px);
  margin: 0 auto;
}

.callout__title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}

.callout__copy {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.callout__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight-card,
.story-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff 100%);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  color: var(--color-text);
}

.story-card--dark {
  background: linear-gradient(160deg, rgba(111, 45, 168, 0.9), rgba(75, 29, 114, 0.86));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.story-card--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.story-card__actions {
  margin-top: 24px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-purple-dark);
  font-weight: 600;
}

.story-link:hover {
  color: #3a0d6a;
}

.section--muted .story-link {
  color: #082913;
}

.section--muted .story-link:hover {
  color: #04160a;
}

.brand-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.brand-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--color-surface);
  padding: 12px;
}

.roster-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .roster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.roster-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: var(--color-text);
}

.roster-card:hover,
.roster-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.roster-card__figure {
  position: relative;
  padding-top: 130%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(94, 29, 173, 0.25), rgba(31, 138, 59, 0.25));
}

.roster-card__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.roster-card:hover img {
  transform: scale(1.05);
}

.roster-card__name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.roster-card__tag {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.roster-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green-dark);
  font-weight: 600;
}

.roster-card__link:hover {
  color: #0c6f2f;
}

.email-card {
  background: var(--color-surface-dark);
  color: #fff;
  padding: clamp(32px, 6vw, 48px);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .email-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.email-card__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.email-card__input {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.email-card__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-card__message {
  font-size: 0.9rem;
}

.footer {
  background: linear-gradient(160deg, rgba(75, 29, 114, 0.95), rgba(0, 132, 61, 0.85));
  color: #fff;
  padding: 72px 0 48px;
}

.footer__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer__heading {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__links {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer__links a:hover {
  color: #fff;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-list a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.social-list--dark a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.social-list--dark a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-list--light a {
  background: rgba(32, 20, 48, 0.08);
  border-color: rgba(32, 20, 48, 0.14);
}

.social-list--light a:hover {
  background: rgba(32, 20, 48, 0.16);
}

.social-list img,
.footer__socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero--profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 17, 20, 0.78), rgba(11, 11, 14, 0.55));
}

.profile-page .hero--profile {
  background-position: center top;
}

.profile-page main {
  background: var(--color-background);
}

.quick-notes {
  display: grid;
  gap: 14px;
}

.quick-note {
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.profile-layout {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 960px) {
  .profile-layout {
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  }
}

.profile-copy {
  display: grid;
  gap: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.profile-page main {
  background: var(--color-background);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-note {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 16px;
}

.quick-note__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.quick-note__value {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
