:root {
  color-scheme: light;
  --bg: #fbfaf4;
  --paper: #ffffff;
  --soft: #f2f5ec;
  --text: #101113;
  --muted: #697176;
  --line: rgba(16, 17, 19, 0.1);
  --mint: #8af2d5;
  --mint-dark: #139777;
  --cyan: #bfefff;
  --lime: #e6fb72;
  --lavender: #e7ddff;
  --shadow: 0 34px 110px rgba(35, 42, 46, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(138, 242, 213, 0.46), transparent 27rem),
    radial-gradient(circle at 88% 18%, rgba(230, 251, 114, 0.42), transparent 25rem),
    radial-gradient(circle at 52% 72%, rgba(191, 239, 255, 0.34), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #f2f1e8 100%);
  color: var(--text);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 19, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(#000 0 66%, transparent);
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

section {
  scroll-margin-top: 96px;
}

.neural-canvas,
.scroll-progress,
.aurora {
  position: fixed;
  pointer-events: none;
}

.neural-canvas {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.32;
}

.scroll-progress {
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--lavender), var(--lime));
  box-shadow: 0 0 22px rgba(19, 151, 119, 0.32);
}

.aurora {
  z-index: 0;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.28;
}

.aurora-a {
  top: 10%;
  left: -14%;
  background: var(--mint);
}

.aurora-b {
  right: -12%;
  bottom: 18%;
  background: var(--lime);
}

main,
.nav {
  position: relative;
  z-index: 3;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 70;
  width: min(1180px, calc(100% - 28px));
  height: 62px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(44, 49, 53, 0.08);
  backdrop-filter: blur(22px);
}

.brand,
.nav nav,
.nav-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #101113 0 42%, transparent 42%),
    linear-gradient(135deg, var(--mint), var(--lime));
  box-shadow: 0 12px 28px rgba(19, 151, 119, 0.18);
}

.nav nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav nav a:hover {
  color: var(--mint-dark);
}

.nav-action,
.button,
.ask-button {
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.nav-action {
  height: 42px;
  padding: 0 16px;
  background: var(--text);
  color: white;
}

.hero {
  min-height: 100vh;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.82fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #4e565b;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(35, 42, 46, 0.06);
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 0 0 14px rgba(19, 151, 119, 0.52);
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(50px, 6.6vw, 88px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #4f585d;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.45;
  font-weight: 800;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.button.primary {
  background: var(--text);
  color: white;
  box-shadow: 0 16px 42px rgba(16, 17, 19, 0.2);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.retro-id {
  position: relative;
  max-width: 660px;
  display: block;
  margin-bottom: 22px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 19, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    #070907;
  box-shadow:
    inset 0 0 0 1px rgba(138, 242, 213, 0.08),
    0 24px 70px rgba(16, 17, 19, 0.14);
}

.retro-id::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(138, 242, 213, 0.12), transparent),
    repeating-linear-gradient(180deg, rgba(138, 242, 213, 0.08) 0 1px, transparent 1px 6px);
  opacity: 0.42;
  animation: retroScan 5.6s linear infinite;
}

@keyframes retroScan {
  from {
    transform: translateX(-70%);
  }
  to {
    transform: translateX(70%);
  }
}

.retro-copy {
  position: relative;
  z-index: 1;
}

.retro-copy {
  min-width: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.retro-copy strong {
  display: block;
  margin-bottom: 14px;
  color: #29ff55;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 0.9;
  text-shadow:
    0 0 8px rgba(41, 255, 85, 0.7),
    0 0 24px rgba(41, 255, 85, 0.28);
}

.retro-copy dl {
  display: grid;
  gap: 7px;
  margin: 0;
  font-size: 13px;
}

.retro-copy dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.retro-copy dt {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 800;
}

.retro-copy dd {
  margin: 0;
  color: #29ff55;
  overflow-wrap: anywhere;
  text-shadow: 0 0 10px rgba(41, 255, 85, 0.24);
}

.hero-metrics {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 44px rgba(35, 42, 46, 0.06);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.hero-visual {
  min-width: 0;
}

.portrait-stage {
  position: relative;
  width: min(520px, 100%);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 19, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(138, 242, 213, 0.28), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 240, 0.82));
  box-shadow: var(--shadow);
}

.portrait-stage::before,
.portrait-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.portrait-stage::before {
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(19, 151, 119, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 0 44px rgba(138, 242, 213, 0.18);
}

.portrait-stage::after {
  display: none;
}

.portrait-stage img {
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  max-height: 690px;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.06) contrast(1.02);
}

.portrait-stage figcaption {
  display: none;
}

.portrait-stage figcaption span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portrait-stage figcaption strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
}

.hud {
  display: none;
  position: absolute;
  z-index: 5;
  padding: 10px 12px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(35, 42, 46, 0.12);
}

.hud span,
.hud b {
  display: block;
}

.hud span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hud b {
  font-size: 13px;
}

.hud-left {
  top: 34px;
  left: 30px;
}

.hud-right {
  top: 96px;
  right: 30px;
}

.command-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 0 86px;
}

