@font-face {
  font-family: "Fredoka";
  src: url("assets/fonts/Fredoka-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #081a2e;
  --navy-2: #0f2946;
  --navy-3: #17385c;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --gold: #ffd85c;
  --gold-deep: #e5a91e;
  --indigo: #645cf5;
  --indigo-deep: #453cc2;
  --mint: #35e58d;
  --sky: #5ec8ff;
  --coral: #f0928c;
  --ink-soft: #50657c;
  --line: #e8dfce;
  --text: var(--navy);
  --shadow: 0 18px 60px rgba(8, 26, 46, 0.11);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --display: "Fredoka", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --cream: #09131f;
  --paper: #111f2e;
  --ink-soft: #afc0d2;
  --line: #2a3d52;
  --text: #edf5ff;
  --navy-2: #d2dfec;
  --indigo: #645cf5;
  --indigo-deep: #aaa6ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(8, 26, 46, 0.08) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

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

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

button,
input {
  font: inherit;
}

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

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

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

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

.announcement {
  padding: 10px 20px;
  color: white;
  background: var(--navy);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  letter-spacing: 0.01em;
}

.announcement a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: relative;
  z-index: 20;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-bottom: 1px solid rgba(8, 26, 46, 0.08);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .site-header {
  border-bottom-color: rgba(221, 235, 248, 0.12);
}

.nav-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--indigo);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white;
  background: var(--indigo);
  border: 2px solid var(--indigo-deep);
  border-bottom-width: 5px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 140ms ease, border-bottom-width 140ms ease;
}

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

.nav-cta:active {
  border-bottom-width: 2px;
  transform: translateY(2px);
}

.theme-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  place-items: center;
  font-size: 19px;
  line-height: 1;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.theme-toggle:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
}

.theme-toggle::before { content: "☾"; }
:root[data-theme="dark"] .theme-toggle::before { content: "☀"; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--text);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 12px;
}

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

.menu-button span {
  margin: 5px 0;
}

.mobile-menu {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--indigo-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 2px dashed rgba(229, 169, 30, 0.24);
  border-radius: 50%;
}

.hero::before {
  top: 55px;
  right: -160px;
  width: 670px;
  height: 430px;
  transform: rotate(-12deg);
}

.hero::after {
  bottom: -210px;
  left: -220px;
  width: 570px;
  height: 420px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: 60px;
}

.hero-copy h1,
.page-hero h1,
.article-header h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(54px, 6.2vw, 88px);
}

.hero-copy .lede {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 2px solid;
  border-bottom-width: 6px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform 150ms ease, border-bottom-width 150ms ease;
}

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

.button:active {
  border-bottom-width: 2px;
  transform: translateY(2px);
}

.button-primary {
  color: #382900;
  background: var(--gold);
  border-color: var(--gold-deep);
}

.button-waitlist {
  color: white;
  background: var(--indigo);
  border-color: var(--indigo-deep);
}

.button-secondary {
  color: var(--text);
  background: var(--paper);
  border-color: #d7cdb9;
}

.button-dark {
  color: white;
  background: var(--navy);
  border-color: #030d17;
}

.mini-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 800;
}

:root[data-theme="dark"] .hero-product::before {
  background: #2b2b22;
  border-color: #504c33;
}

.mini-proof img {
  width: 22px;
  height: auto;
}

.hero-product {
  position: relative;
  min-height: 590px;
}

.hero-product::before {
  position: absolute;
  inset: 35px 0 10px 30px;
  content: "";
  background: #fff2c8;
  border: 1px solid #f3d888;
  border-radius: 48% 52% 46% 54% / 53% 42% 58% 47%;
  transform: rotate(-4deg);
}

