:root {
  --bg: #f7faef;
  --surface: #ffffff;
  --surface-soft: #f1f7e2;
  --ink: #1a220f;
  --ink-soft: #56604e;
  --line: #dce6c9;
  --brand: #aec912;
  --brand-deep: #8fa90f;
  --brand-dark: #2b450b;
  --mint: #015e65;
  --radius-lg: 1.08rem;
  --radius-md: 0.84rem;
  --shadow: 0 14px 36px rgba(22, 30, 10, 0.1);
  --container-max: 1180px;
  --section-space: clamp(2rem, 4vw, 3.25rem);
  --mobile-header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

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

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--brand);
  color: #1e2707;
  font-weight: 700;
  padding: 0.52rem 0.7rem;
  border-radius: 0.52rem;
}

.skip-link:focus {
  top: 0.7rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(174, 201, 18, 0.9);
  outline-offset: 2px;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 0%, rgba(174, 201, 18, 0.16), transparent 35%),
    radial-gradient(circle at 92% 12%, rgba(1, 94, 101, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f8e8 100%);
}

.container {
  width: min(var(--container-max), calc(100% - 2.2rem));
  margin-inline: auto;
}

.section-gap {
  padding: var(--section-space) 0;
}

.eyebrow {
  display: inline-block;
  color: #7f980d;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.subtle {
  margin-top: 0.52rem;
  color: var(--ink-soft);
}

.top-bar {
  border-bottom: 1px solid rgba(174, 201, 18, 0.34);
  background: rgba(255, 255, 255, 0.85);
}

.top-inner {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.28rem 0;
  color: #5f6857;
  font-size: 0.82rem;
}

.top-inner a {
  color: #5f7810;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(174, 201, 18, 0.22);
}

.site-header .container {
  width: min(1420px, calc(100% - 2rem));
}

.nav-row {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: min(320px, 42vw);
  border-radius: 0.48rem;
  background: #000;
  padding: 0.18rem 0.45rem;
}

.brand-tag {
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2c360f;
  background: rgba(174, 201, 18, 0.14);
  border: 1px solid rgba(174, 201, 18, 0.34);
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav a {
  font-size: 0.86rem;
  color: #4f5e42;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #1b220f;
}

.menu-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.26rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.16rem;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  background: var(--brand);
  color: #1b2807;
  font-weight: 700;
  padding: 0.76rem 1.14rem;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 0.84rem;
  padding: 0.52rem 0.88rem;
}

.btn-ghost {
  background: rgba(174, 201, 18, 0.12);
  border-color: rgba(174, 201, 18, 0.38);
  color: #5a6f0d;
}

.btn-ghost:hover {
  background: rgba(174, 201, 18, 0.2);
}

.hero {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: 0.95rem;
  align-items: start;
}

.hero-copy h1,
.section-head h2,
h3,
h4 {
  font-family: "DM Sans", "Open Sans", sans-serif;
}

