#toasts {
	position: fixed;
	right: 10px;
	top: 5px;
	z-index: 1001;
	position: fixed;
	right: 16px;
	top: 16px;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: calc(100vw - 32px);
	pointer-events: none;
}
#toasts > * {
	background-color: #000A;
	border-radius: 10px;
	clear: both;
	color: white;
	cursor: zoom-out;
	float: right;
	margin-top: 5px;
	padding: 3px 6px;
	background: var(--surface-strong);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid var(--border-glass);
	border-left: 3px solid var(--accent);
	border-radius: var(--radius-md);
	color: var(--text);
	cursor: pointer;
	pointer-events: auto;
	padding: 12px 18px;
	font-size: .92rem;
	box-shadow: var(--shadow-card);
	min-width: 220px;
	max-width: 360px;
	animation: fade-up .25s ease both;
}
.about-wrap {
	max-width: 880px;
	margin: 0 auto;
	padding: 40px 0 80px;
}
.about-wrap h1 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin: 18px 0;
}
.lead {
	color: var(--text-muted);
	font-size: 1.15rem;
	max-width: 620px;
	margin-bottom: 36px;
}
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	margin-bottom: 36px;
}
.about-card {
	padding: 26px;
}
.about-card h2 {
	font-size: 1.15rem;
	color: var(--accent);
	margin: 0 0 8px;
}
.about-card p margin {
	0; color: var(--text);
}
.about-back {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.activity-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	justify-content: center;
	max-width: 820px;
	margin: 24px auto;
}
.activity {
	position: relative;
	cursor: pointer;
	user-select: none;
	display: block;
	min-width: 0;
	text-align: center;
}
.activity input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.ball {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	color: var(--text);
	transition: transform .2s ease;
	position: relative;
	text-decoration: none;
	text-align: center;
}
.ball svg,
.ball img
{
	width: 100%;
	aspect-ratio: 1;
	border-radius: 22px;
	display: block;
	object-fit: contain;
	box-shadow: var(--shadow-soft);
	transition: box-shadow .25s ease;
}
.ball svg {
	background: linear-gradient(135deg, var(--c, var(--accent)), rgba(255,255,255,.04));
	border: 1px solid var(--border-glass);
	padding: 32px;
	color: var(--text);
}
.activity:hover .ball {
	transform: translateY(-3px);
}
.activity:hover .ball img,
.activity:hover .ball svg
{
	box-shadow: var(--shadow-card), 0 0 28px var(--c, var(--accent-glow));
	outline: 2px solid var(--c, var(--accent));
}
.is-select .ball {
	opacity: .55;
}
.activity input:checked + .ball {
	opacity: 1;
	transform: translateY(-2px);
}
.activity input:checked + .ball img,
.activity input:checked + .ball svg
{
	box-shadow: var(--shadow-card), 0 0 32px var(--c, var(--accent-glow));
	outline: 2px solid var(--c, var(--accent));
}
.title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .01em;
	color: var(--text);
	text-align: center;
}
.count {
	position: absolute;
	top: 8px;
	right: 8px;
	background: var(--accent);
	color: #1A0F00;
	font-size: .75rem;
	font-weight: 800;
	padding: 2px 9px;
	border-radius: var(--radius-pill);
	min-width: 22px;
	text-align: center;
}
[hidden] {
	display: none !important;
}
:root {
	--font-display: 'Space Grotesk', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--bg-deep: #07091A;
	--bg-mid: #11142B;
	--bg-glow: radial-gradient(ellipse at top left, #1B1F4A 0%, #0A0D24 45%, #07091A 100%);
	--surface: rgba(255,255,255,.04);
	--surface-strong: rgba(255,255,255,.08);
	--surface-hover: rgba(255,255,255,.12);
	--border-glass: rgba(255,255,255,.12);
	--border-strong: rgba(255,255,255,.2);
	--text: #EEF2FA;
	--text-muted: #9AA3BD;
	--text-dim: #6B748E;
	--accent: #FFC76B;
	--accent-strong: #FFB23A;
	--accent-cool: #6CC0FF;
	--accent-glow: rgba(255,199,107,.35);
	--danger: #FF6B6B;
	--success: #6BE39E;
	--shadow-card: 0 18px 48px rgba(0,0,0,.45);
	--shadow-soft: 0 8px 22px rgba(0,0,0,.25);
	--shadow-glow: 0 0 40px rgba(255,199,107,.18);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;
}
@font-face {
	font-family: Inter;
	src: url(/fonts/Inter.ttf) format('truetype');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url(/fonts/SpaceGrotesk-500.ttf) format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url(/fonts/SpaceGrotesk-600.ttf) format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url(/fonts/SpaceGrotesk-700.ttf) format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
* {
	box-sizing: border-box;
	scrollbar-width: thin;
	scrollbar-color: var(--accent) var(--bg-deep);
}
*::-webkit-scrollbar width {
	10px; height: 10px;
}
*::-webkit-scrollbar-track {
	background: var(--bg-deep);
}
*::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: var(--radius-pill);
	border: 2px solid var(--bg-deep);
}
html,
body
{
	margin: 0;
	padding: 0;
	min-height: 100%;
}
body {
	background: var(--bg-deep);
	background-image: var(--bg-glow);
	background-attachment: fixed;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
h1,
h2,
h3,
h4
{
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -.01em;
	margin: 0 0 .6em;
	color: var(--text);
}
h1 font-size {
	clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.1;
}
h2 {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
h3 {
	font-size: 1.25rem;
}
p {
	margin: 0 0 1em;
}
small color {
	--text-muted; font-size: .85rem;
}
a {
	color: var(--accent);
	text-decoration: none;
	transition: color .15s ease;
}
a:hover {
	color: var(--accent-strong);
}
hr {
	border: 0;
	border-top: 1px solid var(--border-glass);
	margin: 16px 0;
}
button font-family {
	inherit; font-size: inherit;
}
img max-width {
	100%; display: block;
}
select {
	color-scheme: dark;
}
option {
	background: var(--bg-mid);
	color: var(--text);
}
.field {
	display: block;
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.field__label {
	display: block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 6px;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
	display: block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 10px;
}
.field > input,
.field > select,
.field > textarea
{
	width: 100%;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: 1rem;
	padding: 12px 14px;
	transition: border-color .15s ease, background .15s ease;
}
.field > input:focus,
.field > select:focus,
.field > textarea:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
select:-webkit-autofill,
textarea:-webkit-autofill
{
	-webkit-box-shadow: 0 0 0 1000px #1A1F35 inset;
	-webkit-text-fill-color: var(--text);
	caret-color: var(--text);
	transition: background-color 9999s ease-in-out 0s;
}
.phlo-dialog {
	background: var(--bg-mid);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	color: var(--text);
	font-family: inherit;
	padding: 24px;
	max-width: 420px;
	width: calc(100% - 32px);
	margin: auto;
}
.phlo-dialog::backdrop {
	background: rgba(7, 9, 26, .7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.phlo-dialog form {
	margin: 0;
}
.phlo-dialog__message {
	font-size: 1.05rem;
	line-height: 1.45;
	margin: 0 0 18px;
	color: var(--text);
}
.phlo-dialog__input {
	width: 100%;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: 1rem;
	padding: 12px 14px;
	margin-bottom: 18px;
	transition: border-color .15s ease, background .15s ease;
}
.phlo-dialog__input:focus {
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.phlo-dialog__actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.phlo-dialog__actions button {
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-pill);
	color: var(--text);
	font-family: inherit;
	font-size: .95rem;
	font-weight: 600;
	padding: 10px 20px;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.phlo-dialog__actions button:hover {
	background: var(--surface-hover);
	border-color: var(--accent);
}
.phlo-dialog__actions button[value="1"] {
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	border-color: transparent;
	color: #1A0F00;
}
.phlo-dialog__actions button[value="1"]:hover {
	filter: brightness(1.05);
	color: #1A0F00;
}
.listing__title img,
.listing__title svg
{
	width: 28px;
	height: 28px;
	border-radius: 8px;
	object-fit: contain;
	flex-shrink: 0;
}
.glass {
	background: var(--surface);
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}
.glass::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
	pointer-events: none;
}
main.center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 70vh;
	padding: 24px;
	text-align: center;
}
.notfound h1 {
	font-size: clamp(4rem, 12vw, 8rem);
	background: linear-gradient(120deg, var(--accent), var(--accent-cool));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: .2em;
}
.notfound section padding {
	40px clamp(24px, 6vw, 60px); max-width: 460px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #1A0F00;
	font-weight: 700;
	font-family: var(--font-body);
	border: 0;
	border-radius: var(--radius-pill);
	padding: 12px 22px;
	cursor: pointer;
	text-decoration: none;
	font-size: .95rem;
	transition: transform .15s ease, box-shadow .2s ease, filter .15s ease;
	box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.btn:hover {
	color: #1A0F00;
	transform: translateY(-1px);
	box-shadow: var(--shadow-glow), var(--shadow-soft), 0 0 0 1px rgba(255,255,255,.18) inset;
	filter: brightness(1.05);
}
.btn:active {
	transform: translateY(0);
}
.btn--ghost {
	background: var(--surface-strong);
	color: var(--text);
	border: 1px solid var(--border-glass);
	box-shadow: none;
}
.btn--ghost:hover {
	color: var(--text);
	background: var(--surface-hover);
	border-color: var(--border-strong);
	transform: translateY(-1px);
	box-shadow: var(--shadow-soft);
	filter: none;
}
.btn--outline {
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
	box-shadow: none;
}
.btn--outline:hover {
	background: var(--accent-glow);
	color: var(--accent-strong);
	transform: translateY(-1px);
	box-shadow: none;
	filter: none;
}
.btn--sm padding {
	8px 14px; font-size: .85rem;
}
.btn--lg padding {
	16px 28px; font-size: 1.05rem;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--surface-strong);
	color: var(--accent);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-pill);
	padding: 6px 14px;
	font-size: .8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all .15s ease;
}
.chip:hover {
	background: var(--surface-hover);
	color: var(--accent-strong);
	border-color: var(--border-strong);
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--surface-strong);
	color: var(--text-muted);
	border-radius: var(--radius-pill);
	padding: 3px 10px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.badge.soon {
	color: var(--accent);
	background: rgba(255,199,107,.08);
	border: 1px solid rgba(255,199,107,.3);
	cursor: pointer;
}
.badge.soon::after {
	content: 'soon';
	margin-left: 4px;
	color: var(--text-dim);
	font-weight: 500;
}
.badge.pro {
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #1A0F00;
	animation: pulse-glow 2.4s ease-in-out infinite;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.section {
	padding: clamp(40px, 7vw, 96px) 0;
}
.muted {
	color: var(--text-muted);
}
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: .1s;
}
.reveal-delay-2 {
	transition-delay: .2s;
}
.reveal-delay-3 {
	transition-delay: .3s;
}
#toasts > *:hover {
	border-left-color: var(--accent-strong);
}
.feedback-cta {
	margin: 48px auto 0;
	max-width: 720px;
	padding: 22px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.feedback-cta p {
	margin: 0;
	color: var(--text-muted);
}
::view-transition-old(root) {
	animation: 160ms ease-out vt-fade-out both;
}
::view-transition-new(root) {
	animation: 220ms ease-out vt-fade-in both;
}
.assistant {
	padding-bottom: 24px;
}
.assistant__panel {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
	margin: 16px 0;
	min-height: calc(100vh - 180px);
}
.assistant__messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow-y: auto;
}
.assistant__msg {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: .95rem;
	line-height: 1.5;
}
.assistant__msg--user {
	background: var(--c, var(--accent));
	color: #07091A;
	align-self: flex-end;
}
.assistant__msg--system {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	align-self: flex-start;
}
.assistant__msg--system .assistant__hints {
	font-size: .8rem;
	margin-top: 6px;
}
.assistant__msg p {
	margin: 0;
}
.assistant__msg + .assistant__msg {
	margin-top: 0;
}
.assistant__records {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 12px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.assistant__records h4 {
	margin: 0 0 4px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.assistant__record {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: .85rem;
}
.assistant__record strong {
	color: var(--c, var(--accent));
	margin-right: 8px;
}
.assistant__record span {
	color: var(--text-muted);
	font-size: .78rem;
}
.assistant__record-edit {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.assistant__record-head {
	color: var(--c, var(--accent));
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.assistant__record-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 6px 10px;
}
.assistant__record-field {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.assistant__record-field span {
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.assistant__record-field input {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 6px;
	color: var(--text);
	font-size: .85rem;
	padding: 5px 8px;
	min-width: 0;
}
.assistant__record-field input:focus {
	outline: none;
	border-color: var(--c, var(--accent));
	background: rgba(255,255,255,.06);
}
.assistant__live {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 8px 0;
}
.assistant__meter {
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	height: 4px;
	overflow: hidden;
}
.assistant__meter-fill {
	background: var(--c, var(--accent));
	height: 100%;
	width: 0%;
	transition: width 80ms linear;
}
.assistant__live-text {
	color: var(--text-muted);
	font-size: .85rem;
	font-style: italic;
	min-height: 1.4em;
	margin: 0;
}
.assistant__loading {
	display: flex;
	gap: 5px;
	padding: 8px 14px;
	align-items: center;
}
.assistant__loading-dot {
	width: 9px;
	height: 9px;
	background: var(--c, var(--accent));
	border-radius: 50%;
	animation: assistantTyping 1.4s infinite ease-in-out both;
}
.assistant__compose {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: nowrap;
}
.btn--icon {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	color: var(--text);
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	padding: 0;
	transition: all .15s ease;
	position: relative;
}
.btn--icon:hover {
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.2);
	color: var(--text);
}
.btn--icon.btn--accent {
	background: linear-gradient(135deg, var(--c, var(--accent)), var(--accent-strong));
	border: 0;
	color: #07091A;
	font-weight: 700;
}
.btn--icon.btn--accent:hover {
	color: #07091A;
	filter: brightness(1.05);
}
.assistant__mic .assistant__mic-dot {
	display: none;
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
	animation: assistantBlink 1.2s infinite;
}
.assistant__mic.is-recording {
	background: #dc2626;
	border-color: #dc2626;
}
.assistant__mic.is-recording .assistant__mic-icon {
	display: none;
}
.assistant__mic.is-recording .assistant__mic-dot {
	display: block;
}
.assistant__photo {
	display: inline-flex;
}
.assistant__text {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	color: var(--text);
	flex: 1;
	font-size: .9rem;
	min-width: 0;
	padding: 0 16px;
	height: 40px;
}
.assistant__text::placeholder {
	color: var(--text-muted);
}
.assistant__text:focus {
	outline: none;
	border-color: var(--c, var(--accent));
	background: rgba(255,255,255,.05);
}
.assistant__commit {
	margin-left: auto;
	height: 40px;
	padding: 0 18px;
	flex-shrink: 0;
}
.assistant-upgrade {
	padding: 24px;
	margin: 24px 0 60px;
}
.assistant-upgrade h2 {
	margin: 0 0 8px;
}
.billing-notice {
	margin: 24px 0 0;
	padding: 14px 18px;
}
.billing-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin: 24px 0 60px;
}
.billing-tier {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.billing-tier__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.billing-tier h3 {
	margin: 0;
	font-size: 1.15rem;
}
.billing-tier__badge {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 999px;
	background: #6FE2DE;
	color: #07091A;
}
.billing-tier__chip {
	background: rgba(255, 255, 255, 0.08);
	color: #94a3b8;
}
.billing-tier__price {
	font-size: 2rem;
	margin: 0;
	line-height: 1;
}
.billing-tier__features {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1.7;
	font-size: 0.95rem;
}
.billing-tier__features li::before {
	content: '\2713';
	color: #6FE2DE;
	margin-right: 8px;
}
.billing-tier__until {
	font-size: 0.8rem;
	margin: 0;
}
.billing-tier form {
	margin-top: auto;
}
.change-card {
	padding: 18px 20px;
	margin: 24px 0 80px;
}
.create-defaults {
	margin: 24px 0 14px;
	padding: 18px 20px;
}
.add-rows {
	padding: 18px 20px;
	margin-bottom: 80px;
}
.empty-rows {
	padding: 30px;
	text-align: center;
}
.defaults-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px 16px;
	align-items: end;
}
.defaults-grid input,
.defaults-grid select
{
	width: 100%;
	min-width: 0;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: .92rem;
	padding: 9px 11px;
	transition: border-color .15s ease, background .15s ease;
}
.defaults-grid input:focus,
.defaults-grid select:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.count-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFC76B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6l4 4 4-4'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 14px;
	padding-right: 32px;
	cursor: pointer;
}
.feedback-card {
	padding: 24px;
	margin: 24px 0 60px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.feedback-card .field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.feedback-card .field__label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.feedback-card input,
.feedback-card select,
.feedback-card textarea
{
	width: 100%;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: 1rem;
	padding: 10px 12px;
}
.feedback-card textarea {
	resize: vertical;
	min-height: 160px;
	line-height: 1.45;
}
.feedback-card input:focus,
.feedback-card select:focus,
.feedback-card textarea:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.feedback-thanks {
	padding: 48px 24px;
	margin: 40px auto 60px;
	max-width: 560px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}
.feedback-thanks__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #1A0F00;
	font-size: 2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feedback-thanks h2 {
	margin: 0;
}
.feedback-thanks p {
	margin: 0;
}
.feedback-thanks__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 12px;
}
.site-footer {
	border-top: 1px solid var(--border-glass);
	margin-top: 80px;
	padding: 32px 0 48px;
	background: rgba(0,0,0,.18);
}
.site-footer__inner {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 320px;
}
.site-footer__brand a {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text);
	font-size: 1.1rem;
}
.site-footer__brand i {
	color: var(--accent);
	font-style: normal;
	font-weight: 500;
}
.site-footer__nav {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.site-footer__nav a {
	color: var(--text-muted);
	font-size: .9rem;
}
.site-footer__nav a:hover {
	color: var(--accent);
}
.lang-switch {
	display: flex;
	gap: 6px;
}
.lang-link {
	color: var(--text-muted);
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	border: 1px solid var(--border-glass);
	background: var(--surface-strong);
	transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.lang-link:hover {
	color: var(--accent);
	background: var(--surface-hover);
	border-color: var(--border-strong);
}
.lang-link.is-active {
	color: var(--accent);
	border-color: var(--accent);
	background: rgba(255,199,107,.1);
}
.entries-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.entry {
	position: relative;
	padding: 20px 22px 22px;
	background: var(--surface);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	transition: border-color .15s ease, background .15s ease;
}
.entry:hover {
	border-color: rgba(255,199,107,.25);
}
.entry__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--border-glass);
}
.entry__num {
	color: var(--accent);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
}
.entry__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px 20px;
	align-items: end;
}
.entry .field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}
.entry .field__label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.entry input,
.entry select,
.entry textarea
{
	width: 100%;
	min-width: 0;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: 1rem;
	padding: 12px 14px;
	transition: border-color .15s ease, background .15s ease;
}
.entry textarea {
	resize: vertical;
	min-height: 80px;
	line-height: 1.45;
}
.entry .field--notes {
	grid-column: 1 / -1;
}
.entry input[list] {
	padding-right: 32px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFC76B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6l4 4 4-4'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 14px;
	cursor: pointer;
}
.entry input:focus,
.entry select:focus,
.entry textarea:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.entry input[type=number] {
	font-variant-numeric: tabular-nums;
}
.entry .field.wide {
	grid-column: 1 / -1;
}
.with-suffix {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.with-suffix input {
	flex: 1;
	min-width: 0;
}
.suffix {
	color: var(--text-muted);
	font-size: .8rem;
	font-style: normal;
	pointer-events: none;
	white-space: nowrap;
}
.row__footer {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 18px 4px 0;
	margin-top: 14px;
	border-top: 1px solid var(--border-glass);
	align-items: center;
}
.app__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1180px;
	margin: 0 auto;
	padding: 8px 16px;
	gap: 8px;
	flex-wrap: nowrap;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.app__nav {
	display: flex;
	gap: 6px;
	flex-wrap: nowrap;
	flex-shrink: 0;
}
.app__nav-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}
.app__nav-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.brand {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--text);
	letter-spacing: -.02em;
}
.brand i {
	color: var(--accent);
	font-style: normal;
	font-weight: 500;
}
.app__header nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.heading {
	text-align: center;
	margin: 24px auto 8px;
	max-width: 720px;
}
.heading h1,
.heading h2
{
	margin-bottom: 8px;
}
.landing {
	padding: 0;
}
.hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background: ;
	z-index: -1;
}
.hero__content padding {
	80px 24px; position: relative;
}
.hero__brand {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--accent);
	letter-spacing: .04em;
	margin-bottom: 14px;
}
.hero__brand i {
	color: var(--text);
	font-style: normal;
	font-weight: 500;
}
.hero__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.6rem, 6vw, 4.8rem);
	line-height: 1.05;
	letter-spacing: -.02em;
	margin: 0 0 18px;
}
.hero__title span {
	display: block;
}
.text-accent {
	background: linear-gradient(120deg, var(--accent) 0%, var(--accent-cool) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero__sub {
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	color: var(--text-muted);
	max-width: 640px;
	margin-bottom: 28px;
}
.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.usp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}
.usp {
	padding: 26px;
}
.usp h3 {
	font-size: 1.15rem;
	margin-bottom: 6px;
	color: var(--accent);
}
.usp p margin {
	0; color: var(--text-muted);
}
.home-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: 18px;
	margin: 28px auto 24px;
	max-width: 760px;
}
.home-card {
	padding: 0;
	transition: transform .25s ease, border-color .15s ease;
	overflow: hidden;
}
.home-card:hover {
	transform: translateY(-2px);
	border-color: var(--c, var(--accent));
}
.home-card__link {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	color: inherit;
}
.home-card__link:hover {
	color: inherit;
}
.home-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
}
.home-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--c, var(--accent)) 30%, transparent);
	flex-shrink: 0;
	overflow: hidden;
}
.home-card__icon svg {
	width: 28px;
	height: 28px;
	color: #1A0F00;
	background: var(--c, var(--accent));
	padding: 12px;
	border-radius: 14px;
}
.home-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.home-card__count {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--c, var(--accent));
	line-height: 1;
}
.home-card__empty {
	color: var(--text-muted);
	font-size: .9rem;
	margin: 0;
}
.home-card__chart {
	display: block;
	margin: -4px 0 -2px;
}
.home-card__chart svg {
	width: 100%;
	height: 38px;
}
.home-card__insights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.home-card__insights li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	padding: 4px 0;
	border-top: 1px dashed rgba(255,255,255,.06);
}
.home-card__insights li:first-child {
	border-top: 0;
}
.home-card__insights strong {
	color: var(--text);
	font-weight: 600;
	font-size: .92rem;
	text-align: right;
}
.home-add {
	display: flex;
	justify-content: center;
	margin: 12px 0 80px;
}
.empty-card {
	padding: 40px;
	text-align: center;
}
.empty-card p {
	margin-bottom: 16px;
	color: var(--text-muted);
}
.hero--discipline .hero__bg {
	background: ;
}
.hero__icon {
	width: 128px;
	height: 128px;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	overflow: hidden;
	border: 2px solid var(--c, var(--accent));
	box-shadow: 0 24px 48px color-mix(in srgb, var(--c, var(--accent)) 45%, transparent), 0 0 32px color-mix(in srgb, var(--c, var(--accent)) 35%, transparent);
}
.hero__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.bullets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}
.bullet {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bullet__num {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--c, var(--accent));
	font-size: 1.6rem;
}
.bullet p margin {
	0; color: var(--text);
}
.section--cta {
	text-align: center;
	background: radial-gradient(600px 400px at center, rgba(255,199,107,.08), transparent 70%);
}
.center-block {
	max-width: 640px;
	margin: 0 auto;
}
.app--bare {
	padding-top: 8px;
}
.listing-layout {
	display: grid;
	grid-template-columns: minmax(0, max-content) 320px;
	gap: 16px;
	margin: 8px auto 40px;
	padding: 0 16px;
	align-items: start;
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
}
.listing-card {
	min-width: 0;
	padding: 0;
	overflow: visible;
}
.listing-scroll {
	overflow-x: auto;
	overflow-y: clip;
	border-radius: inherit;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}
