:root {
  --navy: #061b3a;
  --navy-soft: #0d2b54;
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-pale: #ecfdf5;
  --gold: #d4a853;
  --terracotta: #c2724b;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --muted: #78716c;
  --cream: #f5f0eb;
  --warm-white: #fafaf9;
  --white: #ffffff;
  --line: #e7e5e4;
  --shadow: 0 24px 70px rgba(28, 25, 23, 0.12);
  --shadow-soft: 0 12px 36px rgba(28, 25, 23, 0.08);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.62rem;
  line-height: 1.15;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(28, 25, 23, 0.07);
  background: rgba(250, 250, 249, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 160px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.button-primary {
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 10px 26px rgba(5, 150, 105, 0.24);
}

.button-primary:hover {
  background: var(--emerald-dark);
  box-shadow: 0 14px 32px rgba(5, 150, 105, 0.3);
}

.button-outline {
  border-color: rgba(5, 150, 105, 0.35);
  color: var(--emerald-dark);
  background: rgba(255, 255, 255, 0.62);
}

.button-outline:hover {
  border-color: var(--emerald);
  background: var(--emerald-pale);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.button-light:hover {
  background: var(--emerald-pale);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 162px 0 92px;
  background:
    linear-gradient(115deg, rgba(236, 253, 245, 0.62), transparent 42%),
    var(--warm-white);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(212, 168, 83, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 112px;
  left: -130px;
  width: 360px;
  height: 360px;
  background: rgba(5, 150, 105, 0.05);
}

.hero-orb-two {
  top: 180px;
  right: 3%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(194, 114, 75, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  min-width: 0;
  padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--emerald-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.86);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.04);
  }
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.95;
}

.hero h1 em {
  display: block;
  color: var(--emerald);
  font-style: italic;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.25);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link span {
  color: var(--emerald);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--emerald);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  background: var(--emerald-pale);
}

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

.photo-grid {
  display: grid;
  height: 530px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 150px 208px 136px;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--cream);
}

.photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 27, 58, 0.16));
  content: "";
  pointer-events: none;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo:hover img {
  transform: scale(1.04);
}

.photo-one {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.photo-two {
  grid-column: 1;
  grid-row: 3;
}

.photo-three {
  grid-column: 2;
  grid-row: 1;
}

.photo-four {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.launch-card {
  position: absolute;
  right: -30px;
  bottom: 42px;
  display: flex;
  width: min(340px, 86%);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(6, 27, 58, 0.2);
  backdrop-filter: blur(16px);
}

.launch-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--emerald);
}

.launch-icon svg,
.closing-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.launch-card strong,
.launch-card span {
  display: block;
}

.launch-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.launch-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.section {
  padding: clamp(86px, 10vw, 132px) 0;
}

.intro-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
}

.intro-grid h2 {
  max-width: 500px;
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.intro-copy strong {
  color: var(--ink);
}

.audience-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.audience-section::before {
  position: absolute;
  top: -240px;
  right: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(212, 168, 83, 0.24);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child,
.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.audience-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(5, 150, 105, 0.045);
  border-radius: 50%;
  content: "";
}

.card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(6, 27, 58, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 17px;
  color: var(--emerald-dark);
  background: var(--emerald-pale);
}

.card-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.card-owners .card-icon {
  color: #8b641f;
  background: #fff9e6;
}

.card-agents .card-icon {
  color: #9a5131;
  background: #fff4ed;
}

.card-label {
  margin-bottom: 10px;
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 18px;
}

.audience-card > p:not(.card-label) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.coming-soon {
  position: absolute;
  bottom: 30px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.coming-soon::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.process-section {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 10% 20%, rgba(5, 150, 105, 0.2), transparent 31%),
    linear-gradient(135deg, var(--navy), #031228);
}

.process-section::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
}

.section-kicker.light {
  color: #6ee7b7;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy > p:not(.section-kicker) {
  max-width: 550px;
  margin-bottom: 34px;
  font-size: 1.03rem;
  line-height: 1.85;
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 28px;
  width: 1px;
  background: linear-gradient(rgba(110, 231, 183, 0.6), rgba(110, 231, 183, 0.04));
  content: "";
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 0 0 42px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: 50%;
  color: #6ee7b7;
  background: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.process-list h3 {
  margin: 2px 0 8px;
  color: var(--white);
  font-size: 1.45rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.7;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 28px 48px 28px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 28px;
  padding-right: 48px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.faq-list details a {
  color: var(--emerald-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-section {
  padding: 0 0 96px;
  background: var(--white);
}

.closing-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 46px 54px;
  border: 1px solid rgba(5, 150, 105, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 20%, rgba(212, 168, 83, 0.16), transparent 24%),
    var(--emerald-pale);
}

.closing-card::after {
  position: absolute;
  top: -90px;
  right: 150px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(5, 150, 105, 0.13);
  border-radius: 50%;
  content: "";
}

.closing-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: var(--navy);
}

.closing-card .section-kicker {
  margin-bottom: 8px;
}

.closing-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.closing-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.closing-card .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--warm-white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  width: 138px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta a {
  color: var(--emerald-dark);
  font-weight: 700;
}

a:focus-visible,
summary:focus-visible {
  border-radius: 5px;
  outline: 3px solid rgba(5, 150, 105, 0.35);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.2rem);
  }

  .photo-grid {
    height: 470px;
    grid-template-rows: 130px 180px 124px;
  }

  .launch-card {
    right: -10px;
  }

  .audience-card {
    min-height: 470px;
    padding: 28px;
  }

  .coming-soon {
    right: 24px;
    bottom: 26px;
    left: 28px;
  }

  .closing-card {
    grid-template-columns: auto 1fr;
  }

  .closing-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 144px;
  }

  .hero {
    padding: 132px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 0;
  }

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

  .photo-grid {
    height: 550px;
    grid-template-rows: 155px 216px 143px;
  }

  .intro-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 48px;
  }

  .intro-copy {
    padding-top: 28px;
  }

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

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

  .process-grid,
  .faq-grid {
    gap: 58px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-copy {
    width: 100%;
    max-width: 360px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 13vw, 3.65rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
    border-bottom: 0;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .photo-grid {
    height: 410px;
    gap: 10px;
    padding: 8px;
    grid-template-rows: 110px 155px 113px;
    border-radius: 22px;
  }

  .photo {
    border-radius: 14px;
  }

  .launch-card {
    right: -4px;
    bottom: 20px;
    width: 92%;
  }

  .launch-icon {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: 2.55rem;
  }

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

  .audience-card {
    min-height: 430px;
    padding: 26px;
  }

  .coming-soon {
    right: 22px;
    left: 26px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .process-list::before {
    left: 23px;
  }

  .process-list li > span {
    width: 48px;
    height: 48px;
  }

  .faq-list summary {
    padding: 24px 40px 24px 0;
    font-size: 1.18rem;
  }

  .faq-list details p {
    padding-right: 18px;
  }

  .closing-section {
    padding-bottom: 70px;
  }

  .closing-card {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .closing-card .button {
    grid-column: 1;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

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

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