.hero-copy h1 {
  margin-top: 0.45rem;
  font-size: clamp(1.95rem, 5.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a220f;
  max-width: 14ch;
}

.hero-program-name {
  margin-top: 0.45rem;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-weight: 700;
  color: #2f3c16;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.lead {
  margin-top: 0.72rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 58ch;
}

.hero-parent-note {
  margin-top: 0.55rem;
  display: inline-block;
  border: 1px solid rgba(174, 201, 18, 0.38);
  background: rgba(174, 201, 18, 0.14);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  font-size: 0.8rem;
  color: #455521;
  font-weight: 700;
}

.hero-cta {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-decision-strip {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-decision-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(174, 201, 18, 0.4);
  background: #fbfee8;
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: #51620f;
}

.trust-pills {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.trust-pills li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0.68rem;
  padding: 0.46rem 0.58rem;
  font-size: 0.8rem;
  color: #53604b;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: clamp(1.28rem, 1.9vw, 1.62rem);
}

.facts {
  list-style: none;
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.facts li {
  border: 1px solid var(--line);
  border-radius: 0.62rem;
  background: #fff;
  padding: 0.52rem 0.62rem;
  display: grid;
  gap: 0.2rem;
}

.facts li span {
  font-size: 0.81rem;
  color: #5a654f;
}

.facts li strong {
  font-size: 0.88rem;
  color: #1d2512;
}

.helpbox {
  margin-top: 0.66rem;
  border: 1px solid rgba(174, 201, 18, 0.34);
  background: #f9fce9;
  border-radius: 0.68rem;
  padding: 0.66rem;
}

.help-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5f7110;
}

.help-phone {
  margin-top: 0.22rem;
  display: inline-block;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1d15;
}

.help-text {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: #596451;
}

.hero-photo-card,
.apply-photo-card {
  margin: 0.72rem 0 0;
  border: 1px solid #d8e3bc;
  border-radius: 0.72rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-photo-card img,
.apply-photo-card img {
  width: 100%;
  min-height: 170px;
  object-fit: cover;
}

.hero-photo-card figcaption,
.apply-photo-card figcaption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.74rem;
  color: #556247;
  background: #f8fce9;
}

.media-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.14rem 0.46rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-chip-real {
  color: #355407;
  background: rgba(174, 201, 18, 0.26);
  border: 1px solid rgba(143, 170, 15, 0.45);
}

.stats-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.stats-grid article {
  border: 1px solid var(--line);
  border-radius: 0.76rem;
  background: #fff;
  padding: 0.74rem;
  box-shadow: var(--shadow);
}

.stats-grid strong {
  color: #1e2a10;
  font-size: 0.97rem;
}

.stats-grid p {
  margin-top: 0.34rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.program-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbee 100%);
  border-top: 1px solid rgba(174, 201, 18, 0.18);
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin-top: 0.28rem;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.program-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.64rem;
}

.program-card {
  position: relative;
  border: 1px solid #dfe6ce;
  border-radius: 0.84rem;
  background: #fff;
  padding: 0.88rem;
  box-shadow: var(--shadow);
}

.program-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #aec912 0%, #8faa0f 100%);
}

.program-card span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f7110;
}

.program-card h3 {
  margin-top: 0.4rem;
  font-size: 1.03rem;
  color: #1c2413;
}

.program-card p {
  margin-top: 0.48rem;
  color: #56624f;
  font-size: 0.88rem;
}

.arena-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(196, 222, 49, 0.18), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(77, 125, 24, 0.2), transparent 36%),
    linear-gradient(180deg, #121f06 0%, #21350a 58%, #2d460d 100%);
  border-top: 1px solid rgba(206, 229, 87, 0.25);
  border-bottom: 1px solid rgba(206, 229, 87, 0.25);
}

.arena-head .eyebrow {
  color: #d5ec66;
}

.arena-head h2 {
  color: #f4fadf;
}

.arena-head .subtle {
  color: #d6e4bf;
}

.arena-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
}

.arena-card {
  border: 1px solid rgba(204, 229, 84, 0.36);
  border-radius: 0.88rem;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(40, 62, 12, 0.9) 0%, rgba(30, 47, 8, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(8, 15, 4, 0.35);
}

.arena-card span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d3ea63;
}

.arena-card h3 {
  margin-top: 0.4rem;
  color: #f4fadf;
  font-size: 1.06rem;
}

.arena-card p {
  margin-top: 0.44rem;
  color: #d9e7c2;
  font-size: 0.89rem;
}

.curriculum-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbec 100%);
}

.roadmap-list {
  margin-top: 0.9rem;
  border: 1px solid #dce8c4;
  border-radius: 0.95rem;
  padding: 0.72rem;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.45rem;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 0.64rem;
  border: 1px solid #e0e8cd;
  border-radius: 0.7rem;
  padding: 0.5rem 0.58rem;
  background: #fbfdf6;
}

.roadmap-item.spotlight {
  border-color: rgba(174, 201, 18, 0.5);
  background: linear-gradient(135deg, rgba(174, 201, 18, 0.16) 0%, rgba(196, 222, 49, 0.08) 100%);
}

.roadmap-day {
  justify-self: start;
  min-width: 84px;
  text-align: center;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #274107;
  background: #c5df32;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.roadmap-copy h3 {
  font-size: 1rem;
  line-height: 1.26;
  color: #203017;
}

.fee-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fced 100%);
}

.fee-card {
  margin: 0.95rem auto 0;
  max-width: 900px;
  border: 1px solid #dce6c8;
  border-radius: 0.95rem;
  padding: 1rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.fee-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f7310;
  background: rgba(174, 201, 18, 0.22);
}

.fee-value {
  margin-top: 0.38rem;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: #1f2715;
}

.fee-value span {
  font-size: 0.94rem;
  color: #626b56;
  font-weight: 600;
}

