@font-face {
  font-family: "Jura";
  src: url("./Jura-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 700;
}

@font-face {
  font-family: "Alumni Pinstripe";
  src: url("./AlumniSansPinstripe-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

:root {
  --bg: #090a0e;
  --bg-2: #11131a;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-2: rgba(255, 255, 255, 0.12);
  --surface-3: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.64);
  --soft: rgba(245, 247, 251, 0.38);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #3d7bff;
  --accent-2: #7fb0ff;
  --good: #67e3a4;
  --warn: #ffbe5c;
  --danger: #ff6675;
  --deep-bg: #050609;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --safe-bottom: env(safe-area-inset-bottom);
  color-scheme: dark;
  font-family: "Jura", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  --bg: #eef1f6;
  --bg-2: #fafbfe;
  --surface: rgba(16, 22, 35, 0.07);
  --surface-2: rgba(16, 22, 35, 0.11);
  --surface-3: rgba(16, 22, 35, 0.17);
  --text: #111725;
  --muted: rgba(17, 23, 37, 0.63);
  --soft: rgba(17, 23, 37, 0.38);
  --line: rgba(17, 23, 37, 0.1);
  --deep-bg: #d9dee9;
  --shadow: 0 22px 62px rgba(48, 67, 104, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: #202126;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  position: relative;
  width: min(100%, 480px);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}

.splash,
.mini-app {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.splash {
  z-index: 30;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(36px + env(safe-area-inset-top)) 28px calc(34px + var(--safe-bottom));
  background:
    radial-gradient(circle at 18% 16%, rgba(61, 123, 255, 0.34), transparent 27%),
    radial-gradient(circle at 82% 20%, rgba(127, 176, 255, 0.17), transparent 26%),
    linear-gradient(145deg, #02040a, #071024 42%, #06070b);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.19, 1, 0.22, 1), filter 640ms ease;
}

.splash.is-exiting {
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.035);
  pointer-events: none;
}

.splash-lines {
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(rgba(127, 176, 255, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 176, 255, 0.12) 1px, transparent 1px);
  background-size: 118px 118px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0 32%, transparent 67%);
  animation: gridFloat 11s ease-in-out infinite alternate;
}

.shape {
  position: absolute;
  border: 1px solid rgba(127, 176, 255, 0.76);
  background: rgba(61, 123, 255, 0.12);
  box-shadow: 0 0 26px rgba(61, 123, 255, 0.22);
  transform: rotate(var(--rotate));
  animation: shapeDrift 6s ease-in-out infinite alternate;
}

.shape-one {
  --rotate: 8deg;
  top: 18%;
  right: 22%;
  width: 32px;
  height: 32px;
}

.shape-two {
  --rotate: -18deg;
  top: 25%;
  right: 13%;
  width: 24px;
  height: 24px;
  animation-delay: -1.4s;
}

.shape-three {
  --rotate: 0deg;
  top: 30%;
  right: 31%;
  width: 18px;
  height: 18px;
  background: var(--accent);
  animation-delay: -2.2s;
}

.splash-brand {
  align-self: end;
  padding-bottom: 54px;
}

.brand-dot {
  display: block;
  width: 46px;
  height: 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.84));
  box-shadow: 0 0 30px rgba(61, 123, 255, 0.42);
  transform-origin: left;
  animation: dotPulse 1.8s ease-in-out infinite alternate;
}

.splash-brand p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.splash-brand h1 {
  margin: 0;
  font-family: "Alumni Pinstripe", "Jura", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(5.2rem, 26vw, 8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.splash-brand h1 span {
  display: inline-block;
  text-shadow: 0 18px 58px rgba(61, 123, 255, 0.3);
  animation: wordIn 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.splash-brand .brand-domain {
  color: var(--accent-2);
  animation-delay: 110ms;
}

.start-button,
.add-pill,
.save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #2163f5);
  color: white;
  font-weight: 790;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(61, 123, 255, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-button {
  justify-self: end;
  min-width: 164px;
  min-height: 56px;
  padding: 0 18px 0 24px;
}

.mini-app {
  z-index: 1;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 540ms ease, transform 640ms cubic-bezier(0.19, 1, 0.22, 1);
  background:
    radial-gradient(circle at 18% -4%, rgba(61, 123, 255, 0.26), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(127, 176, 255, 0.15), transparent 26%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 44%, var(--deep-bg));
}

.mini-app.is-ready {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ambient {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 18%, rgba(61, 123, 255, 0.16), transparent 20%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.06), transparent 24%);
  animation: ambientMove 12s ease-in-out infinite alternate;
}

.pages-viewport {
  height: 100%;
  overflow: hidden;
}

.pages-track {
  display: flex;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  transition: transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.pages-track.is-dragging {
  transition: none;
}

.page {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding: calc(38px + env(safe-area-inset-top)) 18px calc(142px + var(--safe-bottom));
  scrollbar-width: none;
}

.page-home {
  padding-top: calc(20px + env(safe-area-inset-top));
}

.page::-webkit-scrollbar {
  display: none;
}

.page.is-active .reveal {
  animation: riseIn 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: var(--delay, 0ms);
}

.home-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
}

.avatar,
.profile-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.52), transparent 18%),
    linear-gradient(135deg, #62e1b2, #3d7bff);
  color: white;
  font-weight: 860;
}

.avatar {
  width: 48px;
  height: 48px;
}

.avatar img,
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hello-copy {
  min-width: 0;
}

.hello-copy p,
.page-header p,
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 730;
}

.hello-copy p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.1;
}

