:root {
  --night: #081018;
  --night-soft: #111c24;
  --ink: #182028;
  --muted: #69717a;
  --paper: #f7f1e5;
  --paper-strong: #fffaf0;
  --line: rgba(24, 32, 40, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --jade: #20b899;
  --jade-deep: #0d7b6f;
  --gold: #d8b25c;
  --coral: #f36f61;
  --blue: #4f7df2;
  --plum: #6457c8;
  --shadow: 0 22px 50px rgba(8, 16, 24, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body::selection {
  color: #071017;
  background: var(--gold);
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  color: #f7f1e5;
  background: rgba(8, 16, 24, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(8, 16, 24, 0.86);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #061016;
  font-size: 0.84rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--jade));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(32, 184, 153, 0.25);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 760;
}

.brand-copy span {
  color: rgba(247, 241, 229, 0.68);
  font-size: 0.78rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(247, 241, 229, 0.76);
  font-size: 0.92rem;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 128px max(22px, calc((100vw - var(--max)) / 2)) 28px;
  color: #fffaf0;
  background-image: url("./assets/hero-malaysia-command-center.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 9, 14, 0.8) 0%, rgba(3, 9, 14, 0.48) 42%, rgba(3, 9, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 9, 14, 0.2) 0%, rgba(3, 9, 14, 0.38) 70%, rgba(3, 9, 14, 0.88) 100%);
}

.hero-content {
  width: min(780px, 100%);
  padding-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 760;
}

.eyebrow.dark {
  color: var(--jade-deep);
}

.hero h1 {
  max-width: 820px;
  font-size: 4.25rem;
  line-height: 1.04;
  font-weight: 830;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--ink);
  font-weight: 760;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #071017;
  background: var(--gold);
}

.button.secondary {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.hero-metrics li {
  min-height: 92px;
  padding: 16px;
  background: rgba(8, 16, 24, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 1.48rem;
  line-height: 1.2;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.92rem;
}

.band,
.board {
  padding: 94px max(22px, calc((100vw - var(--max)) / 2));
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.compact {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head.invert {
  color: #fffaf0;
}

.section-head h2,
.board-intro h2 {
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 820;
}

.section-head h3,
.reason-copy h3,
.flywheel-copy h3,
.model-copy h3,
.logic-copy h3,
.governance-section h3 {
  font-size: 2rem;
  line-height: 1.16;
  font-weight: 800;
}

.section-head p,
.board-intro p,
.reason-copy p,
.flywheel-copy p,
.model-copy p,
.logic-copy p,
.governance-section p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.band-summary {
  background: var(--paper);
}

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

.snapshot-card,
.architecture-grid article,
.capability-grid article,
.timeline article,
.risk-grid article,
.logic-grid article,
.governance-grid article {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(24, 32, 40, 0.07);
}

.snapshot-card {
  min-height: 258px;
  padding: 24px;
}

.card-index,
.risk-grid span,
.timeline span,
.architecture-grid span,
.equity-grid span {
  display: inline-flex;
  color: var(--jade-deep);
  font-size: 0.84rem;
  font-weight: 780;
}

.snapshot-card h3 {
  margin-top: 54px;
  font-size: 1.28rem;
}

.snapshot-card p,
.architecture-grid p,
.capability-grid p,
.timeline p,
.risk-grid p,
.logic-grid li,
.governance-grid p,
.equity-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.board-project {
  color: #fffaf0;
  background:
    linear-gradient(180deg, #081018 0%, #111a1d 54%, #171a20 100%);
}

.board-intro {
  max-width: 900px;
  margin-bottom: 48px;
}

.board-intro p {
  color: rgba(255, 250, 240, 0.72);
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 72px;
}

.reason-copy {
  display: grid;
  align-content: center;
  padding: 34px 0;
}

.reason-copy p {
  color: rgba(255, 250, 240, 0.68);
}

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

.reason-points div {
  min-height: 184px;
  padding: 24px;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(32, 184, 153, 0.2), rgba(79, 125, 242, 0.08)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.reason-points strong {
  display: block;
  font-size: 1.22rem;
}

.reason-points span {
  display: block;
  margin-top: 52px;
  color: rgba(255, 250, 240, 0.68);
}

.architecture,
.strategy-wall,
.capability-section,
.business-model {
  margin-top: 66px;
}

.architecture .section-head h3,
.strategy-wall .section-head h3,
.capability-section .section-head h3 {
  color: #fffaf0;
}

.architecture .section-head p,
.strategy-wall .section-head p,
.capability-section .section-head p {
  color: rgba(255, 250, 240, 0.68);
}

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

.architecture-grid article {
  min-height: 226px;
  padding: 22px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-dark);
  box-shadow: none;
}

.architecture-grid h4,
.capability-grid h4,
.logic-grid h4,
.governance-grid h4 {
  margin-top: 32px;
  font-size: 1.12rem;
}

.architecture-grid p,
.capability-grid p {
  color: rgba(255, 250, 240, 0.66);
}

.flywheel-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
  margin-top: 72px;
  padding: 40px 0 8px;
}

.flywheel {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(32, 184, 153, 0.18) 0 22%, transparent 23%),
    conic-gradient(from 20deg, rgba(32, 184, 153, 0.22), rgba(216, 178, 92, 0.18), rgba(79, 125, 242, 0.2), rgba(243, 111, 97, 0.14), rgba(32, 184, 153, 0.22));
  box-shadow: inset 0 0 80px rgba(32, 184, 153, 0.12);
}

.flywheel::before,
.flywheel::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.flywheel::after {
  inset: 31%;
}

.flywheel .hub,
.flywheel .node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 48px;
  padding: 0 12px;
  text-align: center;
  font-weight: 760;
  border-radius: 8px;
}

.flywheel .hub {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: #061016;
  background: var(--gold);
}

.flywheel .node {
  color: #fffaf0;
  background: rgba(8, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.node-a {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.node-b {
  top: 35%;
  right: -2%;
}

.node-c {
  right: 8%;
  bottom: 8%;
}

.node-d {
  bottom: 8%;
  left: 8%;
}

.node-e {
  top: 35%;
  left: -2%;
}

.flywheel-copy p,
.flywheel-copy li {
  color: rgba(255, 250, 240, 0.68);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  min-height: 54px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.strategy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.strategy-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: rgba(255, 250, 240, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

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

.capability-grid article {
  min-height: 214px;
  padding: 24px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-dark);
  box-shadow: none;
}

.business-model {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 42px;
  align-items: center;
  padding: 32px 0 0;
}

.model-copy h3 {
  color: #fffaf0;
}

.model-copy p {
  color: rgba(255, 250, 240, 0.68);
}

.revenue-stack {
  display: grid;
  gap: 12px;
}

.revenue-stack div {
  position: relative;
  min-height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.revenue-stack div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--level) * 1%);
  background: linear-gradient(90deg, var(--jade), var(--gold));
}

.revenue-stack span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fffaf0;
  font-weight: 760;
}

.band-timeline {
  background: var(--paper-strong);
}

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

.timeline article {
  min-height: 386px;
  padding: 28px;
}

.timeline h3 {
  margin-top: 42px;
  font-size: 1.5rem;
}

.timeline ul {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.timeline li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.board-finance {
  color: #fffaf0;
  background:
    linear-gradient(180deg, #141a22 0%, #0b1118 100%);
}

.capital-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1.38fr);
  gap: 20px;
  align-items: stretch;
}

.capital-figure {
  display: grid;
  align-content: center;
  min-height: 310px;
  padding: 34px;
  background: var(--gold);
  border-radius: 8px;
  color: #071017;
}

.capital-figure p {
  color: rgba(7, 16, 23, 0.68);
  font-weight: 760;
}

.capital-figure strong {
  display: block;
  margin-top: 16px;
  font-size: 4.4rem;
  line-height: 1;
}

.capital-figure span {
  margin-top: 12px;
  color: rgba(7, 16, 23, 0.68);
}

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

.capital-split article,
.equity-grid article {
  min-height: 310px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.split-bar {
  position: relative;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.split-bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--value) * 1%);
  background: var(--jade);
}

.split-bar.investor::before {
  background: var(--blue);
}

.capital-split h3 {
  margin-top: 52px;
  font-size: 1.4rem;
  line-height: 1.25;
}

.capital-split p {
  margin-top: 16px;
  color: rgba(255, 250, 240, 0.66);
}

.equity-section,
.logic-section,
.governance-section {
  margin-top: 76px;
}

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

.equity-grid.single {
  grid-template-columns: 1fr;
}

.equity-grid article {
  min-height: 286px;
}

.equity-grid article.recommended {
  background:
    linear-gradient(135deg, rgba(216, 178, 92, 0.18), rgba(32, 184, 153, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.equity-grid h4 {
  margin-top: 34px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.equity-grid p {
  color: rgba(255, 250, 240, 0.66);
}

.equity-meter {
  display: flex;
  gap: 6px;
  height: 16px;
  margin-top: 28px;
}

.equity-meter i {
  display: block;
  width: calc(var(--value) * 1%);
  border-radius: 5px;
}

.equity-meter .founder {
  background: var(--gold);
}

.equity-meter .investor {
  background: var(--jade);
}

.logic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
}

.logic-copy h3,
.governance-section h3 {
  color: #fffaf0;
}

.logic-copy p,
.governance-section p {
  color: rgba(255, 250, 240, 0.66);
}

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

.logic-grid article {
  min-height: 404px;
  padding: 26px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-dark);
  box-shadow: none;
}

.logic-grid h4 {
  margin-top: 0;
}

.logic-grid ul {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.logic-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 250, 240, 0.66);
}

.logic-grid li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--jade);
  border-radius: 50%;
}

.governance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 36px;
  align-items: start;
}

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

.governance-grid article {
  min-height: 244px;
  padding: 24px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-dark);
  box-shadow: none;
}

.governance-grid h4 {
  margin-top: 0;
}

.governance-grid p {
  color: rgba(255, 250, 240, 0.66);
}

.band-risk {
  background: var(--paper);
}

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

.risk-grid article {
  min-height: 254px;
  padding: 24px;
}

.risk-grid h3 {
  margin-top: 46px;
  font-size: 1.18rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 44px max(22px, calc((100vw - var(--max)) / 2));
  color: #fffaf0;
  background: #071017;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin-top: 6px;
  color: rgba(255, 250, 240, 0.62);
}

.footer-button {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-metrics,
  .snapshot-grid,
  .architecture-grid,
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-layout,
  .flywheel-section,
  .business-model,
  .logic-section,
  .governance-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    min-height: 112px;
    padding: 12px 16px;
    flex-direction: column;
  }

  .site-header.is-scrolled {
    min-height: 104px;
  }

  .brand {
    min-width: 0;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .top-nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 84svh;
    padding: 132px 16px 20px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

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

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 44px;
    width: auto;
    padding: 0 12px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics li {
    min-height: 78px;
    padding: 12px;
  }

  .hero-metrics strong {
    font-size: 1.16rem;
  }

  .hero-metrics span {
    margin-top: 4px;
    font-size: 0.82rem;
  }

  .band,
  .board {
    padding: 66px 16px;
  }

  .section-head h2,
  .board-intro h2 {
    font-size: 2.25rem;
  }

  .section-head h3,
  .reason-copy h3,
  .flywheel-copy h3,
  .model-copy h3,
  .logic-copy h3,
  .governance-section h3 {
    font-size: 1.7rem;
  }

  .snapshot-grid,
  .reason-points,
  .architecture-grid,
  .capability-grid,
  .timeline,
  .capital-layout,
  .capital-split,
  .equity-grid,
  .logic-grid,
  .governance-grid,
  .risk-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-card,
  .architecture-grid article,
  .capability-grid article,
  .timeline article,
  .risk-grid article,
  .logic-grid article,
  .governance-grid article,
  .capital-split article,
  .equity-grid article {
    min-height: auto;
  }

  .reason-points span,
  .snapshot-card h3,
  .architecture-grid h4 {
    margin-top: 28px;
  }

  .flywheel-section {
    gap: 34px;
  }

  .flywheel {
    width: min(420px, 100%);
  }

  .flywheel .hub,
  .flywheel .node {
    min-width: 94px;
    min-height: 42px;
    font-size: 0.82rem;
  }

  .node-b {
    right: -4%;
  }

  .node-e {
    left: -4%;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .capital-figure {
    min-height: 238px;
  }

  .capital-figure strong {
    font-size: 3.25rem;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 36px 16px;
  }

  .site-footer .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .flywheel .node {
    min-width: 82px;
    font-size: 0.76rem;
  }

  .flywheel .hub {
    min-width: 88px;
    font-size: 0.78rem;
  }
}

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