:root {
  --orange: #ff6a13;
  --orange-dark: #c63a08;
  --orange-soft: #fff1e6;
  --white: #ffffff;
  --ink: #110b08;
  --muted: #6e5c54;
  --line: rgba(33, 23, 19, 0.14);
  --yellow: #ffd166;
  --stripe: #1b130f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, transparent 0 74%, rgba(255, 106, 19, 0.08) 74% 77%, transparent 77%),
    var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(255, 106, 19, 0.12) 0 16%, transparent 16% 100%),
    rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand img {
  object-fit: cover;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(244, 81, 30, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.light {
  color: var(--orange);
  background: var(--white);
  box-shadow: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--orange-dark);
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: calc(100svh - 82px);
  padding: clamp(56px, 8vw, 96px) 0;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 7% auto auto -8%;
  z-index: -1;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  content: "";
  background:
    repeating-conic-gradient(from -18deg, rgba(17, 11, 8, 0.12) 0 8deg, transparent 8deg 19deg),
    radial-gradient(circle, rgba(255, 106, 19, 0.18), transparent 64%);
  border-radius: 50%;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.08;
}

.hero-lede {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 22px 10px 28px 36px;
  z-index: -2;
  content: "";
  background:
    linear-gradient(116deg, transparent 0 12%, rgba(17, 11, 8, 0.92) 12% 18%, transparent 18% 30%, rgba(17, 11, 8, 0.88) 30% 36%, transparent 36% 49%, rgba(17, 11, 8, 0.88) 49% 55%, transparent 55% 100%),
    radial-gradient(circle at 72% 18%, rgba(255, 209, 102, 0.86) 0 10%, transparent 10.4%),
    linear-gradient(135deg, var(--orange) 0%, #ff7c1f 62%, #ff9a4d 100%);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.hero-visual::after {
  position: absolute;
  inset: auto 16px 0 auto;
  z-index: -1;
  width: min(82%, 360px);
  height: 160px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(112deg, var(--stripe) 0 18%, #3a2117 18% 23%, var(--stripe) 23% 100%);
  border-radius: 8px;
}

.poster-card {
  position: absolute;
  top: 42px;
  right: 36px;
  display: grid;
  width: min(88%, 410px);
  aspect-ratio: 1;
  place-items: center;
  padding: 14px;
  background:
    repeating-linear-gradient(120deg, var(--ink) 0 16px, #2a1710 16px 22px, var(--ink) 22px 44px);
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(33, 23, 19, 0.22);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

.signal-card {
  position: absolute;
  bottom: 56px;
  left: 0;
  width: min(74%, 310px);
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 44px rgba(33, 23, 19, 0.24);
}

.signal-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--yellow);
  font-weight: 950;
}

.signal-card strong {
  display: block;
  max-width: 12ch;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.problem-band,
.program-band {
  background:
    linear-gradient(118deg, transparent 0 13%, rgba(17, 11, 8, 0.94) 13% 17%, transparent 17% 30%, rgba(17, 11, 8, 0.9) 30% 34%, transparent 34% 100%),
    var(--orange);
}

.problem-band {
  padding: clamp(64px, 9vw, 104px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.problem-band h2 {
  color: var(--white);
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.problem-grid article {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.problem-grid span,
.program-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.problem-grid p,
.program-header p,
.program-list p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.solution {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solution-grid article {
  min-height: 286px;
  padding: 22px;
  background:
    linear-gradient(132deg, rgba(255, 106, 19, 0.18) 0 11%, transparent 11% 100%),
    var(--orange-soft);
  border: 1px solid rgba(244, 81, 30, 0.18);
  border-radius: 8px;
}

.icon-badge {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
}

.solution-grid p,
.join-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.program-band {
  padding: clamp(64px, 9vw, 112px) 0;
  color: var(--white);
}

.program-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 36px;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.program-list article {
  min-height: 230px;
  padding: 24px;
  background: var(--ink);
  border-radius: 8px;
}

.join {
  padding: clamp(72px, 10vw, 124px) 0;
}

.join-panel {
  display: grid;
  min-height: 420px;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 8vw, 74px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(118deg, transparent 0 10%, rgba(17, 11, 8, 0.95) 10% 15%, transparent 15% 26%, rgba(17, 11, 8, 0.85) 26% 31%, transparent 31% 100%),
    var(--orange);
  border-radius: 8px;
}

.join-panel .eyebrow,
.join-panel p {
  color: var(--white);
}

.join-panel p {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 1.15rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.social-links span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a,
.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.social-links a {
  color: var(--white);
  background: rgba(17, 11, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.social-links a:hover,
.footer-links a:hover {
  transform: translateY(-2px);
}

.social-links a:hover {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
}

.footer-links a:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .split,
  .program-header {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .solution-grid,
  .program-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    gap: 9px;
    font-size: 0.82rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.2rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .poster-card {
    top: 22px;
    right: 0;
    width: min(90%, 320px);
    border-width: 7px;
  }

  .signal-card {
    bottom: 34px;
    width: min(78%, 250px);
  }

  .signal-card span {
    margin-bottom: 28px;
  }

  .solution-grid,
  .program-list {
    grid-template-columns: 1fr;
  }

  .solution-grid article,
  .program-list article {
    min-height: 0;
  }

  .icon-badge {
    margin-bottom: 36px;
  }

  .join-panel {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
