:root {
  color-scheme: dark;
  --background: #0e1413;
  --background-soft: #111a18;
  --surface: #171f1e;
  --surface-raised: #1d2826;
  --surface-accent: #183b38;
  --primary: #70d7cf;
  --primary-strong: #2a928c;
  --primary-deep: #0a4f4c;
  --mint: #65d6a5;
  --coral: #ff8c6b;
  --text: #f1f6f4;
  --text-muted: #a4b0ad;
  --line: #303c39;
  --shadow: rgba(0, 0, 0, 0.34);
  --content: 1160px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 3%, rgba(42, 146, 140, 0.18), transparent 31rem),
    radial-gradient(circle at 3% 34%, rgba(101, 214, 165, 0.08), transparent 27rem),
    var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(48, 60, 57, 0.72);
  background: rgba(14, 20, 19, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.45px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
}

.menu-button svg {
  width: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: #073b38;
  box-shadow: 0 14px 32px rgba(112, 215, 207, 0.14);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(23, 31, 30, 0.82);
  color: var(--text);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 14px;
}

.is-disabled {
  cursor: default;
  opacity: 0.62;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 106px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(44px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(101, 214, 165, 0.09);
  content: "";
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.8vw, 82px);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.gradient-text {
  background: linear-gradient(125deg, var(--primary) 12%, var(--mint) 88%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 13px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 17px;
  color: var(--mint);
}

.phone-stage {
  position: relative;
  min-height: 646px;
}

.phone-glow {
  position: absolute;
  inset: 10% 2% 5%;
  border-radius: 50%;
  background: rgba(42, 146, 140, 0.22);
  filter: blur(70px);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(100%, 344px);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  background: #050908;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.48), inset 0 0 0 2px #28312f;
  transform: rotate(2.2deg);
}

.phone-screen {
  min-height: 620px;
  overflow: hidden;
  border-radius: 38px;
  background: #0e1413;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 7px;
  font-size: 11px;
  font-weight: 750;
}

.phone-island {
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #020303;
}

.phone-content {
  padding: 17px 17px 20px;
}

.phone-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.8px;
}

.period-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
}

.balance-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 23px;
  background: linear-gradient(135deg, #2a928c, #0a4f4c);
  box-shadow: 0 18px 45px rgba(10, 79, 76, 0.28);
}

.balance-card::after {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(101, 214, 165, 0.17);
  content: "";
}

.balance-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.balance-amount {
  margin: 4px 0 16px;
  font-size: 31px;
  font-weight: 850;
  letter-spacing: -1.2px;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.progress-value {
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
}

.balance-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.mini-card {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.mini-label {
  color: var(--text-muted);
  font-size: 9px;
}

.mini-value {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 780;
}

.mini-value.income {
  color: var(--mint);
}

.mini-value.expense {
  color: var(--coral);
}

.chart-card {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 760;
}

.bars {
  display: flex;
  height: 86px;
  align-items: end;
  gap: 8px;
  margin-top: 16px;
}

.bar {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, var(--primary-deep), var(--primary));
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 7px;
  text-align: center;
}

.phone-nav span:first-child {
  color: var(--primary);
}

.floating-insight {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 92px;
  width: 188px;
  padding: 15px;
  border: 1px solid rgba(112, 215, 207, 0.23);
  border-radius: 18px;
  background: rgba(29, 40, 38, 0.92);
  box-shadow: 0 24px 55px var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(-3deg);
}

.floating-insight strong {
  display: block;
  margin-bottom: 3px;
  color: var(--primary);
  font-size: 13px;
}

.floating-insight span {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 98px 0;
}

.section-muted {
  border-block: 1px solid rgba(48, 60, 57, 0.72);
  background: rgba(17, 26, 24, 0.68);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

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

.section-heading h2,
.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 840;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.section-heading p,
.legal-hero p {
  color: var(--text-muted);
  font-size: 18px;
}

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

.feature-card {
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(29, 40, 38, 0.94), rgba(23, 31, 30, 0.74));
}

.feature-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 15px;
  background: var(--surface-accent);
  color: var(--primary);
}

