/* ═══════════════════════════════════════════════════════════════
   «Я есть» — тёмная премиум-тема
   Космос · туманность · стекло · золото-шампань · свет наблюдателя
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-0: #07060b;
  --bg-1: #0d0b16;
  --ink: #efebf6;
  --ink-soft: #c8c3d6;
  --muted: #9a94ab;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --glass: rgba(19, 16, 30, 0.55);
  --glass-2: rgba(28, 24, 44, 0.5);
  --glass-brd: rgba(255, 255, 255, 0.10);
  --gold: #e7d0a0;
  --gold-deep: #c2a266;
  --violet: #9b8cff;
  --violet-deep: #6a5acd;
  --cyan: #7fd6e3;
  --silence: #aebbe6;
  --danger: #e98b8b;
  --radius: 14px;
  --radius-lg: 22px;
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --maxw: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-synthesis: none;
  overflow-x: hidden;
}

::selection { background: rgba(231, 208, 160, 0.28); color: var(--ink); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: #fff8ea; }

/* ── Космическая сцена (фон) ────────────────────────────────── */
.scene { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }

.scene .aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 50% at 22% 18%, rgba(106, 90, 205, 0.30), transparent 60%),
    radial-gradient(38% 44% at 82% 26%, rgba(127, 214, 227, 0.14), transparent 60%),
    radial-gradient(50% 55% at 70% 88%, rgba(194, 162, 102, 0.16), transparent 62%),
    radial-gradient(45% 50% at 28% 92%, rgba(155, 140, 255, 0.16), transparent 60%);
  filter: blur(40px);
  opacity: 0.85;
  animation: drift 26s ease-in-out infinite alternate;
}

.scene .stars {
  position: absolute; inset: -50%;
  background-image:
    radial-gradient(1.4px 1.4px at 50% 50%, rgba(255, 255, 255, 0.55) 50%, transparent 52%),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.35) 50%, transparent 52%),
    radial-gradient(1px 1px at 50% 50%, rgba(231, 208, 160, 0.35) 50%, transparent 52%);
  background-size: 170px 170px, 90px 90px, 260px 260px;
  background-position: 0 0, 40px 70px, 130px 30px;
  opacity: 0.5;
  animation: twinkle 7s ease-in-out infinite alternate;
}

/* зерно (плёночная фактура) */
.scene::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045; mix-blend-mode: overlay;
}

/* верхнее затемнение для читаемости */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, transparent 40%, rgba(7, 6, 11, 0.7) 100%);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}
@keyframes twinkle {
  0% { opacity: 0.35; }
  100% { opacity: 0.6; }
}

/* ── Каркас ─────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 30px 22px 80px; position: relative; }

.brand {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 34px; font-weight: 500;
}
.brand:hover { color: var(--gold); }
.brand-mark { width: 18px; height: 18px; flex: none; }

.foot {
  margin-top: 64px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-align: center;
}

/* ── Типографика ────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; }

h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.06; margin: 0 0 16px; }
h2 { font-size: clamp(22px, 3vw, 28px); line-height: 1.2; margin: 30px 0 14px; font-weight: 500; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px; font-weight: 600;
}
.kicker::before, .kicker::after { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep)); opacity: 0.7; }
.hero:not(.hero--home) .kicker::after { display: none; }

.lead { font-family: var(--serif); font-size: clamp(17px, 2.3vw, 21px); line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; font-weight: 400; }
.meta { font-size: 15px; color: var(--ink-soft); letter-spacing: 0.02em; }
.meta strong { color: var(--gold); font-weight: 600; }

.muted { color: var(--muted); }
.small { font-size: 13px; }
code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); padding: 2px 7px; border-radius: 7px; font-size: 13px; color: var(--gold); }

/* заголовок с золотым градиентом */
.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #d9d2e6 60%, #b9b2c8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Герой главной + портал ─────────────────────────────────── */
.hero { padding: 14px 0 28px; position: relative; }
.hero--home { text-align: center; padding-top: 70px; }
.hero--home .kicker { justify-content: center; }
.hero--home .lead { max-width: 540px; margin-left: auto; margin-right: auto; }