.command-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #586167;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(35, 42, 46, 0.06);
}

.command-strip span:nth-child(1),
.command-strip span:nth-child(4) {
  color: #06251f;
  background: var(--mint);
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-intro {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.section-intro.compact {
  display: block;
}

.eyebrow,
.card-label {
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.contact p,
.panel-copy {
  color: var(--muted);
  line-height: 1.75;
}

.system-section,
.ai-lab,
.capabilities,
.contact {
  padding: 104px 0;
}

.os-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.os-sidebar {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #f2f5ec;
}

.mini-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--text);
  color: white;
  font-weight: 900;
}

.tab {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #6d757a;
  text-align: left;
  font-size: 20px;
  font-weight: 900;
}

.tab.active {
  border-color: rgba(19, 151, 119, 0.2);
  background: var(--mint);
  color: #06251f;
  box-shadow: 0 14px 34px rgba(19, 151, 119, 0.16);
}

.os-main {
  padding: clamp(22px, 3vw, 38px);
}

.os-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.os-topbar h3 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.ask-button {
  height: 44px;
  padding: 0 16px;
  background: var(--text);
  color: white;
}

.panel[hidden] {
  display: none !important;
}

.panel.active {
  display: block;
  animation: panelIn 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brief-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.operator-card,
.metric-card,
.wide-card,
.pipeline-grid article,
.content-core,
.chip-grid span,
.flow-node,
.review-grid article,
.review-note,
.lab-board article,
.terminal,
.capability-grid article,
.qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.operator-card,
.metric-card,
.wide-card {
  min-height: 190px;
  padding: 20px;
}

.operator-card {
  grid-row: span 2;
}

.operator-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 20px;
}

.operator-row img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 8px;
}

.operator-row h4,
.wide-card h4,
.content-core h4,
.review-note h4 {
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.operator-row p,
.operator-card li,
.metric-card p,
.content-core p,
.pipeline-grid p,
.review-grid p,
.capability-grid p,
.lab-board p,
.qr-card figcaption {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 800;
}

.operator-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 18px;
}

.metric-card.dark {
  background: var(--text);
  color: white;
}

.metric-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-card.glow {
  color: #06251f;
  background: var(--mint);
}

.metric-card span {
  font-weight: 900;
  opacity: 0.72;
}

.metric-card strong {
  display: block;
  margin: 48px 0 8px;
  font-size: 34px;
}

.wide-card {
  grid-column: span 2;
  background:
    radial-gradient(circle at 8% 8%, rgba(191, 239, 255, 0.72), transparent 18rem),
    white;
}

.pipeline-grid,
.review-grid,
.capability-grid,
.lab-board {
  display: grid;
  gap: 14px;
}

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

