:root {
  --navy: #071f33;
  --navy-2: #0c2f49;
  --navy-3: #163f59;
  --gold: #b58c3d;
  --gold-light: #d9bf82;
  --ink: #12283a;
  --muted: #657581;
  --paper: #f5f3ed;
  --paper-2: #ebe7dc;
  --white: #ffffff;
  --line: rgba(18, 40, 58, 0.14);
  --light-line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.72;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.section-block {
  padding-block: 132px;
}

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 40, 58, 0.08);
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 12px 34px rgba(7, 31, 51, 0.07);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand > img {
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.brand > span,
.footer-brand > span {
  display: grid;
  line-height: 1.05;
}

.brand strong,
.footer-brand strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
  margin-top: 6px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: #20384a;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 0.22s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 9px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.22s ease;
}

.hero {
  min-height: 850px;
  padding: 150px max(32px, calc((100vw - var(--max)) / 2)) 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.9fr);
  align-items: center;
  gap: 78px;
  background:
    linear-gradient(90deg, rgba(7, 31, 51, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(7, 31, 51, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(135deg, #fff 0%, #faf9f5 58%, #f0ede5 100%);
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label,
.opportunity-en,
.lens-en {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.north-star h2,
.opportunity-heading h2,
.evidence h2,
.risk h2,
.discipline h2,
.company h2 {
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.16;
}

.hero h1 {
  margin: 26px 0 30px;
  font-size: clamp(58px, 5.5vw, 84px);
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-primary:hover {
  background: var(--navy-2);
}

.text-link {
  color: #435666;
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 7px;
  color: var(--gold);
}

.text-link.dark {
  color: var(--navy);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 14px 0 0;
  border-right: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 18px;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: #435666;
  font-size: 12px;
  font-weight: 600;
}

.hero-visual {
  min-width: 0;
}

.hero-panel {
  position: relative;
  min-height: 580px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(18, 40, 58, 0.14);
  box-shadow: 0 40px 90px rgba(7, 31, 51, 0.13);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(18, 40, 58, 0.11);
  pointer-events: none;
}

.hero-panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.hero-panel-top span,
.hero-panel-top i {
  color: #4e6271;
  font-family: Georgia, serif;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.hero-mark {
  position: absolute;
  z-index: 0;
  width: 72%;
  max-width: none;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  padding: 42px 36px;
  opacity: 1;
  object-fit: contain;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.equation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: end;
  gap: 12px;
  padding-top: 390px;
}

.equation div {
  padding-top: 14px;
  border-top: 1px solid rgba(18, 40, 58, 0.2);
}

.equation small {
  display: block;
  color: #8b6528;
  font-family: Georgia, serif;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.equation strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 14px;
}

.equation b {
  color: #8b6528;
  font-size: 14px;
  font-weight: 400;
}

.hero-panel > p {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  color: #435666;
  font-size: 11px;
}

.process-rail {
  min-height: 100px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: var(--navy);
}

.process-rail span {
  display: grid;
  gap: 5px;
  color: #ead29a;
  font-family: Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-rail span b {
  color: #fff;
  font-family: Pretendard, "Pretendard Variable", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.process-rail i {
  flex: 1;
  height: 1px;
  max-width: 70px;
  background: rgba(255, 255, 255, 0.3);
}

.north-star {
  padding-block: 112px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  border-bottom: 1px solid var(--line);
}

.north-star h2 {
  margin: 20px 0 0;
  font-size: clamp(40px, 4vw, 59px);
}

.north-star-copy > p {
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 17px;
}

.north-star blockquote {
  margin: 0;
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--gold);
  color: var(--navy);
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 21px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.66fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 66px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 64px);
}

.section-heading > p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lens-card {
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  transition: background 0.22s ease, transform 0.22s ease;
}

.lens-card:hover {
  background: #fff;
  transform: translateY(-4px);
}

.lens-card-featured {
  grid-row: span 2;
  min-height: 680px;
  color: #fff;
  background: var(--navy);
}

.lens-card-featured:hover {
  background: var(--navy-2);
}

.lens-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.lens-en {
  margin-top: auto;
}

.lens-card h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.lens-card > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lens-card-featured .lens-en {
  color: var(--gold-light);
}

.lens-card-featured h3 {
  color: #fff;
  font-size: 34px;
}

.lens-card-featured > p:last-of-type {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.lens-card ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lens-card li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.opportunities {
  color: #fff;
  background: var(--navy);
}

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

.opportunity-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.15fr 0.72fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 76px;
}

.opportunity-heading h2 {
  margin: 0;
  font-size: clamp(43px, 4vw, 62px);
}

.opportunity-heading > p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.opportunity-list {
  border-top: 1px solid var(--light-line);
}

.opportunity-list article {
  display: grid;
  grid-template-columns: 70px 0.72fr 1fr;
  gap: 45px;
  align-items: start;
  padding: 32px 10px;
  border-bottom: 1px solid var(--light-line);
  transition: background 0.22s ease, padding 0.22s ease;
}

.opportunity-list article:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.opportunity-list article > span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 10px;
}

.opportunity-en {
  color: var(--gold-light);
}

.opportunity-list h3 {
  margin: 6px 0 0;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.opportunity-list article > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.evidence {
  background: #fff;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: center;
}

.evidence-copy h2 {
  margin: 21px 0 28px;
  font-size: clamp(44px, 4vw, 62px);
}

.evidence-copy > p:last-child {
  color: var(--muted);
}

.cash-card {
  position: relative;
  padding: 42px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 30px 70px rgba(7, 31, 51, 0.14);
}

.cash-card-label {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.cash-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 42px;
}

.cash-formula span {
  min-height: 100px;
  padding: 20px 15px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.cash-formula b {
  color: var(--gold-light);
  font-weight: 400;
}

.cash-result {
  margin-top: 24px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.07);
  border-left: 2px solid var(--gold);
}

.cash-result small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
}

.cash-result strong {
  display: block;
  margin-top: 5px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.cash-card > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.verification-grid article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.verification-grid h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.verification-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.risk {
  color: #fff;
  background: var(--navy-2);
}

.risk-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 110px;
}

.risk h2 {
  margin: 22px 0 0;
  font-size: clamp(45px, 4.4vw, 67px);
}

.risk-lead {
  margin: 5px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.risk-rules {
  border-top: 1px solid var(--light-line);
}

.risk-rules div {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 22px 0 29px;
  border-bottom: 1px solid var(--light-line);
}

.risk-rules span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.risk-rules strong {
  font-size: 14px;
  font-weight: 600;
}

.risk-rules i {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.risk-rules i::after {
  content: "";
  display: block;
  width: var(--level);
  height: 100%;
  background: var(--gold);
}

.risk-copy ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.risk-copy li {
  position: relative;
  padding: 7px 0 7px 21px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.risk-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

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

.discipline-main {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 90px;
  align-items: end;
  margin-top: 34px;
}

.discipline h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 71px);
}

.discipline h2 em {
  color: var(--gold);
  font-style: normal;
}

.discipline-main > div > p {
  color: var(--muted);
  margin: 0 0 28px;
}

.company {
  color: var(--navy);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.company-brand > img {
  width: 150px;
  height: 150px;
  padding: 22px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(7, 31, 51, 0.1);
}

.company-brand > p {
  margin: 27px 0 13px;
  color: #8b6528;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.company h2 {
  margin: 0;
  font-size: clamp(45px, 4.4vw, 66px);
}

.company-info > p:first-child {
  margin: 2px 0 43px;
  color: #526574;
  font-size: 16px;
}

.company dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company dl div {
  display: grid;
  grid-template-columns: 125px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.company dt {
  color: #8b6528;
  font-size: 11px;
}

.company dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.company dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.status-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: #657581;
  font-size: 11px;
}

.status-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(181, 140, 61, 0.13);
}

.manual-ad {
  position: relative;
  min-height: 112px;
  margin-block: 30px 18px;
  padding: 20px 12px 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbf8;
}

.ad-rails {
  display: none;
}

.side-ad {
  position: fixed;
  z-index: 20;
  top: 104px;
  bottom: 24px;
  width: 140px;
  min-height: 300px;
  padding: 24px 8px 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 251, 248, 0.96);
}

.side-ad-left {
  left: 10px;
}

.side-ad-right {
  right: 10px;
}

.side-ad > span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  color: #89939a;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.side-ad .adsbygoogle {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.manual-ad > span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  color: #89939a;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.manual-ad .adsbygoogle {
  width: 100%;
  min-height: 80px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 21px;
  align-items: center;
  padding-block: 32px;
  color: #71808a;
  font-size: 10px;
}

.footer-brand > img {
  width: 38px;
  height: 32px;
  object-fit: contain;
}

.site-footer .disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

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

[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}

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

@media (min-width: 1500px) and (min-height: 650px) {
  .ad-rails {
    display: block;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

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

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .north-star,
  .evidence-grid,
  .risk-grid,
  .company-grid {
    gap: 58px;
  }

  .section-heading,
  .opportunity-heading {
    grid-template-columns: 0.34fr 1fr;
  }

  .section-heading > p:last-child,
  .opportunity-heading > p:last-child {
    grid-column: 2;
  }

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

  .lens-card-featured {
    grid-row: auto;
    min-height: 470px;
  }

  .discipline-main {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .section-block {
    padding-block: 88px;
  }

  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  .brand > img {
    width: 38px;
    height: 34px;
  }

  .menu-button {
    display: block;
    z-index: 3;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 96px 30px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    color: #fff;
    background: var(--navy);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    color: #fff;
    font-family: "Noto Serif KR", Georgia, serif;
    font-size: 27px;
    font-weight: 400;
  }

  body.nav-open .menu-button {
    color: #fff;
  }

  body.nav-open .site-header {
    backdrop-filter: none;
  }

  body.nav-open .menu-button > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .menu-button > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 56px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-facts {
    margin-top: 48px;
  }

  .hero-facts div {
    padding-right: 8px;
  }

  .hero-facts div + div {
    padding-left: 10px;
  }

  .hero-facts dd {
    font-size: 10px;
  }

  .hero-panel {
    min-height: 470px;
    padding: 23px;
  }

  .hero-mark {
    width: 82%;
    padding: 34px 28px;
    top: 42%;
  }

  .equation {
    padding-top: 310px;
    gap: 7px;
  }

  .equation small {
    font-size: 6px;
  }

  .process-rail {
    padding: 22px 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .process-rail span {
    min-width: 108px;
  }

  .process-rail i {
    min-width: 26px;
  }

  .north-star,
  .section-heading,
  .opportunity-heading,
  .evidence-grid,
  .risk-grid,
  .discipline-main,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .north-star {
    padding-block: 78px;
  }

  .north-star-copy > p {
    margin-top: 0;
  }

  .north-star blockquote {
    font-size: 18px;
  }

  .section-heading > p:last-child,
  .opportunity-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading,
  .opportunity-heading {
    margin-bottom: 46px;
  }

  .lens-grid,
  .verification-grid {
    grid-template-columns: 1fr;
  }

  .lens-card,
  .lens-card-featured {
    min-height: 360px;
  }

  .opportunity-list article {
    grid-template-columns: 42px 1fr;
    gap: 15px 19px;
    padding-block: 27px;
  }

  .opportunity-list article > p {
    grid-column: 2;
  }

  .cash-card {
    padding: 27px 21px;
  }

  .cash-formula {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .cash-formula span {
    min-height: 64px;
  }

  .cash-formula b {
    text-align: center;
  }

  .verification-grid {
    margin-top: 48px;
  }

  .verification-grid article {
    min-height: 175px;
  }

  .risk-rules div {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .discipline-main > div {
    padding-top: 10px;
  }

  .company-brand > img {
    width: 115px;
    height: 115px;
    padding: 17px;
  }

  .company dl div {
    grid-template-columns: 92px 1fr;
  }

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

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

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

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