/* ============================================================
   AI in Finance Summer School — RBC Borealis design system
   Type: Inter (local) + Fira Code (mono labels)
   ============================================================ */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap");

:root {
  --black: #22272f;
  --navy: #003168;
  --navy-deep: #001a3a;
  --blue: #3168f4;
  --yellow: #ffc72c;
  --gold-2: #fedf04;
  --white: #ffffff;
  --light-blue: #51b5e0;
  --mint: #d2fff4;
  --grey-1: #f2f3f4;
  --grey-2: #d8d8e0;
  --grey-3: #5d5d70;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "Fira Code", ui-monospace, monospace;
  --container: 1280px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17.5px;
  line-height: 1.8;
}

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

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

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

/* ── Typography ──────────────────────────────────────────── */
h1 {
  font-weight: 200;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}

h2 {
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--black);
  text-wrap: balance;
}

h3 {
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--black);
}

h4 {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--black);
}

p {
  font-weight: 400;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.slash {
  color: var(--blue);
  margin-right: 10px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 15px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.btn .arr {
  width: 17px;
  height: 10px;
  flex: none;
}

.btn .arr-up {
  width: 13px;
  height: 13px;
}

.btn .arr path {
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #2456d6;
}

.btn-gold {
  background: var(--yellow);
  color: var(--black);
}

.btn-gold:hover {
  background: #f4ba16;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--grey-2);
}

.btn-ghost-light:hover {
  border-color: var(--navy);
}

/* ── Meta strip ──────────────────────────────────────────── */
.meta-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
}

.meta-strip .container {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta-strip .mono-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
}

.meta-strip .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-strip .right {
  display: flex;
  gap: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ee06c;
  flex: none;
  box-shadow: 0 0 0 0 rgba(46, 224, 108, 0.6);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 224, 108, 0.5);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(46, 224, 108, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 224, 108, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dot {
    animation: none;
  }
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 24px 0;
  margin-bottom: -78px;
}

.nav .container {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(34, 39, 47, 0.08);
  border-radius: 9999px;
  padding: 0 10px 0 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.nav-logo-img {
  height: 16px;
  display: block;
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-wordmark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-wordmark .dot {
  color: var(--yellow);
  font-size: 1.45em;
  line-height: 0;
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--grey-2);
}

.nav-lockup {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  line-height: 1.5;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 400;
  color: #222731;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav-links a:hover {
  border-bottom-color: var(--yellow);
}

.nav .btn {
  padding: 11px 24px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .nav-lockup,
  .nav-divider {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(8, 12, 20, 0.8) 5%,
      rgba(8, 12, 20, 0.34) 38%,
      rgba(8, 12, 20, 0.07) 66%,
      transparent 86%
    ),
    linear-gradient(to top, var(--black) 0%, transparent 24%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 144px;
  padding-bottom: 0;
}

.hero-presented {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-presented span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-presented img {
  height: 15px;
  display: block;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.hero-eyebrows {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.3);
  border-radius: 8px;
  padding: 9px 18px;
  margin-bottom: 0;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-eyebrow.alt {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  margin-bottom: 34px;
  max-width: 14ch;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero h1 .blue {
  color: var(--light-blue);
}

.hero-sub {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.66);
  max-width: 600px;
  margin-bottom: 46px;
}

.hero-sub.lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.hero-sub.body {
  font-size: 17px;
  margin-bottom: 18px;
}

.hero-sub.body:last-of-type {
  margin-bottom: 46px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* hero facts band */
.hero-facts {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-facts .cell {
  padding: 34px 0;
}

.hero-facts .cell + .cell {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hero-facts .v {
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-facts .v small {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 5px;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts .cell + .cell {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ── Section scaffold ────────────────────────────────────── */
section {
  scroll-margin-top: 84px;
}

.sec {
  padding: 104px 0;
}

.sec.grey {
  background: var(--grey-1);
}

.sec-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.sec-head .mono-label {
  padding-top: 8px;
  color: var(--grey-3);
}

.sec-head h2 {
  margin-bottom: 18px;
}

.lede {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--grey-3);
  max-width: 620px;
}

@media (max-width: 760px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Program list ────────────────────────────────────────── */
.prog-list {
  border-top: 1px solid var(--grey-2);
}

.prog-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 2.6fr;
  gap: 40px;
  align-items: start;
  padding: 32px 8px;
  border-bottom: 1px solid var(--grey-2);
  transition: background 0.2s;
}

.prog-row:hover {
  background: var(--white);
}

.sec.grey .prog-row:hover {
  background: rgba(255, 255, 255, 0.6);
}

.prog-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  padding-top: 5px;
}

.prog-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.25;
}

.prog-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--grey-3);
}

.prog-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-3);
  padding-top: 6px;
}

.prog-tag .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex: none;
}

@media (max-width: 900px) {
  .prog-row {
    grid-template-columns: 48px 1fr;
    gap: 8px 24px;
  }

  .prog-desc {
    grid-column: 2;
  }
}

/* ── Dates & location ────────────────────────────────────── */
.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dl-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dl-card .pad {
  padding: 40px 40px 44px;
}

.dl-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.dl-eyebrow .n {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-eyebrow .n svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dl-eyebrow .l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.dl-card h3 {
  margin-bottom: 16px;
}

.dl-card h3 em {
  font-style: normal;
  color: var(--navy);
}

.dl-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-3);
  line-height: 1.7;
}

.dl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.dl-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  border-radius: 7px;
  padding: 6px 13px;
}

.dl-photo {
  height: 230px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: auto;
}

.dl-photo.when {
  background-image: url("assets/when.jpg");
}

.dl-photo.where {
  background-image: url("assets/vancouver.jpg");
  background-position: center 62%;
}

@media (max-width: 760px) {
  .dl-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Eligibility ─────────────────────────────────────────── */
.elig-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.elig-list {
  border-top: 1px solid var(--grey-2);
}

.elig-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--grey-2);
}

