:root {
  color-scheme: light;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ink: #132033;
  --ink-soft: #314052;
  --muted: #667486;
  --paper: #f7f9fc;
  --white: #ffffff;
  --navy: #162235;
  --navy-2: #233650;
  --gold: #f6c028;
  --gold-2: #f2aa00;
  --gold-soft: #fff3cb;
  --sky: #126b87;
  --line: rgba(19, 32, 51, 0.14);
  --line-strong: rgba(19, 32, 51, 0.24);
  --shadow: 0 22px 60px rgba(19, 32, 51, 0.14);
  --shadow-small: 0 12px 34px rgba(19, 32, 51, 0.1);
  --radius: 8px;
  --radius-sm: 5px;
  --shell: 1180px;
  --gutter: 1.25rem;
  --header: 4.5rem;
  --section: 5.5rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

code {
  padding: 0.08rem 0.24rem;
  border-radius: 4px;
  background: rgba(246, 192, 40, 0.18);
  color: inherit;
  font-size: 0.95em;
}

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

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
  transition: transform 180ms var(--ease);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  background: rgba(19, 32, 51, 0.96);
  color: #fff;
  box-shadow: 0 10px 30px rgba(19, 32, 51, 0.14);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(19, 32, 51, 0.98);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 900;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.brand__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a,
.header-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 780;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active,
.header-link:hover {
  color: var(--gold);
}

.header-link {
  padding: 0.68rem 0.86rem;
  border: 1px solid rgba(246, 192, 40, 0.68);
  border-radius: var(--radius-sm);
  background: rgba(246, 192, 40, 0.12);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 7rem 0 4rem;
  overflow: clip;
  background: var(--navy);
  color: #fff;
}

.hero--page {
  min-height: 66svh;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: kenburns 18s var(--ease) infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.16), rgba(19, 32, 51, 0.9)),
    linear-gradient(90deg, rgba(19, 32, 51, 0.94), rgba(19, 32, 51, 0.56) 52%, rgba(19, 32, 51, 0.18));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.hero__content {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #b97800;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.process .eyebrow,
.checklist .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.7rem;
}

.hero--page h1 {
  max-width: 13ch;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.12;
}

p {
  color: var(--muted);
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
}

.hero__lead {
  max-width: 43rem;
  font-size: 1.1rem;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 880;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

.button:hover,
.button.is-emphasised {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button--primary {
  background: var(--gold);
  color: var(--ink);
}

.button--secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.microcopy,
.form-note,
.disclosure-note {
  font-size: 0.92rem;
}

.microcopy {
  max-width: 40rem;
  margin: 1rem 0 0;
}

.route-card,
.advice-card,
.disclosure-box,
.option-card,
.faq-item,
.email-form,
.money-card,
.guide-card,
.principles article,
.steps li,
.value-grid > div,
.table-wrap,
.founder__content,
.router-panel {
  border-radius: var(--radius);
}

.route-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.route-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.4rem;
}

.route-card p,
.route-card li {
  color: var(--ink-soft);
}

.route-card__label,
.money-card span,
.guide-card span,
.option-card span,
.status-pill {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #b97800;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tick-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.1rem;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold);
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.7rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.value-grid > div {
  min-height: 7.15rem;
  padding: 1rem;
  background: #fff;
}

.value-grid dt {
  margin-bottom: 0.4rem;
  color: #b97800;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.28;
}

.section {
  position: relative;
  padding-block: var(--section);
  overflow: clip;
}

.section--white {
  background: #fff;
}

.section--gold-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 203, 0.68)),
    var(--gold-soft);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading--split {
  display: grid;
  gap: 1.5rem;
  max-width: none;
}

.section-heading--split > p {
  max-width: 34rem;
}

.money-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.money-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}

.money-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.money-card > div {
  padding: 1rem;
}

.money-card p {
  margin-bottom: 1rem;
}

.money-card a,
.text-link {
  color: var(--sky);
  font-weight: 900;
}

.money-card a:hover,
.text-link:hover {
  color: var(--ink);
}

