:root {
  color-scheme: light;
  --bg: #f3f1ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #fbfaf6;
  --surface-soft: #eeece4;
  --ink: #1e2824;
  --muted: #6f7772;
  --faint: #9ca39f;
  --line: rgba(30, 40, 36, 0.11);
  --brand: #225c49;
  --brand-strong: #174738;
  --brand-soft: #dcebe3;
  --blue: #4778a8;
  --amber: #c98a34;
  --coral: #c66c58;
  --shadow: 0 20px 60px rgba(41, 51, 46, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-sans: "Segoe UI", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --font-serif: "STSong", "Songti SC", "SimSun", serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #151b18;
  --surface: rgba(32, 41, 37, 0.8);
  --surface-solid: #202925;
  --surface-soft: #27312d;
  --ink: #edf2ef;
  --muted: #aeb9b3;
  --faint: #7f8c85;
  --line: rgba(237, 242, 239, 0.1);
  --brand: #69ad91;
  --brand-strong: #8bc6ad;
  --brand-soft: #253d34;
  --blue: #76a5d2;
  --amber: #e2ad62;
  --coral: #df8b78;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: background 180ms ease, color 180ms ease;
}

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

button,
select {
  cursor: pointer;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
}

.ambient-one {
  top: -280px;
  right: -130px;
  background: radial-gradient(circle, rgba(111, 165, 143, 0.28), transparent 68%);
}

.ambient-two {
  bottom: 8%;
  left: -320px;
  background: radial-gradient(circle, rgba(197, 151, 95, 0.2), transparent 68%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 21px;
  box-shadow: 0 9px 24px rgba(34, 92, 73, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.14em;
}

.brand small {
  margin-top: 1px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.header-actions,
.hero-actions,
.record-tools,
.data-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.privacy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62aa7d;
  box-shadow: 0 0 0 4px rgba(98, 170, 125, 0.13);
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.icon-button svg,
.button svg,
.search-field svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 8px 55px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(39px, 5.3vw, 70px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 92, 73, 0.18);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

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

.metric-card,
.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-card {
  min-height: 166px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.metric-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.metric-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.metric-icon-green {
  background: var(--brand-soft);
  color: var(--brand);
}

.metric-icon-blue {
  background: rgba(71, 120, 168, 0.13);
  color: var(--blue);
}

.metric-icon-amber {
  background: rgba(201, 138, 52, 0.13);
  color: var(--amber);
}

.metric-icon-coral {
  background: rgba(198, 108, 88, 0.13);
  color: var(--coral);
}

.metric-value {
  display: block;
  margin-top: 23px;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.metric-value span {
  margin-left: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
}

.metric-card p {
  margin: 7px 0 0;
  color: var(--faint);
  font-size: 11px;
}

.workspace-grid,
.lower-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.workspace-grid {
  grid-template-columns: minmax(0, 1.62fr) minmax(290px, 0.68fr);
}

.lower-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.56fr);
}

.panel {
  border-radius: var(--radius-lg);
}

.entry-panel,
.latest-panel,
.records-panel {
  padding: 28px;
}

.week-panel,
.distribution-panel {
  padding: 26px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.panel-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}

.readonly-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.readonly-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.latest-panel {
  position: relative;
  overflow: hidden;
}

.latest-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 137, 111, 0.13), transparent 68%);
  pointer-events: none;
}

.latest-content {
  position: relative;
  z-index: 1;
}

.latest-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--faint);
  font-size: 10px;
}

.latest-content h3 {
  max-width: 720px;
  margin: 18px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.latest-result {
  max-width: 720px;
  min-height: 25px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.latest-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.latest-details > div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-solid);
}

.latest-details span,
.latest-details strong {
  display: block;
}

.latest-details span {
  color: var(--faint);
  font-size: 9px;
}

.latest-details strong {
  margin-top: 7px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}

.latest-next {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.latest-next[hidden] {
  display: none;
}

.latest-next span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}

.latest-next p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.compact-heading {
  align-items: center;
}

.compact-heading strong {
  color: var(--brand);
  font-family: var(--font-serif);
  font-size: 22px;
}

.shortcut-hint {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--faint);
  font-size: 10px;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  color: var(--ink);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

input,
select {
  height: 44px;
  padding: 0 13px;
  font-size: 13px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 15px 28px;
  font-size: 14px;
  line-height: 1.65;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(34, 92, 73, 0.09);
}

::placeholder {
  color: var(--faint);
}

.character-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: var(--faint);
  font-size: 10px;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.form-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  padding-right: 52px;
}

.input-suffix span {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--faint);
  font-size: 11px;
  transform: translateY(-50%);
}

.optional-fields {
  margin-top: 17px;
  border-top: 1px solid var(--line);
}