.elig-item .n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  padding-top: 3px;
}

.elig-item .body {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
}

.elig-item .req {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-3);
  margin-top: 7px;
  line-height: 1.6;
}

.elig-side {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.elig-side .mono-label {
  color: var(--yellow);
  margin-bottom: 18px;
  display: block;
}

.elig-side h4 {
  color: #fff;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.elig-side p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 14px;
}

.callout-stat {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.callout-stat .v {
  font-size: 56px;
  font-weight: 200;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
}

.callout-stat .k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .elig-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .elig-side {
    position: static;
  }
}

/* ── Speakers ────────────────────────────────────────────── */
.spk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spk-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}

.spk-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.spk-thumb {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0, 49, 104, 0.06) 0 2px,
      transparent 2px 11px
    ),
    linear-gradient(160deg, #0a234a, #003168 55%, #0d2f5e);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 14px;
}

.spk-meta {
  padding: 20px 22px 24px;
}

.spk-meta .name {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.spk-meta .role {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey-3);
  margin-top: 5px;
}

.spk-meta .topic {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 14px;
}

.spk-tba {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
  border: 1.5px dashed var(--grey-2);
  color: var(--grey-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  min-height: 120px;
  padding: 24px;
}

.spk-tba:hover {
  box-shadow: none;
  transform: none;
  border-color: var(--grey-3);
}

@media (max-width: 1000px) {
  .spk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .spk-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Roster aurora ───────────────────────────────────────── */
.roster-aurora {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.roster-aurora .aurora-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.roster-aurora .aurora-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(34, 39, 47, 0.86) 0%,
    rgba(34, 39, 47, 0.55) 48%,
    rgba(34, 39, 47, 0.28) 100%
  );
}

.roster-aurora .container {
  position: relative;
  z-index: 1;
}

.roster-aurora .sec-head {
  margin-bottom: 0;
}

.roster-aurora .sec-head .mono-label {
  color: var(--yellow);
}

.roster-aurora h2 {
  color: #fff;
}

.roster-aurora .lede {
  color: rgba(255, 255, 255, 0.72);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--grey-2);
  max-width: 920px;
}