.pipeline-grid article,
.review-grid article,
.capability-grid article,
.lab-board article {
  min-height: 190px;
  padding: 22px;
  box-shadow: 0 16px 44px rgba(35, 42, 46, 0.05);
}

.pipeline-grid span,
.capability-grid span,
.lab-board span {
  color: var(--mint-dark);
  font-weight: 900;
}

.pipeline-grid h4,
.capability-grid h3,
.lab-board h3 {
  margin: 48px 0 10px;
  font-size: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.content-core {
  min-height: 280px;
  padding: 28px;
  background: var(--text);
  color: white;
}

.content-core p {
  color: rgba(255, 255, 255, 0.7);
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chip-grid span {
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  font-weight: 900;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.flow-node {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  font-weight: 900;
}

.flow-node.active {
  background: var(--lime);
  color: #222800;
}

.flow-node.done {
  background: var(--text);
  color: white;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.review-grid strong {
  display: block;
  margin-bottom: 64px;
  font-size: 34px;
}

.review-note {
  padding: 24px;
  background: linear-gradient(135deg, rgba(231, 221, 255, 0.85), white);
}

.ai-lab,
.capabilities,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.lab-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terminal {
  grid-column: 1 / -1;
  padding: 18px;
  background: #070907;
  color: rgba(41, 255, 85, 0.78);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(138, 242, 213, 0.08),
    0 18px 52px rgba(16, 17, 19, 0.1);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.terminal-top span:nth-child(2) {
  background: #ffbd2e;
}

.terminal-top span:nth-child(3) {
  background: #28c840;
}

.terminal-top b {
  margin-left: 8px;
  color: rgba(41, 255, 85, 0.58);
  font-size: 12px;
}

.terminal p {
  margin: 10px 0;
}

.terminal em {
  color: #29ff55;
  font-style: normal;
  text-shadow: 0 0 10px rgba(41, 255, 85, 0.34);
}

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

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 160px) 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(138, 242, 213, 0.2), transparent 22rem),
    radial-gradient(circle at 82% 30%, rgba(230, 251, 114, 0.24), transparent 24rem),
    linear-gradient(180deg, #fffef8, #f1efe5);
  color: var(--text);
}

.quote-band::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 19, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.fear-quote {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.fear-quote p {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin: 0 0 42px;
}

.fear-quote span {
  display: inline;
  padding: 0 0.12em 0.04em;
  background:
    linear-gradient(transparent 8%, rgba(255, 232, 0, 0.92) 8% 86%, transparent 86%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.fear-quote cite {
  display: block;
  color: #181a1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 42px);
  font-style: normal;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: center;
}

.phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.phones a {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--text);
  color: white;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}

.qr-card {
  margin: 0;
  padding: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.qr-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.qr-card figcaption {
  padding: 12px 4px 4px;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .nav nav,
  .nav-action {
    display: none;
  }

  .hero,
  .section-intro,
  .os-shell,
  .content-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .portrait-stage {
    width: min(560px, 100%);
    min-height: 680px;
  }

  .os-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-logo,
  .tab {
    margin-bottom: 0;
  }

  .brief-layout,
  .pipeline-grid,
  .flow-map,
  .review-grid,
  .capability-grid,
  .lab-board,
  .command-strip {
    grid-template-columns: 1fr;
  }

  .operator-card,
  .wide-card,
  .terminal {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    width: min(100% - 28px, 1240px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }

  .hero-actions,
  .button,
  .os-topbar,
  .ask-button {
    width: 100%;
  }

  .os-topbar,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics,
  .chip-grid,
  .os-sidebar {
    grid-template-columns: 1fr;
  }

  .retro-id {
    padding: 12px;
  }

  .retro-copy strong {
    font-size: 28px;
  }

  .retro-copy dl {
    font-size: 12px;
  }

  .retro-copy dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .portrait-stage {
    min-height: 620px;
  }

  .portrait-stage img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .hud {
    display: none;
  }

  .tab {
    font-size: 18px;
  }
}

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