:root {
  color-scheme: light;
  --navy-950: #07152f;
  --navy-900: #0b1f45;
  --navy-800: #12336d;
  --blue-700: #075fd8;
  --blue-600: #087bea;
  --blue-500: #079cf3;
  --cyan-400: #35c6f4;
  --cyan-200: #b9edff;
  --cyan-100: #e9faff;
  --slate-700: #33445f;
  --slate-600: #50617a;
  --slate-500: #708097;
  --slate-300: #cfd8e5;
  --slate-200: #e5ebf3;
  --slate-100: #f3f7fb;
  --white: #ffffff;
  --success: #0b9b6e;
  --warning: #e69027;
  --shadow-sm: 0 8px 28px rgba(16, 49, 96, 0.08);
  --shadow-lg: 0 26px 70px rgba(5, 48, 115, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 10% 0%, rgba(53, 198, 244, 0.12), transparent 31rem),
    radial-gradient(circle at 100% 12%, rgba(8, 123, 234, 0.1), transparent 29rem);
  pointer-events: none;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(207, 216, 229, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(7, 95, 216, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-700);
}

.nav-cta {
  padding: 9px 15px;
  border: 1px solid rgba(7, 95, 216, 0.15);
  border-radius: 999px;
  color: var(--blue-700) !important;
  background: #edf7ff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -180px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(53, 198, 244, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(53, 198, 244, 0.035), 0 0 0 150px rgba(8, 123, 234, 0.025);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(53, 198, 244, 0.15);
  content: "";
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

h1 .gradient-text {
  color: transparent;
  background: linear-gradient(105deg, var(--blue-700), var(--blue-500) 58%, var(--cyan-400));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--slate-600);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 28px rgba(7, 95, 216, 0.25);
}

.button-secondary {
  border-color: var(--slate-200);
  color: var(--navy-900);
  background: var(--white);
}

.button-arrow {
  font-size: 18px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 650;
}

.hero-note span::before {
  margin-right: 6px;
  color: var(--success);
  content: "✓";
}

.product-shell {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(233, 250, 255, 0.92), rgba(8, 123, 234, 0.12));
  box-shadow: var(--shadow-lg);
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(207, 216, 229, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: var(--white);
  background: linear-gradient(130deg, var(--navy-900), var(--blue-600));
}

.product-topbar img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.product-topbar strong {
  display: block;
  font-size: 13px;
}

.product-topbar span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.product-body {
  padding: 20px;
}

.supplier-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.supplier-heading span {
  color: var(--slate-500);
  font-size: 11px;
}

.supplier-heading h3 {
  margin: 3px 0 0;
  font-size: 17px;
}

.score-ring {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border: 6px solid var(--cyan-200);
  border-top-color: var(--blue-600);
  border-right-color: var(--blue-600);
  border-radius: 50%;
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 900;
}

.signal-grid {
  display: grid;
  margin: 20px 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.signal {
  padding: 11px;
  border-radius: 12px;
  background: var(--slate-100);
}

.signal span {
  display: block;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 650;
}

.signal strong {
  display: block;
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 12px;
}

.verdict-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #b9eadb;
  border-radius: 12px;
  color: #087957;
  background: #edfbf7;
  font-size: 12px;
  font-weight: 800;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(207, 216, 229, 0.82);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.floating-chip::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-700);
  background: var(--cyan-100);
  content: "✓";
}

.chip-one {
  right: -26px;
  bottom: 58px;
}

.chip-two {
  top: 82px;
  left: -32px;
}

.trust-strip {
  padding: 24px 0;
  border-block: 1px solid var(--slate-200);
  background: rgba(243, 247, 251, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 4px 24px;
  border-left: 1px solid var(--slate-200);
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 14px;
}

.trust-item span {
  color: var(--slate-500);
  font-size: 12px;
}

.section {
  padding: 98px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.82), rgba(233, 250, 255, 0.42));
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 17px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.section-heading p {
  color: var(--slate-600);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(16, 49, 96, 0.13);
}

.feature-media {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cyan-100);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 350ms ease;
}

.feature-card:hover .feature-media img {
  transform: scale(1.035);
}

.feature-content {
  padding: 23px;
}

.feature-number {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 9px;
  color: var(--blue-700);
  background: var(--cyan-100);
  font-size: 11px;
  font-weight: 900;
}

