@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --bg: #0b0b0a;
  --bg-soft: #111311;
  --panel: rgba(24, 23, 20, 0.78);
  --panel-strong: rgba(31, 30, 26, 0.9);
  --line: rgba(236, 181, 60, 0.34);
  --gold: #d9aa3f;
  --gold-soft: #efd27a;
  --text: #f7f2e8;
  --muted: #c4beb0;
  --dim: #928c80;
  --sage: #91a08d;
  --warm-line: rgba(145, 160, 141, 0.24);
  --shadow: rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(180deg, #090908 0%, var(--bg) 52%, #0e100e 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 96px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.18;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 183, 63, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 10, 9, 0.72);
  box-shadow: 0 18px 50px var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-cta,
.eyebrow,
.quick-facts,
.cta-row,
.interview-note,
.hero-details > div,
.leader-actions,
.phone-row,
.footer-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(231, 183, 63, 0.08);
}

.brand-mark svg,
.eyebrow svg,
.quick-facts svg,
.button svg,
.interview-note svg,
.hero-details svg,
.fact-card > svg,
.quote-band svg,
.fit-card svg,
.leader-actions svg,
.contact-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.nav-links {
  gap: 8px;
}

.nav-links a,
.header-cta {
  min-height: 38px;
  padding: 7px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--text);
  background: rgba(231, 183, 63, 0.12);
  outline: none;
}

.header-cta {
  display: none;
  color: #12100b;
  background: linear-gradient(180deg, #f5d772 0%, var(--gold) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 26px;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.94) 0%, rgba(9, 9, 8, 0.72) 46%, rgba(9, 9, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(9, 9, 8, 0.2) 0%, var(--bg) 98%),
    url("assets/mountain-hero.jpg") center bottom / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(231, 183, 63, 0.42), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-soft);
  background: rgba(231, 183, 63, 0.06);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 92px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 span,
h2 span {
  display: block;
}

.accent {
  color: var(--gold);
}

.lead {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 20px;
}

.quick-facts {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.quick-facts span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(231, 183, 63, 0.28);
  border-radius: var(--radius);
  background: rgba(19, 20, 18, 0.72);
  color: var(--text);
  font-weight: 800;
}

.quick-facts svg {
  color: var(--gold);
}

.cta-row {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #11100d;
  background: linear-gradient(180deg, #f8d873 0%, var(--gold) 100%);
  box-shadow: 0 16px 34px rgba(231, 183, 63, 0.18);
}

.button-secondary {
  color: var(--gold-soft);
  border-color: rgba(231, 183, 63, 0.48);
  background: rgba(11, 11, 10, 0.68);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(231, 183, 63, 0.1);
}

.interview-note {
  max-width: 650px;
  gap: 12px;
  margin-bottom: 0;
  color: var(--muted);
}

.interview-note svg {
  flex: 0 0 auto;
  color: var(--sage);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.people-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.person-preview,
.hero-details,
.fact-card,
.fit-card,
.leader-card,
.contact-box,
.quote-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.person-preview {
  overflow: hidden;
}

.person-preview h3 {
  margin: 0 0 8px;
  padding: 0 16px;
  font-size: 22px;
}

.person-preview p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.person-photo,
.leader-photo {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(217, 170, 63, 0.16), rgba(145, 160, 141, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent),
    #171715;
}

.person-photo {
  min-height: 200px;
}

.person-photo picture,
.leader-photo picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.person-photo img,
.leader-photo img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
}

.person-photo::before,
.leader-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.02), rgba(8, 8, 7, 0.18)),
    rgba(217, 170, 63, 0.045);
}

.person-photo.mikhail-photo img {
  object-position: 50% 36%;
  transform: scale(2.1);
  transform-origin: 50% 36%;
}

.person-photo.vadim-photo img {
  object-position: 60% 30%;
  transform: scale(1.34);
  transform-origin: 60% 30%;
}

