:root {
  --green-950: #102f25;
  --green-900: #174534;
  --green-800: #1f5a43;
  --green-100: #dce9e0;
  --cream: #f7f2e7;
  --cream-deep: #eee5d3;
  --white: #ffffff;
  --charcoal: #202722;
  --muted: #59645d;
  --gold: #b38a3e;
  --gold-light: #dec994;
  --error: #a12c27;
  --success: #1f6d49;
  --border: #d7d8d0;
  --shadow: 0 20px 60px rgba(16, 47, 37, 0.12);
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --max-width: 74rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 69, 52, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  pointer-events: none;
}

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

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

a {
  color: var(--green-800);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--green-950);
}

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

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

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

.narrow {
  width: min(calc(100% - 2rem), 49rem);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 69, 52, 0.16);
  background: rgba(247, 242, 231, 0.96);
}

.nav-wrap {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--green-950);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.15rem;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--green-800);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
}

.brand-mark::after {
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.6rem 0.82rem;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green-100);
  color: var(--green-950);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  background: var(--green-900);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--green-950);
  color: var(--white);
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green-950);
  font-weight: 750;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  font-weight: 650;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  background: linear-gradient(145deg, var(--cream) 28%, #e7edde 100%);
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -22rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(179, 138, 62, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.24), 0 0 0 8rem rgba(23, 69, 52, 0.035);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-copy .lede {
  margin-bottom: 2rem;
}

.hero-art-frame {
  position: relative;
  min-height: clamp(31rem, 44vw, 38rem);
  overflow: hidden;
  border: 1px solid rgba(23, 69, 52, 0.16);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.hero-art-frame::after {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(222, 201, 148, 0.42);
  border-radius: calc(var(--radius-lg) - 0.45rem);
  content: "";
  pointer-events: none;
}

.hero-art-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  padding: 1.35rem;
  border: 1px solid rgba(23, 69, 52, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 35px rgba(16, 47, 37, 0.18);
  backdrop-filter: blur(10px);
}

.hero-note h2 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.status-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  background: #fffaf0;
  color: #634912;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note p:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-900);
  border-radius: var(--radius-sm);
  background: var(--green-900);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  border-color: var(--green-950);
  background: var(--green-950);
  color: var(--white);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--green-950);
}

.button-secondary:hover {
  background: var(--green-100);
  color: var(--green-950);
}

