:root {
  --bg: #f8f4ff;
  --bg-deep: #efe8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1d1633;
  --muted: #5d5378;
  --brand: #30206f;
  --brand-deep: #241453;
  --brand-soft: #b9abff;
  --brand-bright: #8b79ff;
  --gold: #f3c94b;
  --line: rgba(48, 32, 111, 0.12);
  --shadow: 0 30px 80px rgba(48, 32, 111, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 201, 75, 0.28), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(139, 121, 255, 0.24), transparent 18%),
    linear-gradient(180deg, #fbf9ff 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

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

.page-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
}

.page-shell--landing {
  min-height: 100vh;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 24px 18px;
}

.site-nav__brand,
.site-nav__links a {
  position: relative;
  z-index: 1;
}

.site-nav__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  background: rgba(255, 255, 255, 0.64);
  color: var(--brand);
  box-shadow: 0 10px 25px rgba(48, 32, 111, 0.08);
  outline: none;
}

.site-nav__links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand);
  box-shadow: 0 10px 25px rgba(48, 32, 111, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48)),
    linear-gradient(120deg, rgba(48, 32, 111, 0.12), rgba(139, 121, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero__content,
.focus-card {
  animation: rise 700ms ease both;
}

.hero__content {
  max-width: 640px;
  padding: 12px 0;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-bright);
}

h1,
h2,
.logo-mark__word,
.logo-mark__sub {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 8ch;
}

.lede,
.supporting-copy,
.cta-note,
.focus-card p {
  color: var(--muted);
}

.lede {
  margin: 28px 0 0;
  max-width: 41rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.supporting-copy {
  margin: 16px 0 0;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 34px;
  max-width: 38rem;
}

.hero__button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #43319a 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(48, 32, 111, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(48, 32, 111, 0.28);
  background: linear-gradient(135deg, #26185a 0%, #5038b8 100%);
  outline: none;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 24px;
  border: 1px solid rgba(48, 32, 111, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(48, 32, 111, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(48, 32, 111, 0.24);
  box-shadow: 0 18px 36px rgba(48, 32, 111, 0.12);
  outline: none;
}

.cta-note {
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero__art {
  display: grid;
  gap: 26px;
  justify-items: center;
  align-self: stretch;
  align-content: center;
}

.logo-mark {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #342379 0%, #2d2168 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 50px rgba(48, 32, 111, 0.2);
  animation: float 6s ease-in-out infinite;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto 13% 10%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 32, 111, 0.25), transparent 65%);
  filter: blur(16px);
  z-index: -1;
}

.logo-mark__inner {
  transform: translateY(-2%);
  text-align: center;
}

.logo-mark__word {
  display: block;
  color: #fffdfc;
  font-size: clamp(4rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.logo-mark__accent {
  color: #c5b8ff;
}

.logo-mark__sub {
  display: block;
  margin-top: 12px;
  color: #fffdfc;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.48em;
}

.focus-card {
  width: min(430px, 100%);
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.focus-card__label {
  margin: 0 0 8px;
  color: var(--brand-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.focus-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.02;
  color: var(--brand);
}

.focus-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  font-size: 0.98rem;
}

.goals-page {
  padding: 12px 24px 48px;
}

.projects-page {
  padding: 12px 24px 48px;
}

.recruitment-page {
  padding: 12px 24px 48px;
}

.goals-hero {
  max-width: 760px;
  padding: 10px 0 26px;
  animation: rise 700ms ease both;
}

.projects-hero {
  max-width: 820px;
  padding: 10px 0 28px;
  animation: rise 700ms ease both;
}

.recruitment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  padding: 10px 0 28px;
}

.recruitment-hero__copy {
  display: grid;
  align-content: start;
}

.page-title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-intro {
  margin: 22px 0 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.goal-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(139, 121, 255, 0.08), rgba(243, 201, 75, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: rise 700ms ease both;
}

.project-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(139, 121, 255, 0.08), rgba(243, 201, 75, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: rise 700ms ease both;
}

.recruitment-callout,
.recruitment-footer__panel,
.reason-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: rise 700ms ease both;
}

.recruitment-callout {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(48, 32, 111, 0.96), rgba(79, 54, 178, 0.94));
}

.recruitment-callout h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  color: #ffffff;
}

.recruitment-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.reason-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(139, 121, 255, 0.08), rgba(243, 201, 75, 0.06));
}

.reason-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.5vw, 2.5rem);
  line-height: 1;
  color: var(--brand);
}

