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

:root {
  --bg: #050607;
  --bg-alt: #0f1115;
  --bg-soft: #13161c;
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.7);
  --accent: #f05a28;
  --accent-soft: rgba(240, 90, 40, 0.2);
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.04);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

.hero {
  min-height: 100vh;
  padding: 1rem clamp(1rem, 5vw, 5rem) 4rem;
  background: radial-gradient(circle at top left, rgba(240, 90, 40, 0.25), transparent 50%),
    radial-gradient(circle at bottom right, rgba(102, 126, 234, 0.25), transparent 40%), var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}

.hero__badge {
  position: absolute;
  top: 1.5rem;
  right: clamp(1rem, 5vw, 5rem);
  width: clamp(30px, 8vw, 60px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

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

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav__links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.btn {
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(240, 90, 40, 0.25);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

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

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.hero p {
  color: var(--text-muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.hero__contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-weight: 500;
}

.video-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.trust strong {
  font-size: 2rem;
}

.section {
  padding: 4rem clamp(1rem, 5vw, 5rem);
  background: var(--bg);
}

.section--dark {
  background: var(--bg-alt);
}

.section--accent {
  background: var(--accent-soft);
}

.section__intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section__intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.8rem 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card,
.program,
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
}

.program {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.tag {
  background: rgba(240, 90, 40, 0.15);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section__intro p,
.card p,
.program p,
.quote p,
.media-card p {
  color: var(--text-muted);
}

.section--dark .section__intro p {
  color: rgba(255, 255, 255, 0.8);
}

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

.media-card {
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-card iframe {
  width: 100%;
  height: 220px;
  display: block;
}

.media-card h3 {
  padding: 1.2rem 1.2rem 0;
}

.media-card p {
  padding: 0 1.2rem 1.5rem;
}

.quote {
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote h3 {
  font-style: normal;
}

.section--accent {
  color: #fff;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact ul {
  list-style: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact__form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact__form input,
.contact__form textarea {
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.8rem 1rem;
  color: #fff;
  font: inherit;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid var(--accent);
}

.footer {
  padding: 2.5rem clamp(1rem, 5vw, 5rem);
  background: #010203;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer__links,
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
}

.footer__links a,
.footer__meta a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer__meta span {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__links.nav__links--open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    right: clamp(1rem, 5vw, 5rem);
    top: 4.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    width: min(220px, 80vw);
    z-index: 10;
  }

  .btn--ghost {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding-top: 1.5rem;
  }
}