.leader-photo.mikhail-photo img {
  object-position: 53% 54%;
  transform: scale(1.1);
  transform-origin: 53% 54%;
}

.leader-photo.vadim-photo img {
  object-position: 58% 38%;
}

.person-photo.is-missing::after,
.leader-photo.is-missing::after {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(231, 183, 63, 0.44);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(11, 11, 10, 0.62);
  content: attr(data-initials);
  font-size: 28px;
  font-weight: 900;
}

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

.hero-details > div {
  gap: 16px;
  padding: 17px 19px;
}

.hero-details > div + div {
  border-left: 1px solid rgba(231, 183, 63, 0.22);
}

.hero-details svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.hero-details p {
  margin: 0;
  color: var(--text);
  font-size: 19px;
}

.hero-details span {
  display: block;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.signal-strip {
  padding: 18px 0;
  border-bottom: 1px solid rgba(231, 183, 63, 0.12);
  background: rgba(17, 19, 17, 0.88);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.signal-item {
  display: grid;
  gap: 2px;
  min-height: 70px;
  align-content: center;
  padding: 12px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.signal-item strong {
  font-size: 18px;
}

.signal-item span {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    linear-gradient(90deg, rgba(145, 160, 141, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.018);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-head.centered p {
  margin-right: auto;
  margin-left: auto;
}

.section h2,
.apply-section h2 {
  margin-bottom: 18px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head p,
.apply-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fact-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  min-height: 166px;
  padding: 24px;
}

.fact-card > svg {
  width: 58px;
  height: 58px;
  padding: 14px;
  color: var(--gold);
  border: 1px solid rgba(231, 183, 63, 0.28);
  border-radius: var(--radius);
  background: rgba(231, 183, 63, 0.07);
}

.fact-card h3 {
  margin-bottom: 9px;
  font-size: 24px;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 26px 32px;
  background:
    linear-gradient(90deg, rgba(24, 23, 20, 0.92), rgba(24, 23, 20, 0.7)),
    url("assets/mountain-hero.jpg") center 62% / cover no-repeat;
}

.quote-band svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.82;
}

.quote-band p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.scan-list {
  display: grid;
  gap: 14px;
}

.scan-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(231, 183, 63, 0.22);
  background: linear-gradient(90deg, rgba(231, 183, 63, 0.08), transparent);
}

.scan-list span {
  color: var(--sage);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.scan-list strong {
  font-size: 24px;
  line-height: 1.25;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fit-card {
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
  gap: 16px;
  min-height: 188px;
  padding: 22px;
}

.fit-card svg {
  color: var(--sage);
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.rules-section {
  padding: 76px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(145, 160, 141, 0.055));
}

.rules-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1fr);
  gap: 48px;
  align-items: start;
}

.rules-grid .section-head {
  margin-bottom: 0;
}

.rules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rules-list div,
.steps article {
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: rgba(20, 22, 19, 0.74);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.rules-list div {
  display: grid;
  gap: 8px;
  min-height: 164px;
  align-content: start;
  padding: 20px;
}

.rules-list svg {
  width: 30px;
  height: 30px;
  color: var(--sage);
}

.rules-list strong {
  font-size: 20px;
  line-height: 1.2;
}

.rules-list span {
  color: var(--muted);
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.leader-photo {
  min-height: 440px;
}

.leader-body {
  display: grid;
  align-content: center;
  padding: 30px;
}

.leader-body h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.leader-body .role {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 19px;
}

.leader-body ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.leader-body li {
  position: relative;
  padding-left: 24px;
}

.leader-body li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.leader-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.leader-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 183, 63, 0.34);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.leader-actions a:hover,
.leader-actions a:focus-visible {
  background: rgba(231, 183, 63, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.process-section {
  background: rgba(9, 9, 8, 0.64);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 44px;
  align-items: start;
}

.process-grid .section-head {
  margin-bottom: 0;
}

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

.steps article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
}

.steps span {
  display: block;
  margin-bottom: 42px;
  color: var(--sage);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.apply-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.96), rgba(9, 9, 8, 0.72)),
    url("assets/mountain-hero.jpg") center bottom / cover no-repeat;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.6fr);
  gap: 54px;
  align-items: center;
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contact-heading {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 183, 63, 0.34);
  border-radius: var(--radius);
  color: #14100a;
  background: linear-gradient(180deg, #f4d676 0%, var(--gold) 100%);
}

.contact-heading svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.contact-heading strong,
.contact-heading small {
  display: block;
}

.contact-heading strong {
  font-size: 18px;
  line-height: 1.2;
}

.contact-heading small {
  color: #3a2a0c;
  line-height: 1.35;
}

.contact-link {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 183, 63, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(231, 183, 63, 0.56);
  background: rgba(231, 183, 63, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.contact-link strong,
.contact-link small {
  display: block;
}

.contact-link small {
  color: var(--muted);
}

.contact-link svg {
  color: var(--gold);
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 2px;
}

.phone-card {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 183, 63, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.phone-card:hover,
.phone-card:focus-visible {
  border-color: rgba(231, 183, 63, 0.52);
  background: rgba(231, 183, 63, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.phone-card svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold);
}

.phone-card strong,
.phone-card small {
  display: block;
}

.phone-card strong {
  color: var(--text);
  line-height: 1.2;
}

.phone-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.3;
}

.phone-row {
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 0 0;
}

.phone-row a {
  color: var(--muted);
  font-weight: 700;
}

.phone-row a:hover,
.phone-row a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.site-footer {
  padding: 26px 0;
  color: var(--dim);
  background: #080807;
}

.footer-grid {
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--gold-soft);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 20;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(217, 170, 63, 0.56);
  border-radius: var(--radius);
  color: #12100b;
  background: linear-gradient(180deg, #f5d772 0%, var(--gold) 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta svg {
  width: 20px;
  height: 20px;
}

body.is-sticky-ready .mobile-sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-apply-visible .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid,
  .split-layout,
  .apply-grid,
  .rules-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 760px;
  }

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

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

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

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

@media (max-width: 760px) {
  .container,
  .site-header {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    align-items: center;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 14px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 58px;
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
    font-size: 15px;
  }

  .people-preview,
  .hero-details,
  .signal-grid,
  .facts-grid,
  .fit-grid,
  .leaders-grid,
  .leader-card,
  .apply-grid,
  .rules-grid,
  .process-grid,
  .rules-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-details {
    order: -1;
  }

  .hero-details > div + div {
    border-top: 1px solid rgba(231, 183, 63, 0.22);
    border-left: 0;
  }

  .signal-grid {
    gap: 8px;
  }

  .section,
  .apply-section,
  .rules-section {
    padding: 68px 0;
  }

  .section h2,
  .apply-section h2 {
    font-size: 42px;
  }

  .section-head p,
  .apply-copy p {
    font-size: 18px;
  }

  .fact-card {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 142px;
    padding: 18px;
  }

  .fact-card > svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .quote-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quote-band p {
    font-size: 22px;
  }

  .scan-list div {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .scan-list strong {
    font-size: 20px;
  }

  .fit-card {
    min-height: 148px;
  }

  .rules-list div {
    min-height: 132px;
  }

  .steps article {
    min-height: 168px;
  }

  .steps span {
    margin-bottom: 28px;
  }

  .leader-photo {
    min-height: 330px;
  }

  .leader-body {
    padding: 24px;
  }

  .footer-grid {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 50px;
  }

  .quick-facts span {
    width: auto;
  }

  .eyebrow {
    max-width: 100%;
  }

  .person-photo,
  .leader-photo {
    min-height: 270px;
  }

  .contact-link {
    min-height: 70px;
  }

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

@media (max-width: 360px) {
  h1 {
    font-size: 44px;
  }

  .button,
  .mobile-sticky-cta {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
