:root {
  --bg: #070b13;
  --panel: #111827;
  --panel-soft: #172033;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: #263246;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(245, 158, 11, .10), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(7, 11, 19, .88);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--amber);
  color: #111827;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, .25);
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: .7rem; }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: #cbd5e1; font-size: .9rem; font-weight: 600; }
.site-nav a:hover { color: var(--amber-light); }
.site-nav .nav-cta {
  padding: .7rem 1rem;
  border-radius: 10px;
  background: var(--amber);
  color: #111827;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.6rem;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  width: min(1180px, 88vw);
  margin: auto;
  padding: 6rem 0;
}
.eyebrow {
  display: inline-block;
  color: var(--amber-light);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 800px;
  margin: .8rem 0 1.3rem;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: .97;
  letter-spacing: -.055em;
}
.hero-copy > p {
  max-width: 680px;
  color: #b6c2d2;
  font-size: 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--amber); color: #111827; }
.button-primary:hover { background: var(--amber-light); }
.button-secondary { border-color: #334155; background: #0f172a; color: white; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.2rem; }
.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics strong { font-size: 1.4rem; color: var(--amber-light); }
.hero-metrics span { color: var(--muted); font-size: .78rem; }

.hero-card, .spotlight-card, .assessment-form, .contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(23, 32, 51, .92), rgba(11, 17, 29, .95));
  box-shadow: var(--shadow);
}
.hero-card { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 24px; }
.status-pill, .winner-pill, .tag {
  display: inline-block;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, .12);
  color: var(--amber-light);
  font-size: .72rem;
  font-weight: 800;
}
.hero-card h2 { font-size: 2rem; line-height: 1.15; margin: 1rem 0; }
.hero-card p, .hero-card li { color: #aebdd0; }
.hero-card ul { padding-left: 1.15rem; }

.section {
  width: min(1180px, 88vw);
  margin: auto;
  padding: 6rem 0;
}
.section-heading { max-width: 720px; margin-bottom: 2.4rem; }
.section-heading h2, .assessment-copy h2 {
  margin: .45rem 0 .65rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-heading p, .assessment-copy > p { color: var(--muted); }

.card-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.program-card, .team-card {
  position: relative;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, .72);
}
.program-card.featured { border-color: rgba(245, 158, 11, .55); transform: translateY(-10px); }
.program-card .tag { position: absolute; right: 1rem; top: 1rem; }
.card-number { color: #64748b; font-weight: 900; font-size: .8rem; }
.program-card h3, .team-card h3 { margin: .8rem 0 .5rem; font-size: 1.25rem; }
.program-card p, .team-card p { color: var(--muted); }
.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--amber-light);
  font-weight: 800;
}

.spotlight-section { padding-top: 3rem; }
.spotlight-card { padding: clamp(1.5rem, 5vw, 3rem); border-radius: 24px; }
.spotlight-top, .spotlight-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.spotlight-top h3 { margin: .7rem 0 .1rem; font-size: 2rem; }
.location { color: var(--muted); }
.owner-block { text-align: right; }
.owner-block span, .spotlight-content h4 { display: block; color: #7f8ca2; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.owner-block strong { display: block; margin-top: .35rem; }
.spotlight-card hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.spotlight-content > * { flex: 1; }
blockquote {
  margin: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: rgba(2, 6, 23, .5);
  color: #c7d1df;
  font-style: italic;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(245, 158, 11, .14);
  color: var(--amber-light);
  font-weight: 900;
}
.role { color: var(--amber-light) !important; font-size: .85rem; font-weight: 700; }

.assessment-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-card { margin-top: 2rem; padding: 1.3rem; border-radius: 16px; }
.contact-card h3 { margin-top: 0; }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--amber-light); font-weight: 700; word-break: break-all; }

.assessment-form { padding: clamp(1.3rem, 4vw, 2.3rem); border-radius: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: 1rem; color: #dbe4ef; font-size: .84rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  margin-top: .45rem;
  padding: .8rem .9rem;
  border: 1px solid #334155;
  border-radius: 10px;
  background: #08101f;
  color: white;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245, 158, 11, .12); }
textarea { resize: vertical; }
.submit-button { width: 100%; border: 0; }
.form-note { margin: .7rem 0 0; color: #68768b; font-size: .75rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer p { margin: .25rem 0; font-size: .8rem; }

.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  max-width: 360px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(245, 158, 11, .45);
  border-radius: 12px;
  background: #111827;
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0b1220;
  }
  .site-nav.open { display: flex; }
  .hero, .assessment-section { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .card-grid, .team-grid { grid-template-columns: 1fr; }
  .program-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 5vw; }
  .brand small { display: none; }
  .hero, .section { width: min(92vw, 1180px); }
  .hero h1 { font-size: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .spotlight-top, .spotlight-content, footer { flex-direction: column; }
  .owner-block { text-align: left; }
}