.listing tr.hide {
	display: none;
}
.listing {
	width: 100%;
	border-collapse: collapse;
}
.listing th {
	background: linear-gradient(180deg, var(--bg-mid), rgba(11,15,38,.95));
	color: var(--c, var(--accent));
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--border-glass);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
}
.listing tbody tr {
	transition: background .15s ease;
}
.listing tbody tr:hover {
	background: var(--surface-hover);
	cursor: pointer;
}
.listing tbody tr#listingNext:hover {
	background: transparent;
	cursor: default;
}
.listing td {
	padding: 10px 14px;
	border-top: 1px solid var(--border-glass);
	color: var(--text);
	font-size: .94rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
}
.listing th.wide,
.listing td.wide
{
	max-width: 320px;
}
.listing th.right,
.listing td.right,
.listing th.center,
.listing td.center
{
	max-width: 90px;
}
.listing th.num,
.listing td.num
{
	max-width: 90px;
	padding-left: 10px;
	padding-right: 10px;
}
.listing td.right {
	text-align: right;
}
.listing td.center {
	text-align: center;
}
.listing .cell-bool {
	font-size: 1.05rem;
}
.listing .cell-bool.is-on {
	color: var(--accent);
	font-weight: 700;
}
.listing .cell-bool.is-off {
	color: var(--text-dim);
}
.listing td.num {
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
	text-align: right;
}
.listing th.num {
	text-align: right;
}
.listing tr.year-row td {
	background: rgba(255,255,255,.03);
	color: var(--c, var(--accent));
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .04em;
	padding: 10px 16px;
}
.year-label {
	margin-right: 10px;
}
.year-count {
	color: var(--text-muted);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}