.hello-copy h2,
.page-header h2 {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.55rem, 7.2vw, 2.18rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.hello-copy h2 {
  max-width: 14ch;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon,
[data-icon] svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.date-carousel {
  margin: 18px -18px 0;
  overflow: hidden;
}

.date-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 18px 10px;
  scroll-padding: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.date-rail::-webkit-scrollbar {
  display: none;
}

.date-pill {
  flex: 0 0 60px;
  min-height: 66px;
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  scroll-snap-align: center;
  transform: translateY(0);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.date-pill strong,
.date-pill span {
  display: block;
}

.date-pill strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1;
}

.date-pill span {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.date-pill small {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.62rem;
  font-weight: 850;
}

.date-pill.is-active {
  border-color: rgba(61, 123, 255, 0.62);
  background: linear-gradient(180deg, rgba(61, 123, 255, 0.34), rgba(61, 123, 255, 0.1));
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(61, 123, 255, 0.18);
}

.block {
  margin-top: 22px;
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.block-head h3 {
  margin: 2px 0 0;
  font-size: 1.34rem;
  line-height: 1.05;
}

.block-head.compact {
  margin-bottom: 12px;
}

.add-pill {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.count-pill {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 820;
}

.today-cards {
  display: flex;
  gap: 12px;
  margin: 0 -18px;
  padding: 0 18px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.today-cards::-webkit-scrollbar {
  display: none;
}

.task-card {
  position: relative;
  flex: 0 0 min(74vw, 302px);
  min-height: 158px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(145deg, rgba(61, 123, 255, 0.74), rgba(17, 26, 58, 0.88));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.task-card:nth-child(2n) {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, rgba(107, 76, 255, 0.74), rgba(20, 17, 46, 0.88));
}

.task-card h4,
.task-row strong,
.agent-card h3,
.profile-card h3 {
  margin: 0;
  color: var(--text);
}

.task-card h4 {
  max-width: 14ch;
  font-size: 1.08rem;
  line-height: 1.1;
}

.task-card p {
  margin: 5px 0 0;
  max-width: 17ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.card-menu {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 3px;
}

.card-menu i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.progress {
  margin-top: 18px;
}

.progress header {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 760;
}

.progress-track {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-track span {
  display: block;
  width: var(--progress, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, white, rgba(127, 176, 255, 0.95));
}

.card-foot,
.task-row footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: -7px;
  border: 2px solid rgba(8, 10, 16, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c86d, #7fb0ff);
  color: white;
  font-size: 0.62rem;
  font-weight: 850;
}

.card-date,
.task-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 760;
}

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

.task-row,
.agent-card,
.profile-card,
.calendar-board,
.agenda article,
.agent-feed article,
.settings-list button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
}

.task-row {
  padding: 13px 15px;
  min-height: 88px;
}

.task-row p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 730;
}

.task-row strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  line-height: 1.18;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-header {
  min-height: 116px;
  padding-top: 4px;
}

.calendar-board {
  padding: 16px;
}

.month-title {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 790;
}

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

.week-day {
  min-height: 72px;
  padding: 9px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.week-day span,
.week-day strong {
  display: block;
  text-align: center;
}

.week-day span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 840;
  text-transform: uppercase;
}

.week-day strong {
  margin-top: 8px;
  font-size: 1.12rem;
}

.week-day.is-active {
  border-color: rgba(61, 123, 255, 0.62);
  background: rgba(61, 123, 255, 0.19);
}

.agenda,
.agent-feed,
.settings-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.agenda article,
.agent-feed article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.agenda .time {
  color: var(--accent-2);
  font-weight: 840;
}

.agenda strong,
.agent-feed strong {
  display: block;
  margin-bottom: 4px;
}

.agenda p,
.agent-feed p,
.agent-card p,
.profile-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.agent-card,
.profile-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.agent-orb {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, white 0 6px, transparent 7px),
    conic-gradient(from 60deg, var(--accent), var(--good), var(--accent-2), var(--accent));
  box-shadow: 0 0 38px rgba(61, 123, 255, 0.32);
  animation: orbSpin 5.5s linear infinite;
}

.agent-feed article {
  grid-template-columns: 38px minmax(0, 1fr);
}

.agent-feed [data-icon] {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(61, 123, 255, 0.14);
  color: var(--accent-2);
}

.profile-avatar {
  width: 68px;
  height: 68px;
}

.settings-list button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  text-align: left;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  cursor: pointer;
}

.settings-list button > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61, 123, 255, 0.12);
  color: var(--accent-2);
}

.settings-list strong,
.settings-list small {
  display: block;
}

.settings-list small {
  color: var(--muted);
  font-weight: 720;
}

.bottom-nav {
  position: fixed;
  left: calc(50% - 151px);
  bottom: calc(10px + var(--safe-bottom));
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 5px;
  align-items: center;
  min-height: 58px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-2) 92%, #ffffff 8%);
  box-shadow: var(--shadow);
  touch-action: none;
}