.optional-fields summary {
  padding: 15px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.optional-fields summary::-webkit-details-marker {
  display: none;
}

.optional-fields summary::before {
  content: "＋";
  display: inline-block;
  margin-right: 6px;
  transition: transform 150ms ease;
}

.optional-fields[open] summary::before {
  transform: rotate(45deg);
}

.optional-fields-body {
  display: grid;
  gap: 12px;
  padding: 15px 0 2px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.form-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
}

.week-chart {
  display: grid;
  height: 210px;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: end;
  padding: 12px 2px 0;
}

.day-column {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 9px;
}

.day-bar-track {
  display: flex;
  width: 100%;
  flex: 1;
  align-items: end;
  overflow: hidden;
  border-radius: 9px;
  background: var(--surface-soft);
}

.day-bar {
  width: 100%;
  min-height: 4px;
  border-radius: 9px;
  background: linear-gradient(180deg, #5d9c82, var(--brand));
  transition: height 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.day-column.is-today .day-bar {
  background: linear-gradient(180deg, #d8a14f, #b87a2d);
}

.day-column span {
  color: var(--faint);
  font-size: 10px;
}

.day-column.is-today span {
  color: var(--ink);
  font-weight: 800;
}

.week-insight {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.insight-mark {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand);
}

.week-insight p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.records-heading {
  align-items: center;
}

.search-field {
  position: relative;
  display: block;
}

.search-field svg {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 12px;
  width: 16px;
  color: var(--faint);
}

.search-field input {
  width: 200px;
  padding-left: 37px;
}

.compact-select {
  width: 112px;
}

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -5px 0 12px;
  padding: 11px 13px;
  border: 1px solid rgba(201, 138, 52, 0.22);
  border-radius: 11px;
  background: rgba(201, 138, 52, 0.08);
  color: var(--muted);
  font-size: 11px;
}

.demo-banner[hidden] {
  display: none;
}

.demo-banner button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.demo-readonly {
  flex: 0 0 auto;
  color: var(--amber);
  font-weight: 800;
}

.record-list {
  display: grid;
}

.record-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 88px;
  gap: 18px;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}

.record-item:first-child {
  border-top: 0;
}

.record-date strong,
.record-date span {
  display: block;
  text-align: center;
}

.record-date strong {
  font-family: var(--font-serif);
  font-size: 24px;
}

.record-date span {
  margin-top: 2px;
  color: var(--faint);
  font-size: 10px;
}

.record-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.record-meta span {
  color: var(--faint);
  font-size: 10px;
}

.record-status {
  padding: 4px 7px;
  border-radius: 6px;
  font-weight: 800;
}

.status-done {
  background: var(--brand-soft);
  color: var(--brand) !important;
}

.status-in-progress {
  background: rgba(71, 120, 168, 0.13);
  color: var(--blue) !important;
}

.status-blocked {
  background: rgba(198, 108, 88, 0.13);
  color: var(--coral) !important;
}

.status-planned {
  background: rgba(201, 138, 52, 0.13);
  color: var(--amber) !important;
}

.record-main h3 {
  margin: 9px 0 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.record-result,
.record-next {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.record-next {
  margin-top: 8px;
  color: var(--faint);
}

.record-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.record-tags:empty {
  display: none;
}

.record-tags span {
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 9px;
}

.record-numbers {
  text-align: right;
}

.record-duration {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
}

.record-impact {
  display: block;
  margin-top: 6px;
  color: var(--faint);
  font-size: 9px;
}

.record-delete {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 9px;
  opacity: 0;
  transition: opacity 120ms ease, color 120ms ease;
}

.record-item:hover .record-delete,
.record-delete:focus {
  opacity: 1;
}

.record-delete:hover {
  color: var(--coral);
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
}

.empty-state span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 21px;
}

.empty-state h3 {
  margin: 0 0 7px;
  font-family: var(--font-serif);
  font-size: 18px;
}

.empty-state p {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
}

.donut-wrap {
  display: grid;
  place-items: center;
  padding: 10px 0 24px;
}

.donut {
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--surface-soft) 0 100%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.donut::before {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: 0 0 0 1px var(--line);
}

.donut > div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut strong,
.donut span {
  display: block;
}

.donut strong {
  font-family: var(--font-serif);
  font-size: 29px;
}

.donut span {
  margin-top: 2px;
  color: var(--faint);
  font-size: 10px;
}

.legend {
  display: grid;
  gap: 11px;
}

.legend-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.legend-item strong {
  color: var(--ink);
  font-size: 10px;
}

.data-actions {
  justify-content: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.readonly-source {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.readonly-source > span {
  display: block;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.readonly-source code {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--brand);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
}

.readonly-source p {
  margin: 10px auto 0;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.6;
}

.text-button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.file-button {
  cursor: pointer;
}

.file-button input {
  display: none;
}

.site-footer {
  display: flex;
  width: min(1220px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 8px 42px;
  color: var(--faint);
  font-size: 10px;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 10px;
}

.site-footer button:hover {
  color: var(--coral);
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100% - 48px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #1e2824;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    display: block;
    padding-top: 52px;
  }

  .hero-actions {
    margin-top: 28px;
  }

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

  .workspace-grid,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .week-panel,
  .distribution-panel {
    min-height: auto;
  }

  .distribution-panel {
    display: grid;
    grid-template-columns: 1fr 190px 1fr;
    align-items: center;
    gap: 16px;
  }

  .distribution-panel .panel-heading,
  .distribution-panel .data-actions,
  .distribution-panel .readonly-source {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header,
  .shell,
  .site-footer {
    width: min(100% - 28px, 1220px);
  }

  .privacy-chip {
    display: none;
  }

  .hero {
    padding: 38px 2px 38px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .record-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .metric-card {
    min-height: 148px;
    padding: 18px;
  }

  .entry-panel,
  .latest-panel,
  .records-panel,
  .week-panel,
  .distribution-panel {
    padding: 20px;
    border-radius: 22px;
  }

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

  .form-footer,
  .records-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .shortcut-hint {
    display: none;
  }

  .search-field input,
  .compact-select {
    width: 100%;
  }

  .record-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .record-numbers {
    display: flex;
    grid-column: 2;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .record-duration,
  .record-impact,
  .record-delete {
    display: inline-block;
    margin: 0;
  }

  .latest-details {
    grid-template-columns: 1fr;
  }

  .record-delete {
    margin-left: auto;
    opacity: 1;
  }

  .distribution-panel {
    display: block;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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