@font-face {
  font-family: "Geist";
  src: url("geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --blue: #245be8;
  --blue-dark: #1748c9;
  --blue-soft: #eef3ff;
  --ink: #1b2741;
  --muted: #73819a;
  --line: #e4eaf3;
  --studies: #7c3aed;
  --work: #f28b23;
  --life: #63ad2f;
  --school: #ec4e45;
}

* {
  box-sizing: border-box;
}

html {
  background: #e9f0fa;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(54, 111, 222, 0.14), transparent 27rem),
    linear-gradient(150deg, #f3f7fc, #e5edf8);
  font-family: var(--font-geist-sans), Inter, ui-sans-serif, system-ui, sans-serif;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 91, 232, 0.28);
  outline-offset: 2px;
}

svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-backdrop {
  min-height: 100vh;
}

.mobile-app {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

.mobile-header {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 66px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 9px 12px 7px;
  border-bottom: 1px solid #edf1f6;
  background: rgba(255, 255, 255, 0.98);
}

.logo-holder {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.logo-holder img {
  display: block;
  width: 35px;
  height: auto;
  object-fit: contain;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.wordmark strong {
  color: var(--blue);
  font-size: 1.16rem;
  font-weight: 850;
}

.wordmark span {
  font-size: 1rem;
  font-weight: 740;
}

.header-spacer {
  width: 38px;
  height: 1px;
  justify-self: end;
}

.calendar-workspace {
  display: grid;
  min-height: 392px;
  grid-template-columns: 106px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.options-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.options-header {
  display: flex;
  height: 37px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
}

.options-header h1 {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 800;
}

.options-header svg {
  width: 0.76rem;
  height: 0.76rem;
  color: #8795aa;
}

.compact-list {
  flex: 1;
  max-height: 294px;
  overflow-y: auto;
  scrollbar-color: #cbd7e8 transparent;
  scrollbar-width: thin;
}

.compact-item {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) 19px;
  border-bottom: 1px solid #edf1f6;
  background: #fff;
}

.compact-item.selected {
  background: linear-gradient(90deg, #f0f5ff, #fff);
  box-shadow: inset 2px 0 0 var(--blue);
}

.compact-select {
  min-width: 0;
  padding: 7px 2px 6px 9px;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.compact-select time,
.compact-select strong,
.compact-select small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-select time {
  margin-bottom: 2px;
  font-size: 0.49rem;
  font-weight: 830;
}

.compact-select strong {
  color: #27344d;
  font-size: 0.57rem;
  line-height: 1.25;
}

.compact-select small {
  margin-top: 2px;
  color: #7d899c;
  font-size: 0.48rem;
}

.category-studies { color: var(--studies); }
.category-work { color: var(--work); }
.category-life { color: var(--life); }
.category-school { color: var(--school); }

.compact-check {
  display: grid;
  width: 13px;
  height: 13px;
  align-self: center;
  place-items: center;
  padding: 0;
  color: transparent;
  border: 1px solid #aab7ca;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

.compact-check svg {
  width: 0.58rem;
  height: 0.58rem;
  stroke-width: 2.8;
}

.compact-check[aria-pressed="true"] {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.add-task-button {
  display: flex;
  width: calc(100% - 12px);
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 7px 6px 8px;
  padding: 0 4px;
  color: var(--blue);
  border: 1px solid #8fb0ff;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  font-size: 0.5rem;
  font-weight: 760;
}

.add-task-button:hover {
  background: #f2f6ff;
}

.add-task-button svg {
  width: 0.7rem;
  height: 0.7rem;
}

.calendar-panel {
  min-width: 0;
  padding: 0 8px 7px;
}

.month-header {
  display: grid;
  height: 37px;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.month-header h2 {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 780;
}

.month-header button {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #8290a6;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.month-header button:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.month-header svg {
  width: 0.76rem;
  height: 0.76rem;
}

.weekdays,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekdays {
  padding: 9px 0 4px;
}

.weekdays span {
  color: #8491a5;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 760;
  text-transform: uppercase;
}

.month-grid {
  gap: 2px;
}

.month-grid button {
  position: relative;
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 0;
  color: #28364e;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  font-size: 0.52rem;
  font-weight: 680;
}

.month-grid button:hover {
  background: #f2f6fc;
}

.month-grid button.outside {
  color: #c7ceda;
}

.month-grid button.active-date {
  color: var(--blue);
  background: #edf3ff;
  box-shadow: inset 0 0 0 1px #dce8ff;
  font-weight: 850;
}

.day-dots {
  position: absolute;
  bottom: 4px;
  display: flex;
  gap: 2px;
}

.day-dots i,
.category-legend i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.dot-studies { background: var(--studies); }
.dot-work { background: var(--work); }
.dot-life { background: var(--life); }
.dot-school { background: var(--school); }

.category-legend {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3px;
  margin-top: 7px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.category-legend span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #65738a;
  font-size: 0.42rem;
  font-weight: 690;
}

.details-divider {
  display: grid;
  height: 29px;
  place-items: center;
  color: var(--blue);
  border-bottom: 1px solid #eef2f7;
  background: #fbfcff;
}

.details-divider svg {
  width: 0.78rem;
  height: 0.78rem;
}

.details-card {
  margin: 9px 10px 10px;
  overflow: hidden;
  border: 1px solid #e4eaf3;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 19px rgba(36, 67, 113, 0.1);
}

.details-header {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.details-header h2 {
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 790;
}

.details-header button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.details-list {
  margin: 0;
  padding: 0 12px 5px;
}

.details-list > div {
  display: grid;
  min-height: 48px;
  grid-template-columns: 87px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid #edf1f6;
}

.details-list > div:last-child {
  min-height: 58px;
  border-bottom: 0;
}

.details-list dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #748199;
  font-size: 0.51rem;
  font-weight: 650;
}

.details-list dt span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #dfe7f5;
  border-radius: 6px;
  background: #f6f8ff;
}

.details-list dt svg {
  width: 0.76rem;
  height: 0.76rem;
}

.details-list dd {
  margin: 0;
  color: #28364f;
  font-size: 0.55rem;
  font-weight: 690;
  line-height: 1.45;
}

.bottom-nav {
  position: sticky;
  z-index: 10;
  bottom: 0;
  display: grid;
  min-height: 65px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: auto;
  padding: 5px 12px 6px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.bottom-nav button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: #8290a7;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.46rem;
  font-weight: 690;
}

.bottom-nav button.active {
  color: var(--blue);
}

.bottom-nav button.active::after {
  position: absolute;
  right: 23%;
  bottom: -2px;
  left: 23%;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--blue);
}

.bottom-nav svg {
  width: 1.02rem;
  height: 1.02rem;
}

.tab-screen {
  flex: 1;
  min-height: 650px;
  overflow-y: auto;
  padding: 17px 12px 14px;
  background: #fbfcff;
  scrollbar-color: #cbd7e8 transparent;
  scrollbar-width: thin;
}

.tab-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tab-screen-header p {
  margin: 0 0 3px;
  color: #8491a5;
  font-size: 0.53rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tab-screen-header h1 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.tab-screen-header > button {
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  color: #fff;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 760;
  box-shadow: 0 5px 12px rgba(36, 91, 232, 0.18);
}

.tab-screen-header > button svg {
  width: 0.75rem;
  height: 0.75rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.section-tile {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: flex-start;
  flex-direction: column;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(36, 66, 108, 0.06);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.section-tile:hover {
  border-color: #b9cae2;
  box-shadow: 0 8px 20px rgba(36, 66, 108, 0.1);
  transform: translateY(-2px);
}

.section-tile-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 10px;
}

.section-studies .section-tile-icon { color: var(--studies); background: #f2ebff; }
.section-work .section-tile-icon { color: var(--work); background: #fff2e5; }
.section-life .section-tile-icon { color: var(--life); background: #eef8e8; }
.section-school .section-tile-icon { color: var(--school); background: #fff0ef; }

.section-tile strong {
  font-size: 0.73rem;
}

.section-tile small {
  margin-top: 4px;
  color: #7f8ba0;
  font-size: 0.52rem;
}

.section-tile > i {
  position: absolute;
  right: 11px;
  bottom: 11px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #8090a7;
  border-radius: 8px;
  background: #f5f7fb;
  font-style: normal;
}

.section-tile > i svg {
  width: 0.72rem;
  height: 0.72rem;
}

.section-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.section-summary > div {
  display: grid;
  min-height: 74px;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--line);
}

.section-summary > div:last-child {
  border-right: 0;
}

.section-summary span {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 830;
}

.section-summary small {
  margin-top: 3px;
  color: #8290a4;
  font-size: 0.48rem;
}

.filter-chips {
  display: flex;
  gap: 6px;
  margin: -3px -1px 13px;
  overflow-x: auto;
  padding: 3px 1px 5px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chips button {
  flex: 0 0 auto;
  height: 29px;
  padding: 0 10px;
  color: #64738a;
  border: 1px solid #dfe6f0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 0.53rem;
  font-weight: 700;
}

.filter-chips button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.full-task-list {
  display: grid;
  gap: 8px;
}

.full-task-row {
  display: grid;
  min-height: 67px;
  grid-template-columns: 28px minmax(0, 1fr) 30px;
  gap: 5px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(34, 63, 104, 0.045);
}

.full-task-row.completed .full-task-select {
  opacity: 0.55;
}

.full-task-row.completed .full-task-select strong {
  text-decoration: line-through;
}

.full-check,
.goal-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: transparent;
  border: 1px solid #aebbcf;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.full-check[aria-pressed="true"],
.goal-check[aria-pressed="true"] {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.full-check svg,
.goal-check svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke-width: 2.7;
}

.full-task-select {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 3px;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.full-task-select span {
  min-width: 0;
}

.full-task-select strong,
.full-task-select small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-task-select strong {
  font-size: 0.65rem;
}

.full-task-select small {
  margin-top: 4px;
  color: #7b899d;
  font-size: 0.49rem;
}

.full-task-select time {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.51rem;
  font-weight: 770;
}

.row-edit {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #6d7d93;
  border: 0;
  border-radius: 8px;
  background: #f5f7fb;
  cursor: pointer;
}

.row-edit svg {
  width: 0.76rem;
  height: 0.76rem;
}

.goal-progress-card {
  padding: 15px;
  border: 1px solid #dfe7f4;
  border-radius: 14px;
  background: linear-gradient(140deg, #eef4ff, #fff);
  box-shadow: 0 6px 18px rgba(35, 68, 116, 0.07);
}

.goal-progress-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65748c;
  font-size: 0.58rem;
  font-weight: 700;
}

.goal-progress-card strong {
  color: var(--blue);
  font-size: 0.76rem;
}

.goal-progress-track {
  height: 7px;
  margin: 11px 0 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7f8;
}

.goal-progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #6c8fff);
  transition: width 200ms ease;
}

.goal-progress-card p {
  margin: 0;
  color: #7c899d;
  font-size: 0.5rem;
  line-height: 1.45;
}

.goal-list {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.goal-row {
  display: grid;
  min-height: 99px;
  grid-template-columns: 37px minmax(0, 1fr) 26px;
  gap: 8px;
  align-items: start;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.goal-row.completed {
  opacity: 0.62;
}

.goal-row.completed strong {
  text-decoration: line-through;
}

.goal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  border-radius: 10px;
  background: var(--blue-soft);
}

.goal-row > button:not(.goal-check) {
  min-width: 0;
  padding: 1px 0;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.goal-row strong,
.goal-row small,
.goal-row > button span {
  display: block;
}

.goal-row strong {
  font-size: 0.66rem;
}

.goal-row small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.49rem;
  font-weight: 680;
}

.goal-row > button span {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #7d899b;
  font-size: 0.5rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.goal-check {
  align-self: center;
}

.empty-goals {
  padding: 45px 20px;
  text-align: center;
  color: #8491a4;
}

.empty-goals > svg {
  width: 2rem;
  height: 2rem;
  color: var(--blue);
}

.empty-goals h2 {
  margin: 10px 0 4px;
  color: var(--ink);
  font-size: 0.8rem;
}

.empty-goals p {
  margin: 0;
  font-size: 0.55rem;
}

.sheet-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(15, 27, 47, 0.48);
  backdrop-filter: blur(4px);
  animation: fade-in 150ms ease-out;
}

@keyframes fade-in {
  from { opacity: 0; }
}

.task-sheet {
  width: min(100%, 460px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 9px 18px 20px;
  border-radius: 23px 23px 0 0;
  background: #fff;
  box-shadow: 0 -18px 60px rgba(16, 34, 62, 0.24);
  animation: sheet-up 190ms ease-out;
}

@keyframes sheet-up {
  from { transform: translateY(35px); opacity: 0.7; }
}

.sheet-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d7dfea;
}

.sheet-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 17px;
}

.sheet-heading p {
  margin: 0 0 3px;
  color: #8190a5;
  font-size: 0.58rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sheet-heading h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.sheet-heading button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #68778e;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.task-sheet form {
  display: grid;
  gap: 13px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.task-sheet label {
  display: grid;
  gap: 6px;
}

.task-sheet label > span {
  color: #5f6e84;
  font-size: 0.62rem;
  font-weight: 720;
}

.task-sheet input,
.task-sheet select,
.task-sheet textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fbfcff;
  font-size: 0.72rem;
}

.task-sheet input,
.task-sheet select {
  height: 43px;
  padding: 0 10px;
}

.task-sheet textarea {
  resize: vertical;
  padding: 10px;
  line-height: 1.5;
}

.task-sheet input:focus,
.task-sheet select:focus,
.task-sheet textarea:focus {
  border-color: #91b1ee;
  background: #fff;
}

.sheet-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9px;
  margin-top: 4px;
}

.sheet-actions button {
  height: 44px;
  color: #53647c;
  border: 1px solid #dbe4ef;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 750;
}

.sheet-actions.has-delete {
  grid-template-columns: 0.7fr 0.85fr 1.2fr;
}

.sheet-actions button.delete-button {
  color: #d53e48;
  border-color: #f0c5c9;
  background: #fff7f8;
}

.sheet-actions button.save-button {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 7px 16px rgba(36, 91, 232, 0.21);
}

@media (min-width: 700px) {
  .site-backdrop {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 26px;
  }

  .mobile-app {
    width: min(460px, 100%);
    min-height: 880px;
    border: 1px solid #cad5e4;
    border-radius: 31px;
    box-shadow: 0 28px 80px rgba(26, 57, 103, 0.2), 0 3px 13px rgba(30, 61, 107, 0.07);
  }

  .sheet-backdrop {
    align-items: center;
    padding: 20px;
  }

  .task-sheet {
    border-radius: 23px;
  }
}

@media (max-width: 359px) {
  .calendar-workspace {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .month-grid button {
    min-height: 35px;
  }

  .details-list > div {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

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