
:root {
  --brand-primary: #ff6f21;
  --brand-primary-soft: rgba(255, 111, 33, 0.18);
  --brand-primary-hover: #ff8b4a;
  --bg-dark: #050509;
  --bg-elevated: #101018;
  --bg-deep: radial-gradient(circle at top left, #2a1b4a, #050509 55%);
  --border-subtle: #232335;
  --text-main: #f5f5f7;
  --text-muted: #a0a0b8;
  --card-bg: #141421;
  --card-border: #26263a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Inter", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom,
    rgba(5,5,12,0.95),
    rgba(5,5,12,0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

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

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--brand-primary-soft);
  background: radial-gradient(circle at top left,
              rgba(255,111,33,0.2),
              rgba(255,111,33,0.02));
  color: var(--text-main);
  font-size: 0.85rem;
  cursor: pointer;
}

/* HERO */

.hero {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-title span {
  color: var(--brand-primary);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
  color: #090909;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255,111,33,0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-hover), var(--brand-primary));
}

.hero-secondary {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-secondary strong {
  color: var(--text-main);
}

.hero-card {
  background: radial-gradient(circle at top left,
                rgba(255,111,33,0.18),
                rgba(5,5,12,0.9));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 45px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}

.hero-metric {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.hero-metric h3 {
  margin: 0;
  font-size: 1.8rem;
}

.hero-metric span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5,5,12,0.6);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECTIONS */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 40px;
}

.section-header {
  margin-bottom: 28px;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.6rem;
  margin: 6px 0;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* GRID */

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

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 35px rgba(0,0,0,0.5);
}

.card-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-title {
  font-size: 1rem;
  margin: 0 0 6px;
}

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

/* FOOTER */

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 20px 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* SIMPLE ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* APPLY PAGE OVERRIDES */

.apply h2 {
  margin-bottom: 6px;
}

.apply p {
  margin-bottom: 24px;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }
  .nav-inner {
    flex-direction: row;
  }
  .nav-links {
    display: none;
  }
}