.portal {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 420px; aspect-ratio: 1 / 1; height: auto; z-index: -1; pointer-events: none;
  max-width: 90vw;
}
.portal .halo {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 140, 255, 0.22), rgba(231, 208, 160, 0.10) 45%, transparent 65%);
  filter: blur(24px);
  animation: pulse 7s ease-in-out infinite;
}
.portal .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(231, 208, 160, 0.18); }
.portal .r1 { inset: 14%; }
.portal .r2 { inset: 26%; border-color: rgba(155, 140, 255, 0.16); }
.portal .r3 { inset: 38%; border-color: rgba(255, 255, 255, 0.10); }
.portal .core {
  position: absolute; inset: 46%; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--gold) 45%, transparent 72%);
  box-shadow: 0 0 30px 6px rgba(231, 208, 160, 0.5), 0 0 70px 20px rgba(155, 140, 255, 0.25);
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* ── Карточки (стекло) ──────────────────────────────────────── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin: 18px 0;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(231, 208, 160, 0.07);
}
.card.center { text-align: center; }

.ticks { list-style: none; padding: 0; margin: 6px 0 0; }
.ticks li { position: relative; padding: 9px 0 9px 30px; color: var(--ink-soft); font-family: var(--serif); font-size: 17px; }
.ticks li::before {
  content: ''; position: absolute; left: 6px; top: 17px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px rgba(231, 208, 160, 0.6);
}

/* ── Кнопки ─────────────────────────────────────────────────── */
button, .button {
  display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  padding: 13px 28px; border: 0; border-radius: 12px; cursor: pointer; text-decoration: none;
  color: #1c1607;
  background: linear-gradient(180deg, #f3e3bf 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow: 0 10px 30px rgba(194, 162, 102, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.16s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
button:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(194, 162, 102, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5); color: #1c1607; }
button:active, .button:active { transform: translateY(0); }

button.ghost, .button.ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--ink);
  border: 1px solid var(--line-2); box-shadow: none;
  backdrop-filter: blur(6px);
}
button.ghost:hover, .button.ghost:hover { border-color: rgba(231, 208, 160, 0.5); color: #fff; box-shadow: 0 0 24px rgba(231, 208, 160, 0.12); }

/* ── Формы ──────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form input, .form textarea, .form select {
  font-family: var(--sans); font-size: 16px; color: var(--ink); letter-spacing: normal; text-transform: none;
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 12px;
  background: rgba(255, 255, 255, 0.035); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form select option { color: #111; }
.form input::placeholder, .form textarea::placeholder { color: #847f9c; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: rgba(231, 208, 160, 0.6); background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(231, 208, 160, 0.10);
}
.form textarea { resize: vertical; min-height: 88px; }
.inline { display: inline; margin: 0; }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; }

.flash { background: rgba(231, 208, 160, 0.12); border: 1px solid rgba(231, 208, 160, 0.25); color: var(--gold); padding: 11px 15px; border-radius: 11px; font-size: 14px; }
.flash.err { background: rgba(233, 139, 139, 0.12); border-color: rgba(233, 139, 139, 0.3); color: var(--danger); }

/* ── Список дней (кабинет) ──────────────────────────────────── */
.days { display: flex; flex-direction: column; gap: 11px; margin-top: 8px; }
.day {
  display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 15px; text-decoration: none; color: var(--ink);
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.14s ease, border-color 0.2s ease, box-shadow 0.25s ease, background 0.2s;
}
a.day:hover { transform: translateY(-2px); border-color: rgba(231, 208, 160, 0.45); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(231, 208, 160, 0.08); }
.day .n { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.day .t { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.day.locked { opacity: 0.8; }
.day.locked .t { color: var(--muted); }
.day.silence { border-color: rgba(174, 187, 230, 0.28); background: linear-gradient(180deg, rgba(174, 187, 230, 0.07), var(--glass)); }
.day.silence .n { color: var(--silence); }
.day.done .t { color: var(--muted); }
.badges { display: flex; gap: 7px; justify-self: end; align-items: center; }
.badge { font-size: 11px; padding: 3px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); color: var(--muted); letter-spacing: 0.04em; border: 1px solid var(--line); }
.badge.silence-badge { background: rgba(174, 187, 230, 0.14); color: var(--silence); border-color: rgba(174, 187, 230, 0.25); }
.badge.ok { background: rgba(231, 208, 160, 0.16); color: var(--gold); border-color: rgba(231, 208, 160, 0.3); }
.badge.lock { background: transparent; border: 0; }

/* ── Страница дня ───────────────────────────────────────────── */
.back { margin: 0 0 18px; }
.back a, .daynav a { font-size: 14px; color: var(--ink-soft); }
.back a:hover, .daynav a:hover { color: var(--gold); }

.day-view .hook { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.5vw, 22px); line-height: 1.55; color: var(--gold); margin: 0 0 26px; }
.day-view.silence .kicker { color: var(--silence); }
.day-view.silence .hook { color: var(--silence); }

.prose { font-family: var(--serif); font-size: 18.5px; line-height: 1.8; color: var(--ink-soft); }
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin: 8px 0; }
.prose.practice {
  background: linear-gradient(180deg, rgba(231, 208, 160, 0.07), rgba(231, 208, 160, 0.02));
  border: 1px solid rgba(231, 208, 160, 0.18); border-radius: 16px; padding: 20px 24px; font-size: 17px; color: var(--ink-soft);
}
/* буквица в первом абзаце разбора */
.day-view > .prose:first-of-type > p:first-child::first-letter {
  font-family: var(--display); font-size: 3.4em; line-height: 0.78; float: left;
  margin: 0.06em 0.1em 0 0; color: var(--gold); font-weight: 600;
}