.fee-copy {
  margin-top: 0.56rem;
  color: #53604e;
}

.fee-list {
  margin-top: 0.7rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.38rem;
  color: #4c5948;
}

.fee-list li {
  font-size: 0.9rem;
}

.fee-list li strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #1e2a12;
  font-weight: 700;
}

.faq-section {
  background: #f8fbf2;
}

.faq-list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.54rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.82rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: #202915;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-content p {
  color: #55624f;
  padding: 0 0.9rem 0.9rem;
}

.apply-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(174, 201, 18, 0.2), transparent 40%),
    radial-gradient(circle at 88% 14%, rgba(1, 94, 101, 0.08), transparent 34%),
    linear-gradient(135deg, #f9fce9 0%, #f0f8f4 100%);
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 0.9rem;
  align-items: start;
}

.apply-copy {
  display: grid;
  gap: 0.68rem;
  align-content: start;
}

.apply-copy p {
  margin-top: 0.42rem;
  color: #596451;
  max-width: 52ch;
}

.apply-pill-list {
  list-style: none;
  margin-top: 0.12rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.apply-pill-list li {
  border: 1px solid rgba(174, 201, 18, 0.36);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 0.4rem 0.56rem;
  font-size: 0.79rem;
  text-align: center;
  color: #4e5b2c;
  font-weight: 700;
}

.apply-next {
  margin-top: 0.06rem;
  border: 1px solid #d7e2b7;
  background: #fbfdeb;
  border-radius: 0.76rem;
  padding: 0.66rem;
}

.apply-next h3 {
  font-size: 0.98rem;
}

.apply-next ol {
  margin-top: 0.45rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.34rem;
  color: #4e593d;
}

.apply-next li {
  font-size: 0.87rem;
}

.apply-photo-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

.apply-actions {
  margin-top: 0.64rem;
}

.apply-form {
  border: 1px solid #cfddb1;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 252, 228, 0.95) 100%);
  padding: 0.95rem;
  display: grid;
  gap: 0.76rem;
  box-shadow: 0 18px 34px rgba(26, 34, 15, 0.13);
  position: sticky;
  top: 90px;
  align-self: start;
  height: fit-content;
}

.hp-wrap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field {
  opacity: 0;
}

.apply-form-head {
  border: 1px solid #d4e1ae;
  background: linear-gradient(120deg, #f5fbe0 0%, #eef9f4 100%);
  border-radius: 0.72rem;
  padding: 0.64rem;
}

.form-head-tag {
  margin: 0;
  display: inline-block;
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #63770f;
  background: rgba(174, 201, 18, 0.24);
}

.apply-form-head h3 {
  margin-top: 0.32rem;
  font-size: 1.05rem;
}

.apply-form-head p {
  margin-top: 0.28rem;
  font-size: 0.82rem;
  color: #5f6657;
}

.apply-form-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.34rem;
  color: #445132;
}

.apply-form-list li {
  font-size: 0.86rem;
  line-height: 1.4;
}

.apply-form .btn {
  width: 100%;
  min-height: 50px;
  font-size: 1rem;
}

.apply-form-note {
  margin: -0.1rem 0 0;
  font-size: 0.78rem;
  text-align: center;
  color: #5f6656;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.38rem;
}

.form-progress span {
  border: 1px solid #dbe4c8;
  border-radius: 999px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #657052;
  padding: 0.3rem 0.24rem;
  background: #fff;
}

.form-progress span.active {
  border-color: rgba(174, 201, 18, 0.58);
  color: #415408;
  background: rgba(174, 201, 18, 0.2);
}

.apply-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.apply-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.87rem;
  color: #5b6653;
}

.apply-form input:not([type="checkbox"]),
.apply-form select {
  width: 100%;
  border: 1px solid #d5d9cc;
  border-radius: 0.62rem;
  background: #fff;
  padding: 0.56rem 0.64rem;
  color: #1f2a16;
  font: inherit;
  min-height: 44px;
}

.apply-form input.invalid,
.apply-form select.invalid {
  border-color: #d12d2d;
  outline: 2px solid rgba(209, 45, 45, 0.16);
}

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.54rem;
  border: 1px solid #dbe5c5;
  background: #fff;
  border-radius: 0.64rem;
  padding: 0.6rem 0.64rem;
}

.consent-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-height: auto;
  margin-top: 0.1rem;
  padding: 0;
  accent-color: #8faa0f;
}

