/* =====================================================
   FILE: assets/css/styles.css
   VerbCompass Website
   ===================================================== */

:root {
  /* VerbCompass Classic */

  --bg: #f3f5f9;
  --bg-top: #f8fafc;
  --bg-bottom: #eef2f7;

  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --surface-muted: #f5f8fc;
  --surface-blue-soft: #eef4fb;
  --surface-blue-light: #f5f9ff;

  --border: #d8e0ea;
  --border-soft: #edf2f7;
  --border-strong: #b8c8db;
  --accent-border-soft: #bfd1ea;

  --text: #17212b;
  --text-soft: #52606d;
  --text-muted: #6b7785;
  --text-inverse: #ffffff;

  --accent: #2563eb;
  --accent-hover: #1e4fd1;
  --accent-soft: #dbeafe;

  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.045);
  --shadow-header: 0 8px 24px rgba(15, 23, 42, 0.05);

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 22px;
  --radius-pill: 999px;

  --page-width: 1120px;
  --header-height: 76px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 28px;
  --space-3xl: 40px;
  --space-4xl: 56px;
  --space-5xl: 76px;
}

/* =====================================================
   RESET
   ===================================================== */

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

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

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--text-inverse);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

/* =====================================================
   SHARED LAYOUT
   ===================================================== */

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

.content-section {
  padding: var(--space-5xl) 0;
}