.note { background: var(--glass-2); border: 1px solid var(--line); border-left: 2px solid var(--gold-deep); border-radius: 12px; padding: 16px 20px; margin: 26px 0; }
.note-title { margin: 0 0 7px; font-family: var(--sans); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); }
.note .prose { font-size: 15.5px; line-height: 1.65; }

.daynav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.daynav span:last-child { text-align: right; }
.done-label { color: var(--gold); font-size: 14px; font-weight: 600; }

/* ── Переписка с куратором ──────────────────────────────────── */
.threads { margin: 26px 0; }
.thread { border-left: 2px solid var(--line-2); padding: 4px 0 4px 16px; margin: 14px 0; }
.thread-you { margin: 0 0 8px; font-family: var(--serif); color: var(--ink); }
.thread-reply { margin: 0; background: rgba(231, 208, 160, 0.10); border: 1px solid rgba(231, 208, 160, 0.18); border-radius: 10px; padding: 10px 14px; color: var(--ink-soft); }
.thread-reply strong { color: var(--gold); }
.thread-wait { margin: 0; }

/* ── Админка ────────────────────────────────────────────────── */
.adm { width: 100%; border-collapse: collapse; font-size: 14px; }
.adm th { text-align: left; color: var(--muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 10px 12px; border-bottom: 1px solid var(--line-2); }
.adm td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; color: var(--ink-soft); }
.adm tr:hover td { background: rgba(255, 255, 255, 0.02); }

