:root {
  --color-night: #001014;
  --color-deep: #080d14;
  --color-surface: #111c24;
  --color-surface-2: #172833;
  --color-paper: #f3f7f8;
  --color-white: #f7fafc;
  --color-ink: #142027;
  --color-muted: #a8b6bc;
  --color-line: #d9e4e7;
  --color-orange: #ff6b2b;
  --color-copper: #c9634a;
  --color-cyan: #18dce6;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-soft: 0 16px 40px rgba(0, 16, 20, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--color-cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-deep);
  background: var(--color-cyan);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(8, 13, 20, .72);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 20, .94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: #dce7ea;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--color-deep);
  background: var(--color-orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(24, 220, 230, .16), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 107, 43, .14), transparent 30%),
    linear-gradient(135deg, #001014 0%, #061018 48%, #101b23 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 220, 230, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 220, 230, .055) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  opacity: .74;
}

.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  top: 12%;
  width: 54vw;
  height: 54vw;
  max-width: 740px;
  max-height: 740px;
  border: 1px solid rgba(24, 220, 230, .18);
  border-radius: 50%;
  z-index: 2;
  background:
    radial-gradient(circle, rgba(24, 220, 230, .13), transparent 62%),
    conic-gradient(from 120deg, transparent, rgba(255, 107, 43, .3), transparent, rgba(24, 220, 230, .22), transparent);
  filter: blur(.2px);
  opacity: .64;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 118px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.eyebrow.dark {
  color: var(--color-copper);
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

.hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d5e3e7;
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero-actions,
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button.primary {
  color: var(--color-deep);
  background: var(--color-orange);
}

.button.primary:hover {
  background: #ff814d;
}

.button.secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.button.outline-dark {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: transparent;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 32px 0 0;
}

.proof div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(17, 28, 36, .66);
}

.proof dt {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.proof dd {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(8, 13, 20, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.panel-kicker {
  margin: 18px 0 8px;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.hero-panel h2 {
  font-size: 26px;
}

.hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #d9e6e9;
  font-size: 15px;
}

.hero-panel li svg {
  width: 18px;
  color: var(--color-cyan);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section,
.about-section,
.light-section,
.resources-section {
  padding: 90px 0;
  background: var(--color-paper);
}

.intro-grid,
.method-grid,
.book-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 56px;
  align-items: start;
}

.intro-brand-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 16, 20, .08);
}

.intro-brand-card img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  background: var(--color-deep);
}

.intro-copy {
  color: #405159;
  font-size: 19px;
}

.intro-copy p {
  margin: 0 0 18px;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.value-list span {
  padding: 8px 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.about-section {
  padding-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.about-media {
  justify-self: center;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-deep);
  box-shadow: var(--shadow-soft);
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

.about-copy {
  padding: 12px 0;
}

.about-lead {
  color: #405159;
  font-size: 19px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 24px;
}

.about-points article {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
}

.about-points svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--color-orange);
}

.about-points h3 {
  font-size: 19px;
}

.about-points p {
  margin-bottom: 0;
  color: #536871;
}

.about-note {
  color: #405159;
  font-size: 17px;
}

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

.dark-section,
.method-section,
.contact-section {
  padding: 96px 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 220, 230, .11), transparent 28%),
    linear-gradient(180deg, var(--color-deep), var(--color-night));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p,
.method-grid > div > p,
.contact-grid > div > p {
  color: #9fb0b7;
  font-size: 18px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  max-width: none;
  align-items: end;
}

.light-section .section-heading p,
.resources-section .section-heading p,
.book-copy p {
  color: #4f626a;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) .65fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(17, 28, 36, .66);
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: #000;
}

.channel-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -8px 0 30px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(8, 13, 20, .58);
}

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

.video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-frame span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--color-deep);
  background: var(--color-orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.video-frame svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.featured-copy {
  padding: 8px;
}

.featured-copy p {
  color: var(--color-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-deep);
  background: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.video-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 22px;
}

.filter {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  color: #d8e4e8;
  background: transparent;
  font: 700 14px var(--font-body);
  cursor: pointer;
}

.filter.is-active,
.filter:hover {
  color: var(--color-deep);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.video-grid,
.service-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card,
.service-card,
.resource-card {
  border-radius: var(--radius-md);
  text-decoration: none;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(17, 28, 36, .72);
}

.video-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.video-card-body {
  padding: 16px;
}

.video-card h3 {
  display: -webkit-box;
  min-height: 54px;
  overflow: hidden;
  font-size: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.video-meta span:last-child {
  color: var(--color-cyan);
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--color-line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 16, 20, .06);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--color-orange);
}

.service-card p,
.resource-card p,
.steps p {
  color: #536871;
}

.service-list,
.book-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: #405159;
}