.content-section-soft {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.38);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-kicker {
  margin: 0 0 var(--space-sm);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* =====================================================
   VERBCOMPASS MARK
   ===================================================== */

.verbcompass-icon {
  color: var(--accent);
}

.verbcompass-bg,
.verbcompass-dot {
  fill: currentColor;
}

.verbcompass-star {
  fill: var(--panel);
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(216, 224, 234, 0.88);
  background: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(calc(100% - 40px), var(--page-width));
  min-height: var(--header-height);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.site-brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand-copy strong {
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-brand-copy span {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav-link {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.site-nav-link:hover {
  color: var(--text);
  border-color: var(--accent-border-soft);
  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );
  transform: translateY(-1px);
}

.site-nav-link.current-page {
  color: var(--accent);
  border-color: var(--accent-border-soft);
  background: linear-gradient(180deg, var(--panel) 0%, var(--accent-soft) 100%);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 44px;
  padding: 9px 12px;

  border: 1px solid var(--accent-border-soft);
  border-radius: var(--radius-lg);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );

  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle:hover {
  background: linear-gradient(
    180deg,
    var(--surface-blue-light) 0%,
    var(--accent-soft) 100%
  );
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* =====================================================
   HERO
   ===================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 70px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-section::before {
  top: -180px;
  left: -160px;
  width: 440px;
  height: 440px;
  background: rgba(219, 234, 254, 0.58);
}

.hero-section::after {
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background: rgba(238, 244, 251, 0.86);
}

.hero-panel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 52px 54px 38px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow);

  text-align: center;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -85px;
  right: -80px;
  width: 280px;
  height: 280px;

  border: 44px solid rgba(37, 99, 235, 0.035);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-brand,
.hero-actions,
.hero-summary {
  position: relative;
  z-index: 1;
}

.hero-brand-icon {
  width: 118px;
  height: auto;
  margin: 0 auto 20px;
}

.brand-rule {
  width: 78px;
  height: 3px;
  margin: 20px auto;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

.hero-description {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 12px 20px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.button-primary {
  border-color: var(--accent);
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--accent-hover) 100%
  );
  color: var(--text-inverse);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    var(--shadow-soft);
}

.button-primary:hover {
  background: linear-gradient(
    180deg,
    var(--accent-hover) 0%,
    var(--accent) 100%
  );
}

.button-secondary {
  border-color: var(--accent-border-soft);
  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: linear-gradient(
    180deg,
    var(--surface-blue-light) 0%,
    var(--accent-soft) 100%
  );
}

.hero-summary {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.hero-summary > p {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-summary-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-summary-flow span:not(.flow-arrow) {
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-arrow {
  color: var(--text-muted);
  font-weight: 700;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  min-height: 180px;
  padding: 24px;

  border: 1px solid var(--accent-border-soft);
  border-radius: var(--radius-xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    var(--shadow-soft);

  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card p {
  color: var(--text-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 52px;
  height: 52px;

  border: 1px solid var(--accent-border-soft);
  border-radius: var(--radius-lg);

  background: var(--panel);
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================================================
   STUDY FLOW SECTION
   ===================================================== */

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;

  padding: 38px;

  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);

  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.split-panel-copy {
  max-width: 650px;
}

.split-panel-copy > p:not(.section-kicker) {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.study-flow-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.study-flow-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;

  padding: 16px;

  border: 1px solid var(--accent-border-soft);
  border-radius: var(--radius-xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );
}

.study-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.study-flow-step strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 1.02rem;
}

.study-flow-step p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* =====================================================
   PRIVACY PANEL
   ===================================================== */

.privacy-panel {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: center;

  max-width: 900px;
  margin: 0 auto;
  padding: 34px 38px;

  border: 1px solid var(--accent-border-soft);
  border-radius: var(--radius-2xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );

  box-shadow: var(--shadow-soft);
}

.privacy-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 78px;
  height: 78px;

  border: 1px solid var(--accent-border-soft);
  border-radius: 50%;

  background: var(--panel);
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.privacy-panel-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-panel-copy p:not(.section-kicker) {
  color: var(--text-soft);
}

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

.text-link span {
  transition: transform 0.15s ease;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link:hover span {
  transform: translateX(3px);
}

/* =====================================================
   LANGUAGE CARDS
   ===================================================== */

.language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.language-card {
  min-height: 168px;
  padding: 22px;

  border: 1px solid var(--border);
  border-radius: var(--radius-xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-muted) 100%
  );

  box-shadow: var(--shadow-soft);
}

.language-card-active {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--panel) 0%, var(--accent-soft) 100%);
}

.language-status {
  display: inline-flex;
  align-items: center;

  margin-bottom: 22px;
  padding: 5px 9px;

  border: 1px solid var(--border);
  border-radius: var(--radius-pill);

  background: var(--panel);
  color: var(--text-muted);

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.language-card-active .language-status {
  border-color: var(--accent-border-soft);
  color: var(--accent);
}

.language-card h3 {
  font-size: 1.3rem;
}

.language-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.9);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  line-height: 1.2;
}

.footer-brand span {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-navigation a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-navigation a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* =====================================================
   INTERNAL PAGE FOUNDATION
   Used later by About, Support, and Privacy
   ===================================================== */

.page-hero {
  padding: 56px 0 38px;
}

.page-hero-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;

  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);

  background: linear-gradient(
    180deg,
    var(--panel) 0%,
    var(--surface-blue-light) 100%
  );

  box-shadow: var(--shadow-soft);
  text-align: center;
}

.page-hero-panel p:last-child {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-soft);
}

.prose-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px;

  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);

  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.prose-panel h2 {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  font-size: 1.55rem;
}

.prose-panel h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose-panel h3 {
  margin-top: 28px;
}

.prose-panel p,
.prose-panel li {
  color: var(--text-soft);
}

.prose-panel ul,
.prose-panel ol {
  padding-left: 22px;
}

.prose-panel li + li {
  margin-top: 7px;
}

/* =====================================================
   RESPONSIVE: TABLET
   ===================================================== */

@media (max-width: 900px) {
  .content-section {
    padding: 62px 0;
  }

  .hero-section {
    padding: 44px 0 58px;
  }

  .hero-panel {
    padding: 44px 36px 34px;
  }

  .split-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .study-flow-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .study-flow-step {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

/* =====================================================
   RESPONSIVE: MOBILE NAVIGATION
   ===================================================== */

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

  .page-container,
  .site-header-inner {
    width: min(calc(100% - 28px), var(--page-width));
  }

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

  .site-brand-icon {
    width: 38px;
    height: 38px;
  }

  .site-brand-copy strong {
    font-size: 1rem;
  }

  .site-brand-copy span {
    font-size: 0.68rem;
  }

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

  .site-navigation {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    padding: 12px;

    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-navigation.navigation-open {
    display: flex;
  }

  .site-nav-link {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-panel {
    padding: 36px 22px 28px;
    border-radius: var(--radius-xl);
  }

  .hero-panel::after {
    display: none;
  }

  .hero-brand-icon {
    width: 100px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  .split-panel {
    padding: 26px 22px;
  }

  .study-flow-card {
    display: flex;
  }

  .study-flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
  }

  .privacy-panel-icon {
    margin: 0 auto;
  }

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

  .footer-navigation {
    justify-content: center;
  }

  .page-hero {
    padding-top: 34px;
  }

  .page-hero-panel,
  .prose-panel {
    padding: 28px 22px;
  }
}

/* =====================================================
   RESPONSIVE: SMALL PHONES
   ===================================================== */

@media (max-width: 520px) {
  .content-section {
    padding: 50px 0;
  }

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

  .site-brand-copy span {
    display: none;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    padding: 0;
  }

  .hero-panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-section .page-container {
    width: 100%;
  }

  .hero-description {
    padding: 0 4px;
  }

  .hero-summary-flow {
    gap: 7px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

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

  .language-card {
    min-height: 0;
  }

  .privacy-panel {
    border-radius: var(--radius-xl);
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

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

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