.pill { display: inline-block; font-size: 11px; padding: 3px 11px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); color: var(--muted); border: 1px solid var(--line); letter-spacing: 0.03em; }
.pill.running, .pill.active { background: rgba(231, 208, 160, 0.14); color: var(--gold); border-color: rgba(231, 208, 160, 0.28); }
.pill.open { background: rgba(155, 140, 255, 0.14); color: var(--violet); border-color: rgba(155, 140, 255, 0.28); }
.pill.completed { background: rgba(127, 214, 227, 0.12); color: var(--cyan); border-color: rgba(127, 214, 227, 0.25); }
.pill.finished, .pill.draft { background: rgba(255, 255, 255, 0.05); color: var(--muted); }
.pill.pending_payment { background: rgba(233, 196, 139, 0.10); color: #e0b56b; border-color: rgba(224, 181, 107, 0.25); }
.pill.refunded { background: rgba(233, 139, 139, 0.10); color: var(--danger); border-color: rgba(233, 139, 139, 0.25); }

.fb { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 13px; background: var(--glass); }
.fb.answered { opacity: 0.65; }
.fb-meta { margin: 0 0 7px; font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }
.fb-meta strong { color: var(--ink-soft); }
.fb-text { margin: 0 0 12px; font-family: var(--serif); color: var(--ink); }
.fb-reply { background: rgba(231, 208, 160, 0.10); border: 1px solid rgba(231, 208, 160, 0.18); border-radius: 10px; padding: 9px 13px; font-size: 14px; color: var(--ink-soft); }
.fb-reply strong { color: var(--gold); }

/* ── Появления и вход героя ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }

.hero--home .kicker, .hero--home h1, .hero--home .lead, .hero--home .meta { animation: rise 0.9s ease both; }
.hero--home h1 { animation-delay: 0.08s; }
.hero--home .lead { animation-delay: 0.16s; }
.hero--home .meta { animation-delay: 0.24s; }
.hero--home .portal { animation: portalIn 1.6s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes portalIn { from { opacity: 0; transform: translateX(-50%) scale(0.88); } to { opacity: 1; transform: translateX(-50%) scale(1); } }

/* ── Витрина курсов + цена со скидкой ───────────────────────── */
.courses { display: grid; gap: 18px; margin-top: 8px; }
.course-card {
  display: block; background: var(--glass); border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg); padding: 26px 28px; text-decoration: none; color: var(--ink);
  backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(231, 208, 160, 0.07);
  transition: border-color 0.18s, transform 0.06s, box-shadow 0.25s;
}
.course-card:hover { border-color: rgba(231, 208, 160, 0.4); transform: translateY(-2px); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(231, 208, 160, 0.12); }
.course-card h2 { margin: 4px 0 10px; font-size: clamp(24px, 4vw, 32px); }
.course-lead { font-family: var(--serif); color: var(--ink-soft); margin: 0 0 18px; max-width: 52ch; }
.course-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.course-meta { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.course-start { font-size: 14px; color: var(--ink-soft); }
.course-cta { color: var(--gold); font-weight: 600; font-size: 14px; }

.price-block { display: inline-flex; align-items: baseline; gap: 9px; }
.price { font-family: var(--display); font-size: 22px; color: var(--ink); font-weight: 600; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.badge-discount { font-size: 12px; font-weight: 600; color: #0c2a1f; background: linear-gradient(180deg, var(--gold), var(--gold-deep)); padding: 2px 8px; border-radius: 999px; }

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .container { padding: 22px 16px 64px; }
  .hero--home { padding-top: 48px; }
  .day { grid-template-columns: 70px 1fr; }
  .badges { grid-column: 1 / -1; justify-self: start; margin-top: 2px; }
  .daynav { grid-template-columns: 1fr; text-align: center; }
  .daynav span:last-child { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── QA-полировка: фокус, контраст, фолбэки, мобайл ─────────── */
:where(a, button, .button, .day, .brand):focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 10px;
}
.form input:focus-visible, .form textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

.hero.small { font-size: 1rem; }
.hero.small h1 { font-size: clamp(26px, 4vw, 38px); }

.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 18px; }

.manifesto { text-align: center; margin: 8px 0 28px; }
.manifesto .prose { text-align: left; max-width: 62ch; margin: 16px auto 0; }
.manifesto .prose p:last-child { color: var(--gold); font-family: var(--display); font-size: 20px; margin-top: 22px; }

.day-view h2 { display: flex; align-items: center; gap: 12px; }
.day-view h2::before { content: ''; width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold-deep), transparent); flex: none; }

.prose { max-width: 68ch; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(231, 208, 160, 0.5); }
.flash { margin: 18px 0; }
.badge.lock { color: var(--muted); }

.daynav button.ghost { border-color: rgba(231, 208, 160, 0.35); box-shadow: 0 0 20px rgba(231, 208, 160, 0.10); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.adm { min-width: 480px; }
.adm td { overflow-wrap: anywhere; }
code { word-break: break-all; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .card { background: rgba(13, 11, 22, 0.93); }
  .day { background: rgba(13, 11, 22, 0.9); }
  button.ghost, .ghost { background: rgba(255, 255, 255, 0.08); }
}

@media (forced-colors: active) {
  .card, .day, .note, button, .button, .form input, .form textarea { border: 1px solid CanvasText; }
}

@media (max-width: 560px) {
  .aurora, .stars, .portal .halo, .portal .core { animation: none; }
  .portal { width: 300px; }
}
