:root {
  --bg-dark: #020617;
  --card-bg: #0b1120;
  --accent: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.1);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 18px;
  --max-width: 1120px;
  --transition: 200ms ease;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.65));
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #facc15, #eab308, #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 36px rgba(250, 204, 21, 0.75);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition),
    transform var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 25% 0, #fef08a, #facc15, #b45309);
  color: #0b1120;
  box-shadow: 0 14px 35px rgba(250, 204, 21, 0.48);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(250, 204, 21, 0.7);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

main {
  padding-bottom: 4rem;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-badge {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.8);
  padding: 0.25rem 0.7rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #020617, #020617);
  border-radius: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  padding: 1.4rem 1.4rem 1.3rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-inner {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.metric {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(51, 65, 85, 0.95);
  padding: 0.7rem 0.9rem;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-value {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.metric-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

section {
  padding: 2.4rem 0 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: 1.4rem;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--border-subtle);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.chip {
  font-size: 0.72rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-muted);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.program-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1rem 1.1rem;
}

.program-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(250, 204, 21, 0.7);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 0.94rem;
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.apply-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 1.6rem;
  align-items: flex-start;
}

form {
  background: var(--card-bg);
  border-radius: 1.6rem;
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text-main);
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b7280;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.42);
  background: #020617;
}

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

.swot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.swot-heading {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.checkbox-row label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 0.1rem;
}

.consent {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.aside-card {
  background: var(--card-bg);
  border-radius: 1.6rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 1.1rem 1.1rem 1.3rem;
}

.aside-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.aside-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.aside-list {
  font-size: 0.8rem;
  color: var(--text-muted);
  list-style: none;
  padding-left: 1rem;
}

.aside-list li::before {
  content: "•";
  color: var(--accent);
  display: inline-block;
  width: 0.8rem;
  margin-left: -0.8rem;
}

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  margin-top: 3rem;
  padding: 1.2rem 0 1.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-card {
    margin-top: 0.6rem;
  }
}