.reason-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.recruitment-footer {
  padding-top: 28px;
}

.recruitment-footer__panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(139, 121, 255, 0.08), rgba(243, 201, 75, 0.06));
}

.recruitment-footer__panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  color: var(--brand-deep);
}

.recruitment-footer__panel p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.8;
}

.project-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.project-panel__header {
  display: grid;
  gap: 8px;
}

.project-panel__header h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  line-height: 0.98;
  color: var(--brand);
}

.project-subsection {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.project-subsection h3,
.project-highlight h3,
.mini-card h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--brand);
}

.project-subsection h3,
.project-highlight h3 {
  font-size: 1.9rem;
  line-height: 1;
}

.project-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(48, 32, 111, 0.05);
  border: 1px solid rgba(48, 32, 111, 0.08);
}

.mini-card__label,
.project-highlight__eyebrow {
  margin: 0;
  color: var(--brand-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.mini-card h4 {
  font-size: 1.45rem;
  line-height: 1.02;
}

.project-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.project-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.7;
}

.project-bullets li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand-bright));
}

.project-highlight {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(48, 32, 111, 0.95), rgba(79, 54, 178, 0.92));
  box-shadow: 0 24px 48px rgba(48, 32, 111, 0.22);
}

.project-highlight h3 {
  color: #ffffff;
}

.project-highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.goal-card--wide {
  grid-column: 1 / -1;
}

.goal-card--wide .goal-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goal-card__index {
  margin: 0 0 10px;
  color: var(--brand-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.goal-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  color: var(--brand);
}

.goal-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.goal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.goal-list li {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: var(--radius-md);
  background: rgba(48, 32, 111, 0.05);
  color: var(--text);
  line-height: 1.7;
}

.goal-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand-bright));
  box-shadow: 0 0 0 6px rgba(139, 121, 255, 0.1);
}

.goals-cta {
  padding-top: 28px;
  display: flex;
  justify-content: center;
}

.goals-cta__panel {
  width: min(860px, 100%);
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(48, 32, 111, 0.96), rgba(74, 50, 168, 0.94));
  box-shadow: 0 28px 56px rgba(48, 32, 111, 0.24);
}

.goals-cta__panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.goals-cta__panel p {
  margin: 14px 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.goals-cta__panel .focus-card__label {
  color: #c5b8ff;
}

.goals-cta__panel .cta-button {
  margin-top: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #efeaff 100%);
  color: var(--brand);
  box-shadow: none;
}

.goals-cta__panel .cta-button:hover,
.goals-cta__panel .cta-button:focus-visible {
  background: linear-gradient(135deg, #ffffff 0%, #e4dbff 100%);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .site-nav {
    padding: 4px 18px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .hero__backdrop {
    border-radius: 28px;
  }

  .hero__content {
    order: 2;
    padding: 12px 4px 0;
  }

  .hero__art {
    order: 1;
    gap: 20px;
  }

  .logo-mark {
    width: min(360px, 92vw);
  }

  .goals-page {
    padding: 10px 18px 40px;
  }

  .projects-page {
    padding: 10px 18px 40px;
  }

  .recruitment-page {
    padding: 10px 18px 40px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-hero,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .goal-card--wide {
    grid-column: auto;
  }

  .goal-card--wide .goal-list {
    grid-template-columns: 1fr;
  }

  .project-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 12px;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__links {
    gap: 10px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.2rem);
    max-width: none;
  }

  .logo-mark__sub {
    letter-spacing: 0.3em;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .ghost-button {
    width: 100%;
    text-align: center;
  }

  .focus-card {
    padding: 22px 20px;
  }

  .goals-cta__panel {
    padding: 24px 20px;
  }

  .project-panel {
    padding: 22px 20px;
  }

  .reason-card,
  .recruitment-callout,
  .recruitment-footer__panel {
    padding: 22px 20px;
  }
}