.phone {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 2;
  width: 292px;
  padding: 13px;
  color: white;
  background: #06111f;
  border: 3px solid #17344f;
  border-radius: 43px;
  box-shadow: 0 30px 70px rgba(8, 26, 46, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  transform: translateX(-38%) rotate(5deg);
}

.phone-screen {
  position: relative;
  min-height: 558px;
  overflow: hidden;
  padding: 34px 18px 18px;
  background: linear-gradient(180deg, #0e2948, #081a2e);
  border-radius: 32px;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 78px;
  height: 20px;
  background: #020912;
  border-radius: 99px;
  transform: translateX(-50%);
}

.phone-kicker {
  margin: 12px 0 4px;
  color: #87a5bf;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
}

.phone-level {
  margin: 20px 0 17px;
  padding: 15px;
  background: #112f50;
  border: 1px solid #244b6e;
  border-radius: 16px;
}

.phone-level strong,
.phone-level small {
  display: flex;
  justify-content: space-between;
}

.phone-level small {
  margin-top: 6px;
  color: #a7bdd0;
  font-size: 10px;
}

.progress {
  height: 7px;
  margin-top: 11px;
  overflow: hidden;
  background: #071828;
  border-radius: 99px;
}

.progress span {
  display: block;
  width: 61%;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
}

.lesson-path {
  position: relative;
  padding-left: 16px;
}

.lesson-path::before {
  position: absolute;
  top: 16px;
  bottom: 20px;
  left: 31px;
  width: 3px;
  content: "";
  background: linear-gradient(var(--indigo), var(--mint), #385170);
  border-radius: 99px;
}

.lesson-row {
  position: relative;
  display: grid;
  min-height: 70px;
  align-items: center;
  grid-template-columns: 36px 1fr;
  gap: 13px;
}

.lesson-dot {
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--indigo);
  border: 3px solid #9b96ff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #0d2946;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
}

.lesson-row:nth-child(2) .lesson-dot {
  color: var(--navy);
  background: var(--mint);
  border-color: #9ff5c9;
}

.phone-screen-image {
  min-height: 0;
  padding: 0;
  aspect-ratio: 852 / 1846;
  background: #081a2e;
}

.phone-screen-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesson-row:nth-child(n + 3) .lesson-dot {
  color: #9db0c0;
  background: #1c3b58;
  border-color: #365773;
}

.lesson-card {
  padding: 11px 12px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid #dce3e8;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.lesson-card strong {
  display: block;
  font-size: 12px;
}

.lesson-card small {
  color: var(--ink-soft);
  font-size: 9px;
}

.mascot {
  position: absolute;
  right: -42px;
  bottom: -2px;
  z-index: 4;
  width: 245px;
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(8, 26, 46, 0.24));
  transform: rotate(-4deg);
}

.spark {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.spark-one {
  top: 80px;
  left: 40px;
}

.spark-two {
  top: 280px;
  right: 20px;
  width: 18px;
  height: 18px;
}

.section {
  padding: 100px 0;
}

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

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.center-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.center-heading p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

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

.feature-card {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  padding: 30px;
  background: #eaf5ff;
  border: 1px solid #cfe3f3;
  border-radius: var(--radius-md);
}

.feature-card:nth-child(2) {
  background: #eafaf2;
  border-color: #c9ead9;
}

.feature-card:nth-child(3) {
  background: #f0edff;
  border-color: #d9d4f5;
}

:root[data-theme="dark"] .feature-card {
  background: #10273b;
  border-color: #29435a;
}

:root[data-theme="dark"] .feature-card:nth-child(2) {
  background: #102c28;
  border-color: #285046;
}

:root[data-theme="dark"] .feature-card:nth-child(3) {
  background: #211f3d;
  border-color: #423d67;
}

.feature-number {
  display: grid;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--navy);
  border-radius: 12px;
  place-items: center;
  font-weight: 950;
}

.feature-card h3 {
  margin: 55px 0 12px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.feature-card p {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.feature-art {
  position: absolute;
  top: 25px;
  right: 24px;
  width: 100px;
  height: 100px;
}

.bubble-art {
  display: grid;
  color: white;
  background: var(--indigo);
  border: 3px solid var(--navy);
  border-radius: 22px 22px 22px 6px;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  transform: rotate(4deg);
}

.wave-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.wave-art i {
  display: block;
  width: 7px;
  height: 30px;
  background: #19b968;
  border-radius: 99px;
}

.wave-art i:nth-child(2), .wave-art i:nth-child(6) { height: 50px; }
.wave-art i:nth-child(3), .wave-art i:nth-child(5) { height: 72px; }
.wave-art i:nth-child(4) { height: 92px; }

.calendar-art {
  padding: 16px 12px 10px;
  background: white;
  border: 3px solid var(--navy);
  border-radius: 17px;
  box-shadow: 0 7px 0 #c7c1ea;
}

.calendar-art::before {
  display: block;
  height: 15px;
  margin: -16px -12px 12px;
  content: "";
  background: var(--indigo);
  border-radius: 13px 13px 0 0;
}

.calendar-art img {
  width: 42px;
  height: auto;
  margin: auto;
}

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

.language-card {
  position: relative;
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-bottom-width: 5px;
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.language-card.is-available {
  border-color: #e4c755;
  box-shadow: 0 8px 22px rgba(229, 169, 30, 0.12);
}

.language-card.is-coming-soon {
  padding-top: 28px;
  cursor: default;
}

.language-card.is-coming-soon:hover {
  border-color: var(--line);
  transform: none;
}

.coming-soon-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 5px 9px;
  color: white;
  background: var(--indigo);
  border: 2px solid var(--indigo-deep);
  border-radius: 8px;
  box-shadow: 0 4px 0 var(--indigo-deep);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-card:hover {
  border-color: #c9bfae;
  transform: translateY(-4px);
}

.language-icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  color: var(--navy);
  background: #eef4ff;
  border-radius: 15px;
  place-items: center;
  font-size: 22px;
  font-weight: 950;
}

.language-card:nth-child(2n) .language-icon { background: #fff2ca; }
.language-card:nth-child(3n) .language-icon { background: #e9faef; }

.language-card strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
}

.language-card small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
}

.method-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.method-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.method-copy > p {
  color: #b9c9d6;
  font-size: 18px;
  line-height: 1.65;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 19px;
  background: #0f2946;
  border: 1px solid #29445f;
  border-radius: 17px;
}

.method-step span {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 14px;
  place-items: center;
  font-weight: 950;
}

.method-step:nth-child(2) span { background: var(--mint); }
.method-step:nth-child(3) span { color: white; background: var(--indigo); }

.method-step strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
}

.method-step small {
  display: block;
  margin-top: 5px;
  color: #a8bac9;
  line-height: 1.5;
}

.stats {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #29445f;
  border-radius: 18px;
}

.stat {
  padding: 23px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid #29445f;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 27px;
}

.stat small {
  color: #a8bac9;
}

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

.quote-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(8, 26, 46, 0.06);
}

.stars {
  color: var(--gold-deep);
  letter-spacing: 2px;
}

.quote-card blockquote {
  min-height: 120px;
  margin: 20px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.45;
}

.quote-card h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.quote-card > p {
  min-height: 86px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.quote-card footer {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

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

.article-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(8, 26, 46, 0.05);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

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

.article-art {
  position: relative;
  display: grid;
  min-height: 205px;
  overflow: hidden;
  background: #ffd4c8;
  place-items: center;
}

.article-card:nth-child(2) .article-art { background: #cdeeff; }
.article-card:nth-child(3) .article-art { background: #ffe58d; }

.article-art-image img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-card:hover .article-art-image img { transform: scale(1.025); }

.article-art::before,
.article-art::after {
  position: absolute;
  content: "";
  border: 3px solid var(--navy);
}

.article-art.article-art-image::before,
.article-art.article-art-image::after {
  display: none;
  content: none;
  border: 0;
}

.art-clock::before {
  width: 110px;
  height: 110px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 8px 10px 0 rgba(8, 26, 46, 0.13);
}

.art-clock::after {
  width: 4px;
  height: 42px;
  background: var(--navy);
  border-width: 0;
  border-radius: 9px;
  transform: translateY(-18px) rotate(-20deg);
  transform-origin: bottom;
}

.art-city::before {
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 82px;
  background: var(--paper);
  border-radius: 14px 14px 0 0;
  clip-path: polygon(0 45%, 14% 45%, 14% 20%, 29% 20%, 29% 52%, 44% 52%, 44% 0, 58% 0, 58% 35%, 73% 35%, 73% 15%, 88% 15%, 88% 45%, 100% 45%, 100% 100%, 0 100%);
}

.art-city::after {
  top: 30px;
  right: 55px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
}

.art-cards::before {
  width: 125px;
  height: 92px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 17px -12px 0 #a9e9c7, 34px -24px 0 #91bfff;
  transform: rotate(-7deg);
}

.art-cards::after {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-width: 0;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.article-card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--indigo-deep);
  background: #eeecff;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 13px 0 11px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.related-guides {
  margin: 44px 0 28px;
}

.related-guide-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-guide-links a {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.related-guide-links a:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
}

.related-guide-links span {
  color: var(--indigo-deep);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-guide-links strong {
  line-height: 1.35;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  color: #526577;
  font-size: 12px;
  font-weight: 750;
}

.priority-guide-links {
  max-width: 760px;
  margin: 22px auto 0;
  color: #526577;
  line-height: 1.7;
  text-align: center;
}

.priority-guide-links a {
  color: #10365c;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 60px;
  color: white;
  background: var(--indigo);
  border: 3px solid var(--indigo-deep);
  border-bottom-width: 10px;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.cta-panel::after {
  position: absolute;
  top: -80px;
  right: 220px;
  width: 270px;
  height: 270px;
  content: "";
  border: 2px dashed rgba(255,255,255,.3);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.cta-panel p {
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
}

.site-footer {
  padding: 68px 0 30px;
  color: white;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 320px;
  color: #a9bac8;
  line-height: 1.6;
}

.footer-column strong {
  display: block;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 12px 0;
  color: #c5d1da;
  font-size: 14px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  color: #8299ab;
  border-top: 1px solid #203a53;
  font-size: 12px;
}

/* Blog */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 55px;
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.75fr;
  gap: 50px;
}

.page-hero h1 {
  max-width: 740px;
  font-size: clamp(52px, 6vw, 80px);
}

.page-hero p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.journal-art {
  position: relative;
  min-height: 260px;
}

.journal-art .book {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 180px;
  height: 125px;
  background: white;
  border: 4px solid var(--navy);
  border-radius: 12px 12px 35px 12px;
  box-shadow: 14px 17px 0 #b5dfff;
  transform: translateX(-50%) rotate(5deg);
}

.journal-art .book::before {
  position: absolute;
  top: 20px;
  right: 24px;
  left: 24px;
  height: 7px;
  content: "";
  background: repeating-linear-gradient(180deg, var(--navy) 0 2px, transparent 2px 10px);
}

.journal-art .pencil {
  position: absolute;
  top: 24px;
  left: 52%;
  width: 18px;
  height: 150px;
  background: var(--indigo);
  border: 3px solid var(--navy);
  border-radius: 99px 99px 5px 5px;
  transform: rotate(43deg);
}

.journal-art img {
  position: absolute;
  top: 14px;
  right: 8px;
  width: 54px;
}

.blog-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.blog-search {
  position: relative;
  width: min(100%, 320px);
}

.blog-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px 0 42px;
  color: var(--text);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 13px;
  outline: none;
}

.blog-search input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(100, 92, 245, 0.12);
}

.blog-search::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.blog-search::after {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 7px;
  height: 2px;
  content: "";
  background: var(--navy);
  transform: rotate(45deg);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter[aria-pressed="true"] {
  color: white;
  background: var(--indigo);
  border-color: var(--indigo);
}

.featured-article {
  display: grid;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 1.05fr 0.95fr;
  box-shadow: 0 16px 45px rgba(8, 26, 46, 0.08);
}

.featured-art {
  position: relative;
  display: grid;
  min-height: 410px;
  background: #ff9a87;
  place-items: center;
}

.featured-art .clock-face {
  display: grid;
  width: 190px;
  height: 190px;
  background: var(--paper);
  border: 7px solid var(--navy);
  border-radius: 50%;
  box-shadow: 17px 20px 0 rgba(8,26,46,.15);
  place-items: center;
}

.featured-art .clock-face::before,
.featured-art .clock-face::after {
  position: absolute;
  width: 7px;
  content: "";
  background: var(--navy);
  border-radius: 99px;
  transform-origin: bottom;
}

.featured-art .clock-face::before {
  height: 62px;
  transform: translateY(-29px) rotate(0deg);
}

.featured-art .clock-face::after {
  height: 52px;
  transform: translate(18px, -20px) rotate(42deg);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.featured-copy h2 {
  margin: 16px 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.featured-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--indigo-deep);
  font-weight: 900;
}

.newsletter {
  display: grid;
  align-items: center;
  margin-top: 50px;
  padding: 34px;
  background: #e7efff;
  border: 1px solid #cbd9f3;
  border-radius: var(--radius-md);
  grid-template-columns: 1fr auto;
  gap: 35px;
}

:root[data-theme="dark"] .newsletter {
  background: #132741;
  border-color: #294461;
}

.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
}

.newsletter p {
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  width: 260px;
  min-height: 50px;
  padding: 0 15px;
  color: var(--text);
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--indigo);
}

.newsletter-form button {
  min-height: 50px;
  padding: 0 19px;
  color: white;
  background: var(--indigo);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.newsletter-form button:disabled {
  color: var(--navy);
  background: var(--mint);
}

.waitlist-form {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
}

.cta-panel .waitlist-form {
  z-index: 1;
  width: min(520px, 40vw);
  grid-template-columns: 1fr;
}

.cta-panel .newsletter-form label,
.cta-panel .newsletter-form input {
  width: 100%;
}

.cta-panel .newsletter-form button {
  min-height: 56px;
  color: #382900;
  background: var(--gold);
  border: 2px solid var(--gold-deep);
  box-shadow: 0 5px 0 var(--gold-deep);
}

.cta-panel .newsletter-form button:hover {
  transform: translateY(-1px);
}

.cta-panel .newsletter-form button:active {
  box-shadow: 0 2px 0 var(--gold-deep);
  transform: translateY(2px);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.cta-panel .form-status {
  color: #fff;
}

/* Article */
.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.article-breadcrumbs a {
  color: var(--indigo-deep);
}

.article-breadcrumbs span[aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-breadcrumbs + .article-header {
  padding-top: 36px;
}

.article-header {
  padding: 80px 0 58px;
  text-align: center;
}

.article-header h1 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(48px, 6.6vw, 84px);
}

.article-header .dek {
  max-width: 720px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.6;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.author-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--indigo);
  border-radius: 50%;
  place-items: center;
  font-weight: 950;
}

.article-cover {
  position: relative;
  display: grid;
  min-height: 480px;
  margin-bottom: 70px;
  overflow: hidden;
  background: #ff9a87;
  border: 2px solid #e27968;
  border-radius: var(--radius-lg);
  place-items: center;
}

.article-cover::before,
.article-cover::after {
  position: absolute;
  content: "";
  border: 2px dashed rgba(8,26,46,.22);
  border-radius: 50%;
}

.article-cover::before { width: 680px; height: 260px; transform: rotate(-12deg); }
.article-cover::after { width: 900px; height: 380px; transform: rotate(9deg); }

.article-cover-image-wrap {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: var(--paper);
  border-color: var(--line);
}

.article-cover-image-wrap::before,
.article-cover-image-wrap::after { content: none; }

.article-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover .clock-face {
  z-index: 1;
  display: grid;
  width: 230px;
  height: 230px;
  background: var(--paper);
  border: 8px solid var(--navy);
  border-radius: 50%;
  box-shadow: 20px 24px 0 rgba(8,26,46,.16);
  place-items: center;
}

.article-cover .clock-face::before {
  width: 8px;
  height: 74px;
  content: "";
  background: var(--navy);
  border-radius: 99px;
  transform: translateY(-35px) rotate(25deg);
  transform-origin: bottom;
}

.article-cover-kli,
.article-cover-compare,
.article-cover-placement {
  color: white;
  background: var(--navy);
  border-color: #23405c;
}

.article-cover-compare {
  background: var(--indigo);
  border-color: var(--indigo-deep);
}

.article-cover-placement {
  background: #caecff;
  border-color: #8fc9e7;
}

.article-cover-icon {
  position: relative;
  z-index: 2;
  width: 250px;
  filter: drop-shadow(18px 22px 0 rgba(8, 26, 46, 0.2));
  transform: rotate(-5deg);
}

.cover-pill {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  color: var(--navy);
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 99px;
  box-shadow: 0 6px 0 rgba(8, 26, 46, 0.2);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
}

.cover-pill-one { top: 82px; left: 14%; transform: rotate(-6deg); }
.cover-pill-two { top: 108px; right: 12%; transform: rotate(5deg); }
.cover-pill-three { right: 18%; bottom: 72px; transform: rotate(-3deg); }

.article-note {
  margin: 34px 0;
  padding: 22px 24px;
  color: #314a61;
  background: #eaf5ff;
  border-left: 5px solid var(--sky);
  border-radius: 0 15px 15px 0;
  font-size: 15px;
  line-height: 1.65;
}

.article-note strong {
  color: #203b54;
}

.comparison-table {
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--navy);
  background: #fff1bd;
  font-family: var(--display);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.source-list {
  margin-top: 55px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.source-list h2 {
  margin-top: 0;
  font-size: 25px;
}

.source-list li {
  margin: 10px 0;
  font-size: 14px;
}

.article-disclaimer {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.faq-list details {
  margin: 12px 0;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.faq-list details p {
  margin-bottom: 0;
}

.article-layout {
  display: grid;
  align-items: start;
  padding-bottom: 100px;
  grid-template-columns: 240px minmax(0, 700px);
  gap: 70px;
  justify-content: center;
}

.article-toc {
  position: sticky;
  top: 30px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.article-content {
  color: color-mix(in srgb, var(--text) 82%, var(--ink-soft));
  font-size: 18px;
  line-height: 1.78;
}

.article-content h2 {
  margin: 58px 0 18px;
  color: var(--text);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

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

.article-content h3 {
  margin: 36px 0 12px;
  color: var(--text);
  font-family: var(--display);
  font-size: 25px;
}

.article-content a {
  color: var(--indigo-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content li {
  margin: 11px 0;
}

.legal-main {
  width: min(calc(100% - 40px), 800px);
  margin: 0 auto;
  padding: 80px 0 110px;
}

.legal-main h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -0.05em;
}

.legal-main .updated {
  margin-bottom: 45px;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-main h2 {
  margin: 40px 0 10px;
  font-family: var(--display);
  font-size: 26px;
}

.legal-main p,
.legal-main li {
  color: color-mix(in srgb, var(--text) 82%, var(--ink-soft));
  line-height: 1.75;
}

.legal-main a {
  color: var(--indigo-deep);
  text-decoration: underline;
}

.callout {
  margin: 34px 0;
  padding: 25px;
  color: var(--navy);
  background: #fff1bd;
  border: 2px solid #ebcb62;
  border-radius: 17px;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.callout a {
  color: var(--indigo-deep);
}

:root[data-theme="dark"] .callout a {
  color: #453cc2;
}

.week-grid {
  display: grid;
  margin: 28px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.week-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.week-card strong {
  display: block;
  color: var(--indigo-deep);
  font-size: 13px;
}

.week-card span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

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

  .nav-row > .nav-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .menu-button {
    display: block;
  }

  .theme-toggle { margin-left: auto; }

  .cta-panel .waitlist-form {
    width: 100%;
    max-width: 520px;
  }

  .mobile-menu[data-open] {
    display: grid;
    gap: 5px;
    padding: 0 20px 20px;
  }

  .mobile-menu a {
    padding: 12px;
    background: var(--paper);
    border-radius: 10px;
    font-weight: 800;
  }

  .hero-grid,
  .page-hero-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy .lede {
    margin-inline: auto;
  }

  .button-row,
  .mini-proof {
    justify-content: center;
  }

  .hero-product {
    min-height: 590px;
  }

  .phone {
    transform: translateX(-50%) rotate(3deg);
  }

  .mascot {
    right: 4%;
  }

  .feature-grid,
  .quote-grid,
  .blog-preview-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-guide-links {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .quote-card:last-child,
  .blog-preview-grid .article-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

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

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-art {
    min-height: 320px;
  }

  .newsletter,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, 700px);
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-row {
    gap: 10px;
    min-height: 68px;
  }

  .nav-row > .nav-cta[href*="early-access"] {
    padding-inline: 11px;
    font-size: 0;
  }

  .nav-row > .nav-cta[href*="early-access"]::before {
    content: "Waitlist";
    font-size: 12px;
  }

  .hero {
    padding: 55px 0 65px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .hero-copy .lede,
  .page-hero p {
    font-size: 17px;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 530px;
    margin-inline: -8px;
    transform: scale(.9);
    transform-origin: top center;
  }

  .phone {
    width: 276px;
  }

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

  .phone-screen-image {
    min-height: 0;
  }

  .mascot {
    right: -38px;
    bottom: 18px;
    width: 220px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .feature-grid,
  .quote-grid,
  .blog-preview-grid,
  .blog-grid,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .quote-card:last-child,
  .blog-preview-grid .article-card:last-child {
    grid-column: auto;
  }

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

  .stat + .stat {
    border-top: 1px solid #29445f;
    border-left: 0;
  }

  .cta-panel {
    padding: 38px 25px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

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

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .page-hero {
    padding: 58px 0 20px;
  }

  .journal-art {
    min-height: 210px;
  }

  .blog-tools {
    display: block;
  }

  .blog-search {
    width: 100%;
    margin-bottom: 16px;
  }

  .featured-copy {
    padding: 28px;
  }

  .newsletter {
    padding: 25px;
  }

  .newsletter-form {
    display: grid;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .cta-panel .waitlist-form {
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  .article-header {
    padding: 55px 0 40px;
  }

  .article-cover {
    min-height: 330px;
    margin-bottom: 45px;
  }

  .article-cover .clock-face {
    width: 170px;
    height: 170px;
  }

  .article-cover-icon {
    width: 175px;
  }

  .cover-pill {
    padding: 7px 10px;
    font-size: 11px;
  }

  .cover-pill-one { top: 45px; left: 5%; }
  .cover-pill-two { top: 70px; right: 4%; }
  .cover-pill-three { right: 8%; bottom: 45px; }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .article-layout {
    gap: 35px;
    padding-bottom: 70px;
  }

  .article-content {
    font-size: 17px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