.feature-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-content p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.steps {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.steps::before {
  position: absolute;
  top: 30px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-200), var(--blue-500), var(--cyan-200));
  content: "";
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  display: grid;
  position: relative;
  z-index: 1;
  width: 61px;
  height: 61px;
  margin: 0 auto 22px;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--cyan-400));
  box-shadow: 0 8px 20px rgba(7, 95, 216, 0.23);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.step p {
  margin: 0 auto;
  max-width: 310px;
  color: var(--slate-600);
  font-size: 14px;
}

.privacy-card {
  display: grid;
  overflow: hidden;
  align-items: stretch;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 60%, var(--blue-700));
  box-shadow: var(--shadow-lg);
}

.privacy-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 52px;
  background:
    radial-gradient(circle at 45% 45%, rgba(53, 198, 244, 0.32), transparent 34%),
    linear-gradient(140deg, rgba(7, 156, 243, 0.15), transparent 70%);
}

.shield {
  display: grid;
  width: 180px;
  height: 205px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 75px 75px 95px 95px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.035);
  clip-path: polygon(50% 0, 94% 17%, 88% 72%, 50% 100%, 12% 72%, 6% 17%);
  backdrop-filter: blur(10px);
}

.shield img {
  width: 88px;
  height: 88px;
  border-radius: 23px;
}

.privacy-content {
  padding: 68px 68px 62px 8px;
}

.privacy-content .eyebrow {
  color: var(--cyan-400);
}

.privacy-content h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.privacy-content > p {
  color: rgba(255, 255, 255, 0.73);
}

.privacy-list {
  display: grid;
  margin: 27px 0 31px;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.privacy-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.privacy-list span::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--cyan-400);
  content: "✓";
  font-size: 11px;
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 67px 40px;
  border: 1px solid rgba(53, 198, 244, 0.3);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 50px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  top: -180px;
  left: -70px;
}

.cta-panel::after {
  right: -100px;
  bottom: -210px;
}

.cta-panel h2 {
  position: relative;
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.cta-panel p {
  position: relative;
  max-width: 600px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .button {
  position: relative;
  color: var(--blue-700);
  background: var(--white);
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 390px;
  margin: 17px 0 0;
  color: var(--slate-600);
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--slate-600);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--blue-700);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-500);
  font-size: 11px;
}

.legal-hero {
  padding: 78px 0 62px;
  border-bottom: 1px solid var(--slate-200);
  background: linear-gradient(180deg, var(--cyan-100), rgba(255, 255, 255, 0));
}

.legal-hero h1 {
  margin-bottom: 17px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 17px;
}

.legal-meta {
  display: inline-block;
  margin-top: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(8, 123, 234, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  padding: 70px 0 100px;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 19px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--slate-600);
  font-size: 12px;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--blue-700);
}

.legal-content section {
  scroll-margin-top: 110px;
  margin-bottom: 40px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: var(--slate-600);
}

.legal-content ul {
  padding-left: 22px;
}

.callout {
  margin: 25px 0;
  padding: 19px 21px;
  border-left: 4px solid var(--blue-500);
  border-radius: 0 14px 14px 0;
  color: var(--slate-700);
  background: var(--cyan-100);
}

.faq-main {
  padding: 72px 0 100px;
}

.faq-grid {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 13px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(16, 49, 96, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-700);
  background: var(--cyan-100);
  content: "+";
  font-size: 18px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 21px;
  color: var(--slate-600);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.not-found img {
  width: 90px;
  margin: 0 auto 24px;
  border-radius: 24px;
}

.not-found h1 {
  margin-bottom: 12px;
}

.not-found p {
  margin-bottom: 26px;
  color: var(--slate-600);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .product-shell {
    max-width: 580px;
    margin: 0 auto;
  }

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

  .privacy-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .privacy-content {
    padding-right: 40px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-toc {
    position: static;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    align-items: stretch;
    padding: 13px;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .nav-cta {
    border-radius: 10px;
  }

  .hero {
    padding: 68px 0 58px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .chip-one,
  .chip-two {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .feature-grid,
  .steps,
  .privacy-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 45px;
  }

  .steps::before {
    display: none;
  }

  .privacy-visual {
    min-height: 300px;
  }

  .privacy-content {
    padding: 40px 28px 48px;
  }

  .footer-grid {
    gap: 34px;
  }

  .legal-hero {
    padding: 58px 0 48px;
  }

  .legal-layout {
    padding: 50px 0 75px;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 14px;
  }

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

  .product-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .signal-grid,
  .privacy-list,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .cta-panel {
    padding: 48px 22px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
