/* R.A.C.K. Security Training School
   Source-backed civic / field-office redesign */

:root {
  --paper: #ebe2cf;
  --paper-2: #f6efdf;
  --paper-3: #d8cdb8;
  --ink: #070806;
  --ink-2: #151713;
  --muted: #5f5a4e;
  --rule: rgba(7, 8, 6, 0.18);
  --rule-strong: rgba(7, 8, 6, 0.54);
  --navy: #143f87;
  --navy-2: #082653;
  --red: #c42c35;
  --green: #2d7d46;
  --gold: #c89b3c;
  --white: #fffaf0;
  --display: "Anton", Impact, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1420px;
  --gutter: clamp(18px, 4vw, 64px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(7, 8, 6, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 8, 6, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.skip-link:focus {
  transform: translateY(0);
}

.notice-bar {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.notice-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 8px 0;
  animation: ticker 46s linear infinite;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.notice-track span {
  position: relative;
}

.notice-track span::after {
  content: "";
  position: absolute;
  right: -23px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--red);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(235, 226, 207, .94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 86px;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 116px;
}

.brand img {
  width: 116px;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
  color: var(--ink-2);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--navy);
  border-color: currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule-strong);
  background: var(--paper-2);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(45, 125, 70, .15);
}

.phone-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--navy);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.nav-button:hover {
  transform: translateY(-2px);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--ink);
  z-index: 0;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: calc(100svh - 118px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) var(--gutter) clamp(38px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
}

.hero-copy {
  min-width: 0;
  max-width: 860px;
}

.eyebrow,
.label {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
}

.eyebrow span,
.label {
  border-left: 5px solid var(--red);
  padding-left: 12px;
}

.label.light {
  color: var(--gold);
  border-left-color: var(--gold);
}

.hero h1,
.section-head h2,
.pathway-intro h2,
.enroll h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: 122px;
  line-height: .92;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--red);
}

.button.primary:hover {
  transform: translate(-3px, -3px);
  background: var(--navy);
  box-shadow: 8px 8px 0 var(--red);
}

.button.ghost {
  background: var(--paper-2);
  color: var(--ink);
}

.button.ghost:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: clamp(34px, 5vw, 60px);
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
}

.quick-proof div {
  min-height: 110px;
  padding: 18px;
  background: var(--paper-2);
}

.quick-proof strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  line-height: .95;
  color: var(--ink);
}

.quick-proof span {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.record-card {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: clamp(24px, 3vw, 34px);
  transform: translateY(-28px);
}

.record-card::before {
  content: "Verified";
  position: absolute;
  top: -15px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 5px 10px;
  transform: rotate(2deg);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.record-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
}

.record-top span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 800;
}

.record-top strong {
  font-family: var(--display);
  font-size: 50px;
  line-height: .8;
  color: var(--navy);
  letter-spacing: 0;
}

.record-card dl {
  margin: 18px 0 0;
}

.record-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.record-card dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.record-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.record-card a:not(.source-link) {
  border-bottom: 1px solid var(--navy);
}

.source-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

section {
  scroll-margin-top: 108px;
}

.courses,
.proof,
.faq,
.enroll {
  padding: clamp(72px, 9vw, 130px) 0;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(34px, 5vw, 70px);
  padding: 0 var(--gutter);
}

.section-head h2,
.pathway-intro h2,
.enroll h2 {
  max-width: 14ch;
  font-size: 78px;
  line-height: .92;
}

.section-head p,
.pathway-intro p,
.enroll p {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.42;
}

.course-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
}

.course-card {
  min-height: 460px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
}

.course-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.course-code {
  align-self: flex-start;
  border: 1px solid currentColor;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--navy);
}

.featured .course-code {
  color: var(--gold);
}

.course-card h3 {
  margin: 32px 0 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.course-card p {
  margin: 20px 0 26px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.5;
}

.featured p {
  color: var(--paper-3);
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 24px;
  border-top: 1px solid currentColor;
}

.course-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.course-card li span {
  color: var(--muted);
  text-transform: uppercase;
}

.featured li span {
  color: var(--paper-3);
}

.course-card li strong {
  text-align: right;
  font-weight: 800;
}

.course-card > a {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
}

.featured > a {
  color: var(--gold);
}

.pathway {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 16px),
    var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 132px) 0;
}

