@font-face {
  font-family: "Acid Grotesk";
  src: url("assets/fonts/AcidGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acid Grotesk";
  src: url("assets/fonts/AcidGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #fa4616;
  --orange-bright: #ff4b19;
  --paper: #ddd9d8;
  --ink: #060606;
  --ink-soft: #101010;
  --line: #272727;
  --muted: #a5a5a8;
  --blue: #1977d3;
  --lime: #d9f100;
  --radius: 22px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Acid Grotesk", "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 8% 6%, #191518 0%, #0d0a0c 35%, #050505 100%);
  color: var(--paper);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: var(--orange);
  color: var(--ink);
}

.section-wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.topbar.is-solid {
  background: rgba(6, 6, 6, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 104px;
}

.brand__sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.topbar__nav a:hover {
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 11px 18px;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--orange);
  color: var(--ink);
}

.btn--solid:hover {
  background: var(--orange-bright);
}

.btn--line {
  border: 1px solid #4d4d4d;
  color: var(--paper);
}

.btn--line:hover {
  border-color: #767676;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  padding-top: clamp(46px, 8vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 11px;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

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

.lede {
  max-width: 610px;
  margin: 18px 0 26px;
  color: #cbc8c9;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__art {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--paper) 0%, #c8c4c3 100%);
  border: 1px solid #b4aeaf;
}

.proof {
  margin-top: clamp(34px, 8vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof__card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof__value {
  padding: 20px 22px 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.proof__label {
  padding: 10px 22px 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof__card img {
  width: 100%;
  border-top: 1px solid var(--line);
}

.program {
  margin-top: clamp(64px, 9vw, 108px);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4.8vw, 4rem);
  max-width: 830px;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

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

.program-card {
  min-height: 240px;
  background: linear-gradient(170deg, #121212 0%, #0b0b0b 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.program-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.05;
}

.program-card p {
  margin: 12px 0 0;
  color: #c5c2c3;
}

.meta {
  margin-top: 16px;
  display: inline-block;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.qualification {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qualification__rules {
  background: var(--paper);
  color: #101010;
  padding: 26px;
}

.qualification__rules h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
}

.qualification__rules ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.qualification__rules li::before {
  content: "• ";
  color: var(--orange);
  font-weight: 700;
}

.qualification img {
  background: var(--orange);
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
}

.process {
  margin-top: clamp(64px, 9vw, 108px);
}

.steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 16px 2px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.steps strong {
  color: var(--orange);
  min-width: 2.3ch;
}

.process__visuals {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process__visuals img {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid #bbb5b4;
  padding: 16px;
  height: 230px;
  width: 100%;
  object-fit: contain;
}

.faq {
  margin-top: clamp(64px, 9vw, 108px);
}

.faq-list {
  margin-top: 22px;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.15rem;
  padding: 16px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--orange);
}

.faq-item p {
  margin: 0;
  padding: 0 0 16px;
  color: #c8c5c6;
}

.apply {
  margin: clamp(64px, 9vw, 108px) auto clamp(40px, 6vw, 64px);
}

.apply__panel {
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, #c8c3c2 100%);
  color: #101010;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid #bcb6b5;
  padding: clamp(24px, 4vw, 48px);
}

.apply__mark {
  width: 60px;
  margin: 0 auto 16px;
}

.apply h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  letter-spacing: -0.03em;
}

.apply p {
  max-width: 640px;
  margin: 12px auto 24px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8e8d8f;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer img {
  width: 88px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.48s var(--ease), transform 0.48s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .proof,
  .program-grid,
  .process__visuals {
    grid-template-columns: 1fr 1fr;
  }

  .qualification {
    grid-template-columns: 1fr;
  }

  .qualification img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .proof,
  .program-grid,
  .process__visuals {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}