.process {
  background: linear-gradient(180deg, var(--navy), #0f1726);
  color: #fff;
}

.process h2,
.process h3 {
  color: #fff;
}

.process p,
.process li {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 16rem;
  padding: 1.05rem;
  border: 1px solid rgba(246, 192, 40, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(246, 192, 40, 0.72);
  background: rgba(246, 192, 40, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.two-column,
.faq-layout,
.founder__grid,
.checklist__inner,
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principles article,
.guide-card,
.advice-card,
.option-card {
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.principles p,
.guide-card p,
.advice-card p,
.option-card p {
  margin-bottom: 0;
}

.disclosure-section {
  background: var(--paper);
}

.disclosure-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.disclosure-panel p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 1rem;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms var(--ease);
}

.faq-item.is-open .faq-question span::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease);
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 1rem;
}

.founder {
  background: #fff;
}

.founder__grid {
  align-items: center;
}

.founder__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder__media img {
  width: 100%;
  min-height: 27rem;
  object-fit: cover;
}

.founder__content {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.checklist {
  position: relative;
  background: var(--navy);
  color: #fff;
}

.checklist__media,
.checklist::after {
  position: absolute;
  inset: 0;
}

.checklist__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(19, 32, 51, 0.96), rgba(19, 32, 51, 0.76)),
    linear-gradient(180deg, rgba(19, 32, 51, 0.18), rgba(19, 32, 51, 0.88));
}

.checklist__inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.checklist h2 {
  color: #fff;
}

.checklist p {
  color: rgba(255, 255, 255, 0.78);
}

.email-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.email-form label,
.router-form label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.email-form input,
.email-form select,
.router-form select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.email-form input:focus,
.email-form select:focus,
.router-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.email-form .form-note {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 3.25rem 0 1.4rem;
  background: #101827;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.95fr;
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.site-footer p,
.footer-disclosure p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a:hover,
.site-footer a:hover {
  color: #fff;
}

.footer-disclosure strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

/* Money page styles */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 780;
}

.breadcrumb a {
  color: #fff;
}

.page-intro-card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.page-intro-card p,
.page-intro-card li {
  color: var(--ink-soft);
}

.page-intro-card h2 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.quick-answer {
  padding: 1.2rem;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.quick-answer p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-small);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.commercial-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  border: 1px solid rgba(246, 192, 40, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.commercial-cta h2,
.commercial-cta h3,
.commercial-cta p {
  color: #fff;
}

.commercial-cta p {
  margin-bottom: 0;
  opacity: 0.78;
}

.disclosure-box {
  padding: 1rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: #fff;
}

.disclosure-box h2,
.disclosure-box h3 {
  font-size: 1.15rem;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.related-links a {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.related-links a:hover {
  border-color: var(--gold);
}

/* Go router */

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

.router-status {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--ink);
}

.router-status strong,
.router-status span {
  display: block;
}

.router-status span {
  color: var(--muted);
}

.router-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.route-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.route-list li {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes kenburns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1rem, -0.55rem, 0);
  }
}

@media (min-width: 900px) {
  .section-heading--split {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.56fr);
    align-items: end;
  }
}

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

  .site-nav__list {
    gap: 0.7rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section: 4.25rem;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) var(--gutter) auto;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(19, 32, 51, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.82rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .site-nav li:last-child a {
    border-bottom: 0;
  }

  .header-link {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .hero,
  .hero--page {
    min-height: auto;
    padding: 6.2rem 0 2.75rem;
  }

  .hero__inner,
  .two-column,
  .faq-layout,
  .founder__grid,
  .checklist__inner,
  .page-grid,
  .disclosure-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .steps,
  .guide-grid,
  .related-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1rem;
    --section: 3.6rem;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .brand__text {
    max-width: 12rem;
  }

  .hero__actions,
  .button-row,
  .button {
    width: 100%;
  }

  .value-strip {
    margin-top: 0;
  }

  .value-grid,
  .money-grid,
  .steps,
  .guide-grid,
  .option-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .value-grid > div,
  .steps li {
    min-height: auto;
  }

  .money-card img {
    height: 13rem;
  }

  .founder__media img {
    min-height: 20rem;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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