.faq-item {
  border-bottom: 1px solid var(--grey-2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  cursor: pointer;
  padding: 26px 4px;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::marker {
  content: "";
}

.faq-q .n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  flex: none;
}

.faq-q .q {
  flex: 1;
}

.faq-q .ic {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
}

.faq-q .ic::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.faq-q .ic::after {
  top: 3px;
  left: 11px;
  width: 2px;
  height: 16px;
  transition: opacity 0.25s;
}

.faq-item[open] .faq-q .ic::after {
  opacity: 0;
}

.faq-a {
  overflow: hidden;
}

.faq-item[open] .faq-a {
  animation: faqReveal 0.26s ease;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-a {
    animation: none;
  }
}

.faq-a-inner {
  padding: 0 4px 28px 60px;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--grey-3);
  max-width: 760px;
}

@media (max-width: 600px) {
  .faq-a-inner {
    padding-left: 4px;
  }
}

/* ── About RBC Borealis ──────────────────────────────────── */
.about-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 60px 64px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.about-brand img {
  width: 206px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.about-brand .tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
  line-height: 1.6;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.about-copy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 48px;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .about-card {
    padding: 34px 28px;
    border-radius: 20px;
  }

  .about-brand img {
    width: 180px;
  }
}

/* ── Apply band ──────────────────────────────────────────── */
.apply {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.apply .aurora-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.9;
}

.apply-aurora-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(0, 26, 58, 0.85) 0%,
    rgba(0, 26, 58, 0.5) 55%,
    rgba(0, 26, 58, 0.32) 100%
  );
}

.apply .container {
  position: relative;
  z-index: 1;
  padding-top: 104px;
  padding-bottom: 104px;
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.apply-eyebrow {
  color: var(--yellow);
  margin-bottom: 24px;
  display: inline-block;
}

.apply h2 {
  color: #fff;
  margin-bottom: 34px;
}

.apply h2 em {
  font-style: normal;
  color: var(--yellow);
}

.apply-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.apply-meta .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.apply-meta .k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.apply-meta .v {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: right;
}

@media (max-width: 860px) {
  .apply-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 40px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.foot-brand img {
  height: 20px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.foot-wordmark {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.foot-wordmark .dot {
  color: var(--yellow);
  font-size: 1.45em;
  line-height: 0;
}

.foot-logo-img {
  height: 30px;
  display: block;
  margin-bottom: 20px;
}

.foot-brand .prog-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dca62c;
  margin-bottom: 14px;
}

.foot-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 260px;
}

.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 13px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--yellow);
}

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-legal .presented {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-legal .presented span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.foot-legal .presented img {
  height: 15px;
  opacity: 0.9;
}

.foot-legal .copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile scaling ──────────────────────────────────── */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .meta-strip .container {
    height: auto;
    min-height: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 18px;
  }

  .meta-strip .mono-label {
    font-size: 9.5px;
    letter-spacing: 0.07em;
    line-height: 1.45;
  }

  .meta-strip .right {
    display: none;
  }

  .meta-strip .left .mono-label {
    white-space: nowrap;
  }

  .container {
    padding: 0 22px;
  }

  .sec {
    padding: 64px 0;
  }

  .sec-head {
    margin-bottom: 32px;
  }

  .hero .container.hero-top {
    padding-top: 106px !important;
  }

  .hero .container.hero-facts-wrap {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .hero-facts .k,
  .hero-facts .v {
    padding-left: 26px;
  }

  .hero-sub {
    font-size: 18px;
    width: auto !important;
    max-width: 100%;
  }

  .hero-sub.body {
    font-size: 15.5px;
  }

  .lede {
    font-size: 16.5px;
  }

  .hero-cta {
    margin-bottom: 32px;
  }

  .hero-facts .cell {
    padding: 26px 0;
  }

  .hero-facts .v {
    font-size: 21px;
  }

  .prog-title {
    font-size: 19px;
  }

  .prog-desc {
    font-size: 15px;
  }

  .dl-card .pad {
    padding: 30px 26px 32px;
  }

  .elig-side {
    padding: 32px;
  }

  .elig-item .body {
    font-size: 16.5px;
  }

  .faq-q {
    font-size: 16.5px;
  }

  .apply .container {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  footer {
    padding: 56px 0 36px;
  }
}