.pathway-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}

.pathway-intro {
  position: sticky;
  top: 128px;
}

.pathway-intro p {
  color: var(--paper-3);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.steps li {
  position: relative;
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(235, 226, 207, .25);
  background: rgba(235, 226, 207, .055);
  overflow: hidden;
}

.steps li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--navy);
}

.steps span {
  position: absolute;
  right: 22px;
  top: 16px;
  font-family: var(--display);
  font-size: 112px;
  line-height: .8;
  color: rgba(20, 63, 135, .72);
}

.steps h3 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: 46px;
  line-height: .95;
  font-weight: 400;
  text-transform: uppercase;
}

.steps p {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  margin: 16px 0 0;
  color: var(--paper-3);
}

.proof {
  background: var(--paper);
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.proof-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--white);
}

.proof-card span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

.proof-card strong {
  display: block;
  margin-top: 26px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.proof-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
}

.faq {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.faq-list {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.faq-list details {
  border-top: 1px solid var(--ink);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

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

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

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--ink-2);
  font-size: 18px;
}

.enroll {
  background:
    linear-gradient(90deg, transparent 0 calc(50% - 1px), var(--rule) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--paper);
}

.enroll-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.contact-stack a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-stack a:hover {
  background: var(--ink);
  color: var(--paper);
}

.enroll-form {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 10px 10px 0 var(--red);
}

.enroll-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-3);
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
  width: 100%;
  border: 1px solid rgba(235, 226, 207, .36);
  background: rgba(235, 226, 207, .08);
  color: var(--paper);
  padding: 13px 14px;
  outline: none;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.enroll-form select option {
  color: var(--ink);
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .16);
}

.enroll-form textarea {
  resize: vertical;
}

.enroll-form .button {
  margin-top: 8px;
  width: 100%;
  border-color: var(--paper);
  box-shadow: 5px 5px 0 var(--navy);
}

.enroll-form .button:hover {
  box-shadow: 8px 8px 0 var(--navy);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--paper-3);
  font-size: 13px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-shell img {
  width: 92px;
  height: auto;
  background: var(--paper);
  padding: 7px;
  mix-blend-mode: normal;
}

.footer-shell strong,
.footer-shell span {
  display: block;
}

.footer-shell strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.footer-shell span,
.footer-shell a {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--paper-3);
}

@media (max-width: 1160px) {
  .status-pill {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

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

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

  .site-nav {
    display: none;
  }

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

  body.menu-open .site-nav {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    padding: 20px var(--gutter) 24px;
    justify-content: start;
  }

  .phone-link {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero::before {
    height: 0;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 94px;
  }

  .hero-lede {
    font-size: 22px;
  }

  .record-card {
    max-width: 680px;
    transform: none;
  }

  .course-grid,
  .pathway-shell,
  .enroll-shell {
    grid-template-columns: 1fr;
  }

  .course-card {
    min-height: 380px;
  }

  .section-head h2,
  .pathway-intro h2,
  .enroll h2 {
    font-size: 64px;
  }

  .course-card h3,
  .steps h3 {
    font-size: 40px;
  }

  .pathway-intro {
    position: static;
  }

  .enroll {
    background: var(--paper);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .notice-track {
    font-size: 10px;
    gap: 30px;
  }

  .notice-track span::after {
    right: -19px;
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 86px;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero-shell {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 66px;
    line-height: .94;
  }

  .hero-lede {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions,
  .quick-proof {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-proof {
    display: grid;
  }

  .quick-proof div {
    min-height: 92px;
  }

  .record-card {
    box-shadow: 6px 6px 0 var(--ink);
    min-width: 0;
  }

  .record-card::before {
    right: 12px;
  }

  .record-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .record-top strong {
    font-size: 42px;
  }

  .record-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-head h2,
  .pathway-intro h2,
  .enroll h2 {
    font-size: 52px;
    line-height: .94;
  }

  .course-card h3,
  .steps h3 {
    font-size: 36px;
  }

  .quick-proof strong {
    font-size: 32px;
  }

  .proof-card strong,
  .faq-list summary {
    font-size: 30px;
  }

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

  .steps li {
    min-height: 260px;
  }

  .steps span {
    opacity: .65;
  }

  .faq-list summary {
    padding-right: 12px;
  }

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

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