.year-count::before {
	content: '(';
}
.year-count::after {
	content: ')';
}
.listing td.empty {
	text-align: center;
	color: var(--text-muted);
	padding: 40px 16px;
	white-space: normal;
}
.listing td.loading {
	text-align: center;
	padding: 24px;
	background: transparent;
}
.spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,199,107,.25);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: spin .8s linear infinite;
}
.auth {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80vh;
	padding: 40px 20px;
}
.auth__panel {
	width: 100%;
	max-width: 440px;
	padding: 28px;
}
.auth__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}
.auth__header strong {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
}
.auth__panel .btn width {
	100%; margin-top: 8px;
}
.auth__alt {
	text-align: center;
	color: var(--text-muted);
	font-size: .9rem;
	margin: 12px 0 0;
}
.app-error {
	background: rgba(255,107,107,.12);
	border: 1px solid rgba(255,107,107,.4);
	color: var(--danger);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: .9rem;
	margin: 6px 0;
}
.app-notice {
	background: rgba(107,227,158,.12);
	border: 1px solid rgba(107,227,158,.4);
	color: var(--success);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: .9rem;
	margin: 6px 0;
}
.onboarding {
	max-width: 760px;
	margin: 0 auto;
	padding: 24px 0 80px;
}
.steps {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 24px;
}
.step {
	padding: 28px;
	position: relative;
	overflow: visible;
}
.step h2 {
	font-size: 1.3rem;
	margin: 0 0 6px;
}
.step__num {
	position: absolute;
	top: -18px;
	left: 24px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #1A0F00;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: var(--shadow-soft);
}
.step__cta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}
.auth__panel--wide {
	max-width: 720px;
}
.grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}
.field-group {
	margin: 18px 0;
}
.settings-card {
	padding: 24px;
	margin: 24px 0;
}
.settings-card h3 {
	margin-top: 0;
	color: var(--accent);
}
.settings-collapsibles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px;
	margin: 24px 0;
}
.fields-collapse {
	border-top: 1px solid var(--border-glass);
}
.fields-collapse:first-of-type {
	border-top: 0;
}
.fields-collapse summary {
	padding: 10px 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: .92rem;
}
.fields-collapse summary::-webkit-details-marker {
	display: none;
}
.fields-collapse summary::after {
	content: "+";
	color: var(--text-dim);
	font-size: 1.1rem;
	font-weight: 300;
	transition: transform .2s ease;
}
.fields-collapse[open] summary::after {
	transform: rotate(45deg);
}
.summary-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.summary-title img,
.summary-title svg
{
	width: 22px;
	height: 22px;
	border-radius: 6px;
	object-fit: contain;
	flex-shrink: 0;
}
.disc-prefs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px 14px;
	padding: 6px 0 10px;
}
.disc-prefs .field input,
.disc-prefs .field select
{
	width: 100%;
	min-width: 0;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: .9rem;
	padding: 7px 10px;
}
.disc-prefs .field input:focus,
.disc-prefs .field select:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.disc-fields-label {
	display: block;
	margin: 8px 0 4px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .68rem;
}
.fields-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 4px 12px;
	padding: 4px 0 12px;
}
.field-check {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 3px 0;
	color: var(--text-muted);
	font-size: .85rem;
}
.field-check:hover {
	color: var(--text);
}
.field-check input {
	width: 14px;
	height: 14px;
	accent-color: var(--accent);
	cursor: pointer;
	flex-shrink: 0;
}
.field-check input:checked + span {
	color: var(--text);
}
.settings-collapse {
	padding: 0;
}
.settings-collapse summary {
	padding: 14px 20px;
	cursor: pointer;
	font-weight: 600;
	color: var(--text-muted);
	font-size: .92rem;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.settings-collapse summary::-webkit-details-marker {
	display: none;
}
.settings-collapse summary::after {
	content: "+";
	color: var(--text-muted);
	font-size: 1.2rem;
	font-weight: 400;
	transition: transform .2s ease;
}
.settings-collapse[open] summary::after {
	transform: rotate(45deg);
}
.settings-collapse[open] summary {
	border-bottom: 1px dashed var(--border-glass);
	color: var(--text);
}
.settings-collapse[open] form,
.settings-collapse[open] > p,
.settings-collapse[open] > button
{
	margin: 16px 20px;
}
.settings-collapse[open] form {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.delete-hint {
	margin: 28px 0 40px;
	text-align: center;
	font-size: .82rem;
	color: var(--text-dim);
}
.delete-hint a {
	color: var(--text-muted);
}
.sidebar {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 16px;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
}
.sidebar__top {
	display: flex;
	gap: 10px;
	align-items: center;
}
.sidebar__top .sidebar-toggle {
	flex: 1;
	min-width: 0;
}
.sidebar__round {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	line-height: 1;
	flex-shrink: 0;
}
.sidebar__round svg {
	width: 16px;
	height: 16px;
}
.back-arrow {
	font-size: 1.2rem;
	line-height: 1;
}
.sidebar__add {
	background: linear-gradient(135deg, var(--c, var(--accent)), var(--accent-strong));
	color: #1A0F00;
	font-weight: 700;
	font-size: 1.4rem;
}
.sidebar__add:hover {
	color: #1A0F00;
}
.assistant--aside {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}
.assistant--aside .assistant__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.assistant--aside .assistant__head .chip {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	border-radius: 999px;
}
.assistant--aside .assistant__messages {
	background: rgba(255,255,255,.02);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 8px;
	max-height: 180px;
	overflow-y: auto;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style: none;
	margin: 0;
}
.assistant--aside .assistant__panel-top {
	display: none;
	align-items: center;
	justify-content: space-between;
	display: none;
}
.assistant--aside .assistant__close {
	background: transparent;
	border: 0;
	color: var(--text-muted);
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	padding: 0 4px;
	display: block;
}
.assistant--aside:has(.assistant__messages:not([hidden])) .assistant__panel-top {
	display: flex;
}
.assistant--aside .assistant__messages:empty::before {
	content: '';
}
.assistant--aside .assistant__msg {
	font-size: .8rem;
	padding: 6px 10px;
	border-radius: 10px;
	max-width: 90%;
}
.assistant--aside .assistant__msg--user {
	background: var(--c, var(--accent));
	color: #07091A;
	align-self: flex-end;
}
.assistant--aside .assistant__msg--assistant {
	background: rgba(255,255,255,.05);
	align-self: flex-start;
}
.assistant--aside .assistant__compose {
	display: flex;
	gap: 4px;
	align-items: center;
}
.assistant--aside .btn--icon {
	width: 32px;
	height: 32px;
	font-size: .9rem;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	cursor: pointer;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0;
}
.assistant--aside .btn--icon.btn--accent {
	background: linear-gradient(135deg, var(--c, var(--accent)), var(--accent-strong));
	border: 0;
	color: #07091A;
	font-weight: 700;
}
.assistant--aside .assistant__mic.is-recording {
	background: #dc2626;
	border-color: #dc2626;
}
.assistant--aside .assistant__mic.is-recording .assistant__mic-icon {
	display: none;
}
.assistant--aside .assistant__mic .assistant__mic-dot {
	display: none;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
}
.assistant--aside .assistant__mic.is-recording .assistant__mic-dot {
	display: block;
}
.assistant--aside .assistant__text {
	flex: 1;
	height: 32px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	padding: 0 12px;
	color: var(--text);
	font-size: .85rem;
	min-width: 0;
}
.assistant--aside .assistant__text:focus {
	outline: none;
	border-color: var(--c, var(--accent));
}
.assistant--aside .assistant__loading {
	display: flex;
	gap: 4px;
	padding: 4px;
}
.assistant--aside .assistant__loading-dot {
	width: 6px;
	height: 6px;
	background: var(--c, var(--accent));
	border-radius: 50%;
	animation: assistantPulse 1.2s infinite ease-in-out;
}
.assistant--aside .assistant__live {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.assistant--aside .assistant__meter {
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	height: 3px;
	overflow: hidden;
}
.assistant--aside .assistant__meter-fill {
	background: var(--c, var(--accent));
	height: 100%;
	width: 0%;
	transition: width 80ms linear;
}
.assistant--aside .assistant__live-text {
	font-size: .75rem;
	font-style: italic;
	color: var(--text-muted);
	min-height: 1em;
	margin: 0;
}
.assistant--aside .assistant__records {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 8px;
	padding: 6px 8px;
	font-size: .75rem;
	max-height: 120px;
	overflow-y: auto;
}
.sidebar-toggle {
	all: unset;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	min-width: 0;
}
.sidebar__chevron {
	display: none;
	color: var(--text-muted);
	transition: transform .2s ease;
	flex-shrink: 0;
}
.sidebar__body {
	display: contents;
}
.sidebar__filters {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sidebar__filters input,
.sidebar__filters select
{
	width: 100%;
	background: var(--surface-strong);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: inherit;
	font-size: .9rem;
	padding: 8px 10px;
}
.sidebar__filters input:focus,
.sidebar__filters select:focus
{
	outline: none;
	border-color: var(--accent);
	background: var(--surface-hover);
}
.sidebar__head {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.sidebar__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--c, var(--accent)) 25%, transparent);
	overflow: hidden;
	flex-shrink: 0;
}
.sidebar__icon svg {
	width: 26px;
	height: 26px;
	color: #1A0F00;
	background: var(--c, var(--accent));
	padding: 8px;
	border-radius: 12px;
}
.sidebar__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sidebar__head small {
	font-size: .68rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	display: block;
}
.sidebar__count {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
	line-height: 1.1;
}
.sidebar__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidebar__chart {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 6px 0;
}
.sidebar__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.sidebar__actions .btn {
	flex: 1;
	text-align: center;
	min-width: 110px;
}
@media (max-width: 720px){
	.activity-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}
	.change-card {
		padding: 12px 12px;
		margin: 12px 0 60px;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}
	.create-defaults {
		margin: 12px 0 10px;
		padding: 12px 12px;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}
	.add-rows {
		padding: 12px 12px;
		margin-bottom: 60px;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}
	.defaults-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 8px 10px;
	}
	.defaults-grid input,
	.defaults-grid select
	{
		padding: 7px 9px;
		font-size: .88rem;
	}
	.entries-list {
		gap: 6px;
	}
	.entry {
		padding: 8px 10px 10px;
	}
	.entry__head {
		margin: 0 0 6px;
		padding: 0;
		border: 0;
	}
	.entry__num {
		font-size: .85rem;
	}
	.entry__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px 8px;
	}
	.entry .field {
		gap: 2px;
	}
	.entry .field__label {
		font-size: .6rem;
		letter-spacing: .08em;
	}
	.entry input,
	.entry select
	{
		padding: 6px 8px;
		font-size: .88rem;
		border-radius: 6px;
	}
	.entry input[list] {
		padding-right: 22px;
		background-size: 10px;
		background-position: right 6px center;
	}
	.with-suffix {
		gap: 4px;
	}
	.suffix {
		font-size: .7rem;
	}
	.entry .field.wide {
		grid-column: 1 / -1;
	}
	.row__footer {
		padding: 8px 0 0;
		margin-top: 6px;
	}
	.listing th {
		padding: 9px 10px;
		font-size: .65rem;
	}
	.listing td {
		padding: 8px 10px;
		max-width: 200px;
		font-size: .88rem;
	}
}
@media (max-width: 480px){
	.activity-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@keyframes pulse-glow{
	0%,
	100%
	{
		box-shadow: 0 0 0 0 rgba(255,199,107,.5);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(255,199,107,0);
	}
}
@media (prefers-reduced-motion: reduce){
	* animation-duration {
		.01ms !important; transition-duration: .01ms !important;
	}
	.reveal opacity {
		1; transform: none;
	}
}
@media (max-width: 600px){
	#toasts {
		right: 12px;
		left: 12px;
		max-width: calc(100vw - 24px);
	}
	#toasts > * {
		min-width: 0;
		max-width: none;
	}
	.site-footer__inner {
		flex-direction: column;
	}
	.app__header {
		padding: 6px 10px;
		gap: 6px;
	}
	.app__nav-item {
		padding: 6px 10px;
	}
	.app__nav-label {
		display: none;
	}
}
@keyframes vt-fade-in{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes vt-fade-out{
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes assistantTyping{
	0%,
	80%,
	100% { transform
	{
		scale(0); opacity: .25 };
	}
	40% { transform {
		scale(1); opacity: 1 };
	}
}
@media (max-width: 1000px){
	.listing-layout {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0;
		margin: 0 0 40px;
		width: 100%;
		max-width: 100%;
	}
	.listing-layout .sidebar {
		order: -1;
		margin: 0 12px;
	}
	.listing-card {
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}
	.sidebar__actions--desktop {
		display: none;
	}
	.sidebar {
		position: static;
		padding: 12px 16px;
		gap: 10px;
		max-height: none;
		overflow: visible;
	}
	.sidebar__chevron {
		display: block;
	}
	.sidebar.is-open .sidebar__chevron {
		transform: rotate(180deg);
	}
	.sidebar__body {
		display: none;
	}
	.sidebar.is-open .sidebar__body {
		display: contents;
	}
	.sidebar__icon {
		width: 36px;
		height: 36px;
	}
	.sidebar__icon svg {
		width: 22px;
		height: 22px;
	}
	.sidebar__count {
		font-size: 1.3rem;
	}
}
@keyframes spin{
	to {
		transform: rotate(360deg);
	}
}