.button-arrow::after {
  margin-left: 0.6rem;
  content: "\2192";
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-white {
  background: var(--white);
}

.section-green {
  background: var(--green-950);
  color: #e9f0eb;
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

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

.section-heading {
  display: grid;
  margin-bottom: 2.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.7fr);
  align-items: end;
  gap: 2rem;
}

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

.section-green .section-heading p:last-child {
  color: #c8d5cd;
}

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

.feature-card {
  min-height: 14rem;
  padding: 1.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.audience-card {
  padding: 2rem;
  background: var(--green-950);
}

.audience-card p:last-child {
  margin-bottom: 0;
  color: #c8d5cd;
}

.visual-showcase-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.visual-showcase-section::before {
  position: absolute;
  top: -11rem;
  right: -9rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(179, 138, 62, 0.23);
  border-radius: 48% 52% 62% 38%;
  box-shadow: 0 0 0 3rem rgba(23, 69, 52, 0.035), 0 0 0 6rem rgba(179, 138, 62, 0.025);
  content: "";
}

.brand-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.42fr) minmax(18rem, 0.58fr);
  align-items: stretch;
  border: 1px solid rgba(23, 69, 52, 0.16);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.brand-showcase-media {
  min-width: 0;
  margin: 0;
  background: var(--green-950);
}

.brand-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.brand-showcase-copy {
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  flex-direction: column;
}

.brand-showcase-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.brand-showcase-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.interest-section {
  position: relative;
  scroll-margin-top: 1rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.interest-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.interest-intro {
  align-self: start;
}

.interest-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.interest-points li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.6rem;
  color: var(--muted);
}

.interest-points li::before {
  position: absolute;
  top: 0.67rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.form-card {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 69, 52, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-size: 1.7rem;
}

.required-note,
.field-hint,
.form-privacy {
  color: var(--muted);
  font-size: 0.9rem;
}

.required-mark {
  color: var(--error);
  font-weight: 800;
}

.form-grid {
  display: grid;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green-950);
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid #aab3ac;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--green-800);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 1px var(--error);
}

.field-error {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  color: var(--error);
  font-size: 0.86rem;
  font-weight: 650;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
}

.checkbox-field input {
  width: 1.25rem;
  min-height: auto;
  height: 1.25rem;
  margin: 0.18rem 0 0;
  accent-color: var(--green-800);
}

.checkbox-field label {
  margin-bottom: 0;
  font-weight: 620;
}

.checkbox-field .field-error {
  grid-column: 2;
}

.form-actions {
  display: flex;
  margin-top: 1.25rem;
  align-items: center;
  gap: 1rem;
}

.submit-button {
  min-width: 12rem;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 650;
}

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

.form-status.is-success {
  border: 1px solid #91c7a8;
  background: #e8f5ed;
  color: #174d35;
}

.form-status.is-error {
  border: 1px solid #e5aaa5;
  background: #fff0ef;
  color: #7e211d;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid rgba(23, 69, 52, 0.12);
  background: linear-gradient(150deg, var(--cream) 25%, #e4ebdd 100%);
}

.page-hero::after {
  position: absolute;
  right: -12rem;
  bottom: -20rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(179, 138, 62, 0.28);
  border-radius: 50% 42% 55% 45%;
  box-shadow: 0 0 0 3rem rgba(23, 69, 52, 0.035), 0 0 0 6rem rgba(179, 138, 62, 0.035), 0 0 0 9rem rgba(23, 69, 52, 0.025);
  content: "";
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.page-art-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: 0;
  border: 1px solid rgba(23, 69, 52, 0.16);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.page-art-frame::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(222, 201, 148, 0.42);
  border-radius: calc(var(--radius-lg) - 0.45rem);
  content: "";
  pointer-events: none;
}

.page-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-art-frame.art-position-right img {
  object-position: 66% center;
}

.page-hero h1 {
  max-width: 58rem;
  font-size: clamp(2.65rem, 6vw, 5rem);
}

.content-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.content-section h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  margin-top: 2rem;
}

.content-section li + li {
  margin-top: 0.55rem;
}

.prose-callout {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
}

.prose-callout p:last-child {
  margin-bottom: 0;
}

.platform-list {
  counter-reset: platform;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.platform-list li {
  counter-increment: platform;
  display: grid;
  padding: 1.5rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.platform-list li::before {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-950);
  content: counter(platform, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 850;
}

.platform-list p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  border-radius: var(--radius-lg);
  background: var(--green-950);
  color: #d6e2da;
}

.cta-panel h2 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

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

.cta-panel .button {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--green-950);
}

.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(23, 69, 52, 0.15);
  background: #eee8db;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(18rem, 1.3fr);
  gap: 3rem;
}

.footer-brand p {
  max-width: 26rem;
  margin-top: 1rem;
  color: var(--muted);
}

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

.footer-links h2 {
  margin-bottom: 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: var(--charcoal);
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.5rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(23, 69, 52, 0.15);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: 66vh;
  padding: 5rem 1rem;
  place-items: center;
  background-image: linear-gradient(rgba(247, 242, 231, 0.92), rgba(247, 242, 231, 0.97)), url("../images/course-contours.webp");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.not-found > div {
  padding: 2rem;
  border: 1px solid rgba(23, 69, 52, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px);
}

.not-found .error-code {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 0.9;
}

.not-found h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.not-found .lede {
  margin-inline: auto;
}

@media (max-width: 56rem) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(16, 47, 37, 0.12);
  }

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

  .site-nav ul {
    width: min(100%, var(--max-width));
    margin-inline: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin: 0.3rem 0 0;
  }

  .hero-grid,
  .section-heading,
  .interest-shell,
  .page-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art-frame {
    width: min(100%, 44rem);
    min-height: 31rem;
  }

  .page-art-frame {
    width: min(100%, 40rem);
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .brand-showcase-media img {
    min-height: auto;
  }

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

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

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

@media (max-width: 38rem) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-art-frame {
    min-height: 29rem;
    border-radius: var(--radius);
  }

  .hero-note {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 1rem;
  }

  .hero-note h2 {
    font-size: 1.25rem;
  }

  .hero-note p {
    font-size: 0.92rem;
  }

  .page-art-frame,
  .brand-showcase {
    border-radius: var(--radius);
  }

  .feature-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .form-card {
    border-radius: var(--radius);
  }

  .button-row,
  .button,
  .form-actions,
  .submit-button {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-list li {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
