:root {
  --bg: #040812;
  --bg-soft: #120a27;
  --panel: rgba(15, 23, 38, 0.5);
  --panel-strong: rgba(18, 28, 48, 0.78);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f3f6ff;
  --muted: rgba(223, 231, 247, 0.7);
  --cyan: #6dbbff;
  --mint: #96f0db;
  --peach: #ffb091;
  --pink: #d77dff;
  --violet: #8d63ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 187, 255, 0.72) rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(141, 99, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(215, 125, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, #070d1a 46%, var(--bg-soft) 100%);
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(141, 99, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(215, 125, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, #070d1a 46%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

body::-webkit-scrollbar,
.admin-drawer__list::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track,
.admin-drawer__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb,
.admin-drawer__list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(109, 187, 255, 0.88), rgba(215, 125, 255, 0.88)) padding-box;
}

body.drawer-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.cursor-active,
body.cursor-active button,
body.cursor-active input,
body.cursor-active textarea,
body.cursor-active label,
body.cursor-active a,
body.cursor-active select {
  cursor: none;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  --cursor-ring: 4px;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow:
    0 0 18px rgba(141, 99, 255, 0.24),
    0 10px 24px rgba(141, 99, 255, 0.2);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  opacity: 0;
  z-index: 20;
  transition:
    opacity 180ms ease,
    width 220ms var(--ease),
    height 220ms var(--ease),
    background 220ms var(--ease);
  will-change: transform;
}

.cursor-orb::before {
  content: "";
  position: absolute;
  inset: calc(var(--cursor-ring) + 1px);
  border-radius: inherit;
  background: radial-gradient(circle, rgba(141, 99, 255, 0.52) 0%, rgba(141, 99, 255, 0.26) 70%, rgba(141, 99, 255, 0.08) 100%);
}

.cursor-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-sizing: border-box;
  border: var(--cursor-ring) solid #ffffff;
}

body.cursor-active .cursor-orb {
  opacity: 1;
}

.cursor-orb.is-hovering {
  width: 38px;
  height: 38px;
  --cursor-ring: 5px;
  box-shadow:
    0 0 24px rgba(141, 99, 255, 0.32),
    0 12px 28px rgba(141, 99, 255, 0.24);
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  background:
    radial-gradient(circle at 16% 20%, rgba(141, 99, 255, 0.36), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(215, 125, 255, 0.3), transparent 18%),
    radial-gradient(circle at 54% 86%, rgba(109, 187, 255, 0.24), transparent 20%);
  filter: blur(52px);
  animation: background-drift 18s ease-in-out infinite;
  pointer-events: none;
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: -16%;
  background:
    radial-gradient(circle at 22% 34%, rgba(109, 187, 255, 0.24), transparent 20%),
    radial-gradient(circle at 78% 26%, rgba(164, 113, 255, 0.22), transparent 18%),
    radial-gradient(circle at 64% 76%, rgba(215, 125, 255, 0.24), transparent 20%);
  filter: blur(60px);
  animation: hue-shift 20s ease-in-out infinite reverse;
  pointer-events: none;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: -14%;
  background:
    radial-gradient(circle at 48% 18%, rgba(141, 99, 255, 0.2), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(109, 187, 255, 0.14), transparent 16%),
    radial-gradient(circle at 84% 70%, rgba(215, 125, 255, 0.16), transparent 16%);
  filter: blur(56px);
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
  animation: background-swell 26s ease-in-out infinite;
}

.page-shell {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 48px;
  z-index: 1;
}

.admin-tab {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 12;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 14px 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(15, 23, 38, 0.9), rgba(8, 14, 25, 0.84)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.admin-tab:hover {
  transform: translateY(-50%) translateX(-4px);
  border-color: rgba(109, 187, 255, 0.38);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  padding: 24px 20px 20px;
  z-index: 15;
  background:
    linear-gradient(180deg, rgba(12, 20, 35, 0.96), rgba(8, 14, 25, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -22px 0 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-drawer[data-open="true"] {
  transform: translateX(0);
}

.admin-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-drawer__head h3 {
  margin: 4px 0 0;
  font-size: 1.5rem;
}

.admin-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-drawer__close {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.admin-drawer__list {
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 187, 255, 0.72) rgba(255, 255, 255, 0.08);
}

.admin-toolbar {
  margin-bottom: 16px;
}

.filter-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(109, 187, 255, 0.08), rgba(215, 125, 255, 0.06));
}

.filter-box__label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-box__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-option {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.filter-option:hover {
  transform: translateY(-1px);
  border-color: rgba(109, 187, 255, 0.36);
  color: var(--text);
}

.filter-option.is-active {
  color: var(--text);
  background: rgba(109, 187, 255, 0.14);
  border-color: rgba(109, 187, 255, 0.38);
}

.admin-empty {
  margin: 0;
  padding: 16px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--muted);
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.entry-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(109, 187, 255, 0.08), rgba(215, 125, 255, 0.06));
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 187, 255, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.entry-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.entry-card__head span {
  color: var(--muted);
  font-size: 0.8rem;
}

.entry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.entry-card__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.entry-card__preview {
  margin: 0;
  color: rgba(243, 246, 255, 0.9);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.entry-card__like {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.entry-card__like:hover {
  transform: translateY(-1px);
  border-color: rgba(109, 187, 255, 0.36);
  background: rgba(109, 187, 255, 0.12);
}

.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.entry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.72);
  backdrop-filter: blur(8px);
}

.entry-modal__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 20, 35, 0.94), rgba(8, 14, 25, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.entry-modal[data-open="true"] .entry-modal__card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.entry-modal__close {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.entry-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.entry-modal__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.entry-modal__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.entry-modal__text {
  margin: 0;
  color: rgba(243, 246, 255, 0.92);
  line-height: 1.75;
  white-space: pre-wrap;
}

.admin-backdrop {
  position: fixed;
  inset: 0;
  z-index: 14;
  background: rgba(2, 7, 15, 0.48);
  backdrop-filter: blur(4px);
}

.single-column {
  display: block;
}

.panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 20, 35, 0.74), rgba(8, 14, 25, 0.58)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(120deg, transparent, rgba(141, 99, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 34%, transparent 76%, rgba(255, 255, 255, 0.025));
  opacity: 0.9;
  pointer-events: none;
}

.form-panel {
  position: relative;
  z-index: 1;
  --spot-x: 50%;
  --spot-y: 20%;
}

h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}
.chip span,
.toggle span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.form-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.form-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(120deg, transparent, rgba(141, 99, 255, 0.08), transparent 72%);
}