.bottom-nav.is-pressing {
  transform: translateY(-1px);
}

.bottom-nav button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.bottom-nav button.is-active {
  color: white;
}

html[data-theme="light"] .bottom-nav button.is-active {
  color: var(--text);
}

.nav-thumb {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  width: var(--thumb-width, 44px);
  height: 44px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 90%, rgba(127, 176, 255, 0.7), transparent 42%),
    linear-gradient(135deg, var(--accent), #1d52d8);
  box-shadow: 0 14px 34px rgba(61, 123, 255, 0.32);
  transform: translateX(var(--thumb-x, 0));
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1), width 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bottom-nav.is-dragging .nav-thumb {
  transition: none;
}

.fab {
  position: fixed;
  left: calc(50% + 93px);
  right: auto;
  bottom: calc(15px + var(--safe-bottom));
  z-index: 13;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a83ff, #1f5cff);
  color: white;
  box-shadow: 0 18px 48px rgba(61, 123, 255, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.42);
}

.task-sheet {
  position: fixed;
  left: max(12px, calc(50% - 228px));
  right: max(12px, calc(50% - 228px));
  bottom: calc(12px + var(--safe-bottom));
  z-index: 21;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-2) 96%, #ffffff 4%);
  box-shadow: var(--shadow);
  animation: sheetIn 340ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.task-sheet header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.task-sheet h3 {
  margin: 2px 0 0;
}

.task-sheet label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.task-sheet input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  padding: 0 13px;
  color: var(--text);
  background: var(--surface);
}

.save-button {
  min-height: 50px;
  margin-top: 4px;
}

button:active,
.date-pill:active {
  transform: scale(0.97);
}

.start-button:active,
.fab:active {
  transform: scale(0.94);
}

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

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

@keyframes gridFloat {
  from {
    transform: translate3d(-12px, -8px, 0) scale(1);
  }
  to {
    transform: translate3d(16px, 20px, 0) scale(1.08);
  }
}

@keyframes shapeDrift {
  from {
    transform: translate3d(-6px, 4px, 0) rotate(var(--rotate));
  }
  to {
    transform: translate3d(8px, -14px, 0) rotate(calc(var(--rotate) + 18deg));
  }
}

@keyframes dotPulse {
  from {
    transform: scaleX(0.72);
  }
  to {
    transform: scaleX(1.18);
  }
}

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

@keyframes ambientMove {
  from {
    transform: translate3d(-3%, -2%, 0);
  }
  to {
    transform: translate3d(4%, 3%, 0);
  }
}

@keyframes orbSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 370px) {
  .page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .today-cards,
  .date-carousel {
    margin-left: -14px;
    margin-right: -14px;
  }

  .today-cards,
  .date-rail {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-header {
    grid-template-columns: 46px minmax(0, 1fr) 42px;
  }

  .bottom-nav {
    left: calc(50% - 130px);
    grid-template-columns: repeat(4, 44px);
    gap: 4px;
  }

  .bottom-nav button,
  .nav-thumb {
    width: 44px;
    height: 44px;
  }

  .fab {
    left: calc(50% + 82px);
    width: 54px;
    height: 54px;
  }
}

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