.consent-row span {
  font-size: 0.81rem;
  color: #4e5740;
  line-height: 1.42;
}

.consent-row.invalid {
  border-color: #d12d2d;
  background: #fff3f3;
}

.form-status {
  display: none;
  border-radius: 0.56rem;
  padding: 0.56rem 0.62rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #eef8ec;
  border: 1px solid #b8ddb0;
  color: #1c4f1c;
}

.form-status.error {
  background: #fdeeee;
  border: 1px solid #f1bdbd;
  color: #6f1f1f;
}

.form-note {
  font-size: 0.77rem;
  color: #6a645f;
}

.form-direct-call {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(196, 222, 49, 0.52);
  border-radius: 0.64rem;
  min-height: 42px;
  font-weight: 700;
  color: #4f6810;
  background: #f4fadc;
}

.site-footer {
  padding: 1.45rem 0 0.88rem;
  background: #161a00;
  color: #e9efd3;
  border-top: 1px solid rgba(174, 201, 18, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.84fr);
  gap: 0.9rem;
  align-items: start;
}

.footer-title {
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f9de;
}

.footer-brand p + p,
.footer-detail {
  margin-top: 0.42rem;
  color: #d5dfb3;
  font-size: 0.88rem;
}

.footer-detail {
  display: grid;
  gap: 0.32rem;
}

.footer-detail strong {
  color: #eef4cf;
}

.footer-links {
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  color: #d5ec58;
  font-weight: 700;
  font-size: 0.88rem;
  word-break: break-word;
}

.footer-bottom {
  margin-top: 0.92rem;
  padding-top: 0.64rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: #bdc8a0;
  font-size: 0.8rem;
}

.mobile-cta {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 12, 0.32);
  z-index: 45;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .roadmap-item {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .apply-form {
    position: static;
  }
}

@media (max-width: 860px) {
  .section-gap {
    padding: 2.2rem 0;
  }

  .top-bar {
    display: none;
  }

  .site-header .container {
    width: min(1420px, calc(100% - 1rem));
  }

  .nav-row {
    min-height: var(--mobile-header-height);
  }

  .main-nav {
    position: fixed;
    top: calc(var(--mobile-header-height) + 0.45rem + env(safe-area-inset-top));
    left: 0.7rem;
    right: 0.7rem;
    width: auto;
    display: grid;
    gap: 0.38rem;
    background: #fff;
    border: 1px solid #dfe6cf;
    border-radius: 0.92rem;
    padding: 0.84rem;
    box-shadow: 0 26px 42px rgba(24, 31, 10, 0.2);
    max-height: calc(100dvh - var(--mobile-header-height) - 1.6rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
    z-index: 70;
  }

  .main-nav a {
    font-size: 1rem;
    font-weight: 700;
    color: #30352d;
    border: 1px solid #e8ebe0;
    border-radius: 0.66rem;
    padding: 0.62rem 0.7rem;
    min-height: 44px;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav .btn-sm {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-tag {
    display: none;
  }

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

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .container {
    width: min(var(--container-max), calc(100% - 1rem));
  }

  .brand-logo {
    height: 36px;
    max-width: min(230px, 68vw);
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.68rem, 8.3vw, 2.25rem);
    line-height: 1.12;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.44rem;
  }

  .hero-decision-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .hero-decision-strip span {
    justify-content: center;
    text-align: center;
    padding: 0.38rem 0.32rem;
  }

  .trust-pills,
  .stats-grid,
  .program-grid,
  .apply-pill-list,
  .apply-field-grid,
  .apply-photo-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    grid-template-columns: 1fr;
    gap: 0.44rem;
  }

  .roadmap-day {
    justify-self: start;
  }

  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    display: block;
    padding: 0.52rem 0.6rem calc(0.58rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #dce3c4;
    backdrop-filter: blur(8px);
    box-shadow: 0 -8px 18px rgba(16, 19, 11, 0.08);
  }

  .mobile-cta a {
    display: block;
    text-align: center;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 0.65rem;
    padding: 0.74rem 0.35rem;
    min-height: 46px;
  }

  .mobile-cta-apply {
    border: 1px solid #8faa0f;
    color: #fff;
    background: #8faa0f;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .reveal,
  .reveal.active {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 390px) {
  .section-gap {
    padding: 1.7rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.54rem, 9vw, 2rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