.form-panel::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 34%, transparent 76%, rgba(255, 255, 255, 0.025));
}

.section-head {
  margin-bottom: 10px;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.wide {
  grid-column: 1 / -1;
}

label > span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(245, 248, 255, 0.86);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 247, 255, 0.4);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
  transform: translateY(-1px);
  border-color: rgba(113, 231, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 6px rgba(113, 231, 255, 0.08);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0 16px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  --range-progress: 0%;
}

.range-shell {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(68, 81, 108, 0.32), rgba(45, 56, 78, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 18px rgba(16, 22, 34, 0.14);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #1e6df0 0%,
    #1e6df0 var(--range-progress),
    rgba(255, 255, 255, 0.88) var(--range-progress),
    rgba(255, 255, 255, 0.88) 100%
  );
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -11px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, #8d93a1, #707785);
  box-shadow:
    0 4px 14px rgba(16, 20, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #1e6df0;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, #8d93a1, #707785);
  box-shadow: 0 4px 14px rgba(16, 20, 32, 0.28);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip input,
.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip {
  position: relative;
  cursor: pointer;
}

.chip span,
.toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.chip input:checked + span {
  color: var(--text);
  background: rgba(141, 99, 255, 0.18);
  border-color: rgba(141, 99, 255, 0.34);
  transform: translateY(-1px);
}

.toggle {
  position: relative;
  cursor: pointer;
}

.toggle span {
  justify-content: flex-start;
  width: 100%;
  padding: 14px 18px;
  border-radius: 20px;
}

.toggle input:checked + span {
  color: var(--text);
  border-color: rgba(141, 99, 255, 0.34);
  background: rgba(141, 99, 255, 0.14);
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.meter {
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
}

.meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.14);
}

.meter-bar span {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a4dff, #c06fff);
  transition: width var(--ease);
  animation: meter-pulse 2.8s ease-in-out infinite;
}

.submit-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  border: 0;
  border-radius: 20px;
  padding: 0 24px;
  color: #06111f;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, #cba7ff, var(--cyan) 50%, var(--pink));
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(141, 99, 255, 0.24);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.submit-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 54px rgba(141, 99, 255, 0.34);
  filter: saturate(1.08);
}

.submit-button:active {
  transform: translateY(0);
}

.button-glow {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.34));
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 60%);
  transform: translateX(-140%);
  animation: button-sheen 4.4s ease-in-out infinite;
  pointer-events: none;
}

.submit-status {
  margin: 0;
  min-height: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.submit-status[data-tone="success"] {
  color: var(--mint);
}

.submit-status[data-tone="error"] {
  color: #ff9eb1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes hue-shift {
  0% {
    transform: translate3d(-4%, 1%, 0) scale(1);
  }
  50% {
    transform: translate3d(5%, -5%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(-4%, 1%, 0) scale(1);
  }
}

@keyframes background-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, -4%, 0) scale(1.12);
  }
}

@keyframes background-swell {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-3%, 3%, 0) scale(1.1);
  }
}

@keyframes meter-pulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.16) brightness(1.08);
  }
}

@keyframes button-sheen {
  0%,
  70%,
  100% {
    transform: translateX(-140%);
  }
  82% {
    transform: translateX(140%);
  }
}

@media (max-width: 980px) {
  .feedback-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 920px);
    padding-top: 16px;
    padding-bottom: 84px;
  }

  .admin-tab {
    top: auto;
    right: 14px;
    bottom: 16px;
    writing-mode: horizontal-tb;
    transform: none;
  }

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

  .form-panel {
    padding: 20px;
    border-radius: 26px;
  }

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

  .range-shell {
    min-height: 72px;
    padding: 8px 14px;
  }

  .filter-box {
    padding: 12px;
    border-radius: 18px;
  }

  .entry-modal__card {
    width: min(100vw - 16px, 680px);
    max-height: calc(100vh - 16px);
    padding: 18px;
    border-radius: 22px;
  }

  body::-webkit-scrollbar,
  .admin-drawer__list::-webkit-scrollbar {
    display: none;
  }

  html,
  .admin-drawer__list {
    scrollbar-width: none;
  }
}

@media (pointer: coarse) {
  .cursor-orb {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-orb {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