.service-list li::marker,
.book-list li::marker {
  color: var(--color-orange);
}

.method-grid {
  align-items: center;
}

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

.steps li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(17, 28, 36, .72);
}

.steps span {
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-weight: 700;
}

.steps h3 {
  margin-top: 8px;
}

.steps p {
  margin-bottom: 0;
  color: #b7c6cb;
}

.book-section {
  padding: 96px 0;
  background: #fff;
}

.book-grid {
  align-items: center;
}

.book-cover {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--color-white);
  background:
    linear-gradient(150deg, rgba(255, 107, 43, .98), rgba(201, 99, 74, .64) 32%, transparent 33%),
    radial-gradient(circle at 70% 18%, rgba(24, 220, 230, .24), transparent 26%),
    linear-gradient(145deg, #080d14, #001014);
  box-shadow: var(--shadow-soft);
}

.book-cover.real-cover {
  min-height: unset;
  padding: 0;
  background: var(--color-deep);
  align-items: center;
  justify-content: center;
}

.book-cover.real-cover img {
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: contain;
}

.book-cover span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-deep);
  background: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 700;
}

.book-cover h2 {
  margin-top: 130px;
  font-size: clamp(48px, 8vw, 86px);
}

.book-cover p {
  max-width: 340px;
  margin: 10px 0 0;
  color: #dce8eb;
  font-size: 21px;
}

.book-copy p {
  font-size: 18px;
}

.resource-card {
  display: block;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.resource-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.resource-card svg {
  width: 17px;
  height: 17px;
}

.resource-card h3 {
  margin-top: 18px;
}

.contact-grid {
  align-items: center;
}

.contact-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(17, 28, 36, .72);
}

.contact-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
}

.contact-row:hover {
  color: var(--color-orange);
}

.contact-row svg {
  width: 22px;
  height: 22px;
}

.page-hero {
  padding: 150px 0 82px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 220, 230, .11), transparent 28%),
    linear-gradient(135deg, var(--color-night), var(--color-deep));
}

.page-hero .section-shell {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: #d5e3e7;
  font-size: clamp(18px, 1.7vw, 21px);
}

.page-section {
  padding: 82px 0;
  background: var(--color-paper);
}

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

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

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

.content-card {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 16, 20, .06);
}

.content-card.dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, .14);
  background: rgba(17, 28, 36, .72);
}

.content-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--color-orange);
}

.content-card p,
.content-card li,
.legal-content p,
.legal-content li {
  color: #536871;
}

.content-card.dark p,
.content-card.dark li {
  color: #b7c6cb;
}

.content-card ul,
.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.content-card li::marker,
.legal-content li::marker {
  color: var(--color-orange);
}

.feature-band {
  padding: 82px 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 220, 230, .11), transparent 28%),
    linear-gradient(180deg, var(--color-deep), var(--color-night));
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 82px 0;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.legal-content p {
  font-size: 18px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  color: var(--color-muted);
  background: #05080d;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .75fr) minmax(260px, .9fr);
  align-items: start;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .about-grid,
  .method-grid,
  .book-grid,
  .contact-grid,
  .featured-video,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    padding-top: 130px;
  }

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

  .about-media {
    max-width: 390px;
  }

  .video-grid,
  .service-grid,
  .resource-grid,
  .content-grid,
  .content-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-md);
    background: rgba(8, 13, 20, .98);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero-grid {
    gap: 28px;
    padding-bottom: 48px;
  }

  .proof,
  .about-points,
  .video-grid,
  .service-grid,
  .resource-grid,
  .content-grid,
  .content-grid.two {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: min(100%, 340px);
  }

  .intro-section,
  .about-section,
  .light-section,
  .resources-section,
  .dark-section,
  .method-section,
  .book-section,
  .contact-section,
  .page-section,
  .feature-band {
    padding: 68px 0;
  }

  .page-hero {
    padding: 128px 0 64px;
  }

  .book-cover {
    min-height: 360px;
  }

  .channel-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

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

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