.feature-icon svg {
  width: 25px;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  letter-spacing: -0.5px;
}

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

.privacy-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 7vw, 86px);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(112, 215, 207, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #14312f, #171f1e 64%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.privacy-mark {
  display: grid;
  min-height: 310px;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(101, 214, 165, 0.19), transparent 60%),
    rgba(10, 79, 76, 0.35);
}

.privacy-mark svg {
  width: 126px;
  color: var(--mint);
  filter: drop-shadow(0 15px 25px rgba(101, 214, 165, 0.14));
}

.privacy-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.privacy-copy > p {
  color: var(--text-muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 19px;
  margin-top: 3px;
  color: var(--mint);
}

.pricing-grid {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}

.pricing-card.featured {
  border-color: rgba(112, 215, 207, 0.56);
  background: linear-gradient(155deg, #1a3431, #171f1e 62%);
  box-shadow: 0 24px 70px rgba(42, 146, 140, 0.15);
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(112, 215, 207, 0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 800;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 3px;
}

.plan-price strong {
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price span,
.plan-equivalent {
  color: var(--text-muted);
  font-size: 14px;
}

.plan-equivalent {
  min-height: 25px;
  margin-bottom: 25px;
}

.plan-divider {
  height: 1px;
  margin: 0 0 24px;
  background: var(--line);
}

.pricing-card .check-list {
  margin: 0 0 28px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.comparison {
  max-width: 860px;
  margin: 70px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.55fr;
  min-height: 58px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row.header {
  min-height: 64px;
  background: var(--surface-raised);
  font-weight: 800;
}

.comparison-row span:not(:first-child) {
  text-align: center;
}

.comparison-yes {
  color: var(--mint);
  font-weight: 800;
}

.comparison-no {
  color: #65716f;
}

.faq-list {
  display: grid;
  max-width: 820px;
  gap: 12px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-list summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--primary);
  content: "+";
  font-size: 26px;
  font-weight: 400;
}

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

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #2a928c, #0a4f4c);
  box-shadow: 0 32px 90px rgba(10, 79, 76, 0.24);
}

.cta-panel h2 {
  max-width: 660px;
  margin-bottom: 8px;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 46px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 40px;
}

.footer-copy {
  max-width: 390px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
}

.legal-hero {
  padding: 74px 0 46px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .container {
  max-width: 850px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  max-width: 1020px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 60px;
  padding-top: 54px;
  padding-bottom: 90px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

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

.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 27px;
  letter-spacing: -0.7px;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

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

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.notice {
  padding: 17px 18px;
  border: 1px solid rgba(255, 140, 107, 0.35);
  border-radius: 15px;
  background: rgba(255, 140, 107, 0.08);
  color: #ffd1c4;
  font-size: 14px;
}

.configuration-pending {
  color: #ffd1c4;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.support-card h2 {
  margin-bottom: 9px;
  font-size: 25px;
  letter-spacing: -0.6px;
}

.support-card p {
  color: var(--text-muted);
}

.support-card .button {
  margin-top: 8px;
}

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

  .hero-copy-column {
    text-align: center;
  }

  .hero-copy,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .phone-stage {
    width: min(100%, 530px);
    margin: 0 auto;
  }

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

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

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

  .privacy-mark {
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: var(--header-height);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(23, 31, 30, 0.98);
    box-shadow: 0 20px 55px var(--shadow);
  }

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

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

  .site-nav .button {
    margin-top: 4px;
  }

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

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .phone-stage {
    min-height: 625px;
  }

  .floating-insight {
    right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .pricing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 430px;
  }

  .comparison-row {
    grid-template-columns: 1.35fr 0.5fr 0.5fr;
    padding: 0 13px;
    font-size: 13px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .legal-toc {
    position: static;
  }
}

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

  .brand span {
    font-size: 18px;
  }

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

  .phone {
    width: 310px;
    max-width: 100%;
  }

  .phone-screen {
    min-height: 580px;
  }

  .floating-insight {
    right: 4px;
    bottom: 55px;
    width: 164px;
  }

  .feature-card,
  .pricing-card,
  .support-card {
    padding: 23px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

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