/* ============================================================
   Vegasino — panel.css
   TYPO-09 · SPACE-09 · CONT-06 · BP-03 · GEO-02 · MOTION-06
   ============================================================ */

/* ---- tokens ---- */
:root {
	--theme-radius-circle: 50%;
	--theme-main-color: #0a2342;
	--theme-accent-color: #f4bc1f;
	--theme-accent-active: #dab10b;
	--theme-surface: #0c182b;
	--theme-surface-2: #14273f;
	--theme-foreground: #ffffff;
	--theme-text-muted: #c0c0c0;
	--theme-gradient-from: #e8403f;
	--theme-gradient-to: #1996d4;
	--theme-warning-bg: #dc2626;

	--theme-font-heading: "Playfair Display", Georgia, serif;
	--theme-font-base: "Source Sans 3", system-ui, sans-serif;

	--theme-size-h1: 52px;
	--theme-text-h2: 32px;
	--theme-fs-h3: 24px;
	--theme-type-h4: 19px;
	--theme-size-h5: 16px;
	--theme-text-h6: 14px;
	--theme-type-body: 17px;
	--theme-fs-small: 14px;
	--theme-text-xs: 12px;

	--theme-lh-tight: 1.15;
	--theme-lh-base: 1.55;
	--theme-line-loose: 1.7;
	--theme-ls-wide: 0.02em;

	--theme-fw-normal: 400;
	--theme-fw-medium: 500;
	--theme-fw-bold: 700;

	--theme-gap-2xs: 2px;
	--theme-spacing-xs: 6px;
	--theme-gutter-sm: 10px;
	--theme-spacing-md: 16px;
	--theme-spacing-lg: 48px;
	--theme-gutter-xl: 80px;
	--theme-gap-2xl: 128px;
	--theme-space-3xl: 200px;

	--theme-content-width: 1140px;
	--theme-readable-width: 640px;
	--theme-container-narrow: 720px;
	--theme-edge-mobile: 12px;
	--theme-edge-desktop: 32px;

	--theme-corner-xs: 4px;
	--theme-radius-sm: 8px;
	--theme-rounded-md: 12px;
	--theme-corner-lg: 20px;
	--theme-pill: 9999px;
	--theme-depth-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
	--theme-shade-md: 0 6px 18px rgba(0, 0, 0, 0.12);
	--theme-shade-lg: 0 12px 32px rgba(0, 0, 0, 0.16);

	--theme-speed-fast: 120ms;
	--theme-duration-base: 180ms;
	--theme-easing: cubic-bezier(0.3, 0.7, 0.4, 1);

	--theme-inner-max: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop));
}

/* ---- reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--theme-font-base);
	font-size: var(--theme-type-body);
	font-weight: var(--theme-fw-normal);
	line-height: var(--theme-lh-base);
	color: var(--theme-foreground);
	background: var(--theme-surface);
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: var(--theme-lh-tight); }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--theme-accent-color); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- a11y ---- */
.skip-link {
	position: absolute;
	left: var(--theme-spacing-md);
	top: -200px;
	z-index: 200;
	background: var(--theme-accent-color);
	color: var(--theme-surface);
	padding: var(--theme-gutter-sm) var(--theme-spacing-md);
	border-radius: var(--theme-radius-sm);
	font-family: var(--theme-font-base);
	font-weight: var(--theme-fw-bold);
}
.skip-link:focus { top: var(--theme-spacing-md); }
.skip-link:not(:focus) { top: -200px !important; }
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; }
}

/* generic section inner */
.f99-inner, .j97-inner, .w12-inner, .x98-inner, .p13-inner, .b22-inner,
.h76-inner, .d59-inner, .t12-inner, .t09-inner, .l68-inner, .k25-inner,
.k05-inner, .h26-inner, .y77-inner {
	max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop));
	margin-inline: auto;
	padding-inline: var(--theme-edge-desktop);
	width: 100%;
}

/* ============================================================
   HEADER — HEAD-09 Big Hero-Integrated · STICKY-03 · NAV-01 · AUTH-BOTH
   ============================================================ */
.f99 {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--theme-surface);
	transition: background var(--theme-duration-base) var(--theme-easing);
}
.f99-inner {
	display: flex;
	align-items: center;
	gap: var(--theme-spacing-md);
	padding-block: var(--theme-gutter-sm);
}
.f99-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.f99-logo-img { height: 88px; width: auto; flex-shrink: 0; display: block; }
.f99-nav { margin-inline-start: auto; }
.f99-nav-list { display: flex; flex-wrap: nowrap; gap: var(--theme-spacing-md); align-items: center; }
.f99-nav-item { list-style: none; }
.f99-nav-link {
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-medium);
	font-size: var(--theme-text-h6);
	color: var(--theme-text-muted);
	white-space: nowrap;
}
.f99-nav-link:hover { color: var(--theme-foreground); }
.f99-nav-link[aria-current="page"] { color: var(--theme-accent-color); }
.f99-auth { display: flex; gap: var(--theme-gutter-sm); flex-shrink: 0; }
.f99-auth-btn {
	white-space: nowrap;
	flex-shrink: 0;
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-fs-small);
	letter-spacing: var(--theme-ls-wide);
	padding: 9px var(--theme-spacing-md);
	border-radius: var(--theme-rounded-md);
	display: inline-flex;
	align-items: center;
}
.f99-auth-btn--theme-login {
	background: transparent;
	border: 1px solid var(--theme-foreground);
	color: var(--theme-foreground);
}
.f99-auth-btn--theme-login:hover { background: var(--theme-foreground); color: var(--theme-surface); text-decoration: none; }
.f99-auth-btn--theme-register {
	background: var(--theme-accent-color);
	border: 1px solid var(--theme-accent-color);
	color: var(--theme-surface);
}
.f99-auth-btn--theme-register:hover { background: var(--theme-accent-active); color: var(--theme-surface); text-decoration: none; }
.f99-toggle {
	display: none;
	margin-left: auto !important;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.f99-toggle-bar { display: block; width: 24px; height: 2px; background: var(--theme-foreground); }
.f99-drawer { display: none; }
.f99-drawer.is-open {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--theme-surface-2);
	box-shadow: var(--theme-shade-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.f99-drawer-nav { padding: var(--theme-spacing-md) var(--theme-edge-mobile); }
.f99-drawer-auth { display: flex; gap: var(--theme-gutter-sm); margin-bottom: var(--theme-spacing-md); }
.f99-drawer-list { display: flex; flex-direction: column; }
.f99-drawer-item { list-style: none; }
.f99-drawer-link {
	display: block;
	padding: var(--theme-gutter-sm) 0;
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-medium);
	font-size: var(--theme-size-h5);
	color: var(--theme-foreground);
}
.f99-drawer-link[aria-current="page"] { color: var(--theme-accent-color); }

/* collapse desktop nav → burger below the site container width (wide logo needs room) */
@media (max-width: 1239px) {
	.f99-nav, .f99-auth { display: none; }
	.f99-toggle { display: flex; }
}

/* home: transparent header over hero */
body[data-current="/"] .f99 { background: transparent; position: absolute; }
body[data-current="/"] .f99.is-blurred {
	background: rgba(12, 24, 43, 0.9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	position: fixed;
	left: 0;
	right: 0;
}

/* ============================================================
   HERO — HERO-03 Centered Compact
   ============================================================ */
.j97 {
	padding-block: var(--theme-space-3xl) var(--theme-spacing-lg);
	background:
		linear-gradient(180deg, rgba(12, 24, 43, 0.55), rgba(12, 24, 43, 0.9)),
		radial-gradient(120% 90% at 50% 0%, rgba(25, 150, 212, 0.22), transparent 60%),
		var(--theme-surface);
	text-align: center;
}
.j97-inner { display: flex; flex-direction: column; align-items: center; gap: var(--theme-spacing-md); }
.j97-tagline {
	font-size: var(--theme-text-xs);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	color: var(--theme-accent-color);
	font-weight: var(--theme-fw-bold);
}
.j97 h1 {
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-size-h1);
	line-height: var(--theme-lh-tight);
	color: var(--theme-foreground);
	max-width: 900px;
}
.j97-subtitle {
	font-size: var(--theme-type-body);
	line-height: var(--theme-line-loose);
	color: var(--theme-text-muted);
	max-width: var(--theme-container-narrow);
}
.j97-cta {
	display: inline-block;
	margin-block: var(--theme-gutter-sm);
	padding: 17px var(--theme-gap-2xl);
	background: var(--theme-accent-color);
	color: var(--theme-surface);
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	border-radius: var(--theme-pill);
	box-shadow: var(--theme-shade-md);
}
.j97-cta:hover { background: var(--theme-accent-active); color: var(--theme-surface); text-decoration: none; box-shadow: var(--theme-shade-lg); }
.j97-disclaimer { font-size: var(--theme-text-xs); color: var(--theme-text-muted); max-width: 480px; }

/* ============================================================
   BREADCRUMBS — BREAD-03 Chevron Editorial
   ============================================================ */
.h26 { padding-block: var(--theme-spacing-md); background: var(--theme-surface); }
.h26-list { display: flex; flex-wrap: wrap; align-items: center; }
.h26-item { font-size: var(--theme-fs-small); display: inline-flex; align-items: center; }
.h26-item:not(:last-child)::after {
	content: "\203A";
	color: var(--theme-accent-color);
	opacity: 0.7;
	margin-inline: var(--theme-spacing-xs);
}
.h26-link { color: var(--theme-text-muted); }
.h26-link:hover { color: var(--theme-foreground); }
.h26-current { color: var(--theme-foreground); }

/* ============================================================
   PAGE HEADER — PHEAD-01
   ============================================================ */
.w12 { padding-block: var(--theme-spacing-lg); background: var(--theme-surface); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.w12-inner { display: flex; flex-direction: column; gap: var(--theme-spacing-md); }
.w12-eyebrow {
	font-weight: var(--theme-fw-medium);
	font-size: var(--theme-fs-small);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	color: var(--theme-accent-color);
}
.w12-title {
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-size-h1);
	line-height: var(--theme-lh-tight);
	color: var(--theme-foreground);
	max-width: 920px;
}
.w12-divider { width: 60px; height: 2px; background: var(--theme-accent-color); }
.w12-description { font-size: var(--theme-size-h5); line-height: var(--theme-lh-base); color: var(--theme-text-muted); max-width: var(--theme-container-narrow); }

/* ============================================================
   INLINE CTA — INLINE-CTA-03
   ============================================================ */
.p83 { padding-block: var(--theme-spacing-md); text-align: center; }
.p83-line { font-size: var(--theme-text-h6); line-height: var(--theme-lh-base); }
.p83-line strong { color: var(--theme-foreground); font-weight: var(--theme-fw-bold); }
.p83-link { color: var(--theme-accent-color); text-decoration: underline; }
.p83-link:hover { color: var(--theme-accent-active); text-decoration-thickness: 2px; }

/* ============================================================
   PROSE — PROSE-05 Wide Tech Documentation
   ============================================================ */
.d59 { padding-block: var(--theme-spacing-lg); }
.d59-body { max-width: var(--theme-readable-width); }
.d59-body h2 {
	font-family: var(--theme-font-base);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-fs-h3);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	color: var(--theme-foreground);
	margin-block-start: var(--theme-spacing-lg);
	margin-block-end: var(--theme-spacing-md);
	position: relative;
	padding-top: var(--theme-gutter-sm);
}
.d59-body h2::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--theme-accent-color); }
.d59-body h2:first-child { margin-block-start: 0; }
.d59-body p { font-size: var(--theme-type-body); line-height: var(--theme-lh-base); color: var(--theme-text-muted); margin-bottom: var(--theme-spacing-md); }
.d59-body a { color: var(--theme-accent-color); text-decoration: underline; }
.d59-figure { margin: var(--theme-spacing-md) 0 0; }
.d59-figure-img { width: 100%; height: auto; border-radius: var(--theme-rounded-md); }

/* ============================================================
   ITEMS GRID — GRID-11 Mixed Block Sizes
   ============================================================ */
.x98 { padding-block: var(--theme-spacing-lg); }
.x98-head { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-text-h2); color: var(--theme-foreground); margin-bottom: var(--theme-spacing-lg); }
.x98-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--theme-spacing-md); }
.x98-card {
	grid-column: span 2;
	background: var(--theme-surface-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--theme-corner-lg);
	box-shadow: var(--theme-shade-md);
	padding: var(--theme-spacing-md);
}
.x98-card:first-child { grid-column: span 4; grid-row: span 2; }
.x98-card:nth-child(4) { grid-column: span 4; }
.x98-card-title { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-type-h4); color: var(--theme-foreground); margin-bottom: var(--theme-gutter-sm); }
.x98-card:first-child .x98-card-title { font-size: var(--theme-text-h2); }
.x98-card-text { font-size: var(--theme-fs-small); line-height: var(--theme-lh-base); color: var(--theme-text-muted); }

/* ============================================================
   DATA TABLE — TABLE-04 Highlighted First Column
   ============================================================ */
.t12 { padding-block: var(--theme-spacing-lg); }
.t12-head { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-text-h2); color: var(--theme-foreground); margin-bottom: var(--theme-spacing-lg); }
.t12-wrap { overflow-x: auto; border-radius: var(--theme-rounded-md); }
.t12-table { width: 100%; border-collapse: collapse; font-size: var(--theme-fs-small); min-width: 520px; }
.t12-table thead th { background: var(--theme-main-color); color: var(--theme-foreground); text-align: left; padding: var(--theme-spacing-md); font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); }
.t12-table thead th:not(:first-child) { background: var(--theme-main-color); box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.2); }
.t12-table tbody th {
	background: var(--theme-main-color);
	color: var(--theme-foreground);
	font-weight: var(--theme-fw-bold);
	padding: var(--theme-spacing-md);
	border-right: 4px solid var(--theme-accent-color);
	text-align: left;
}
.t12-table tbody td { color: var(--theme-text-muted); padding: var(--theme-spacing-md); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.t12-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }

/* ============================================================
   REVIEWS — REV-09 Magazine Pull-Quote
   ============================================================ */
.b22 { padding-block: var(--theme-spacing-lg); }
.b22-head { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-text-h2); color: var(--theme-foreground); text-align: center; margin-bottom: var(--theme-spacing-lg); }
.b22-item { padding-block: var(--theme-spacing-lg); margin: 0; text-align: center; }
.b22-quote {
	font-family: var(--theme-font-heading);
	font-style: italic;
	font-size: var(--theme-fs-h3);
	line-height: var(--theme-lh-tight);
	color: var(--theme-foreground);
	max-width: var(--theme-container-narrow);
	margin: 0 auto var(--theme-spacing-md);
}
.b22-attr { font-size: var(--theme-fs-small); letter-spacing: var(--theme-ls-wide); text-transform: uppercase; color: var(--theme-text-muted); }
.b22-rating { color: var(--theme-accent-color); margin-inline-start: var(--theme-gutter-sm); }
.b22-sep { width: 80px; height: 1px; border: 0; background: rgba(255, 255, 255, 0.15); margin: 0 auto; }

/* ============================================================
   FAQ — FAQ-10 Sidebar Two-Column (always open)
   ============================================================ */
.p13 { padding-block: var(--theme-spacing-lg); }
.p13-inner { display: grid; grid-template-columns: 40% 60%; gap: var(--theme-spacing-lg); }
.p13-aside { position: sticky; top: var(--theme-gutter-xl); align-self: start; padding: var(--theme-spacing-lg); background: var(--theme-surface-2); border-radius: var(--theme-corner-lg); }
.p13-aside-title { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-text-h2); color: var(--theme-foreground); margin-bottom: var(--theme-spacing-md); }
.p13-aside-text { font-size: var(--theme-type-body); color: var(--theme-text-muted); line-height: var(--theme-lh-base); }
.p13-list { display: flex; flex-direction: column; gap: var(--theme-gutter-xl); }
.p13-item { }
.p13-q { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-type-h4); color: var(--theme-foreground); margin-bottom: var(--theme-gutter-sm); }
.p13-a { font-size: var(--theme-type-body); line-height: var(--theme-lh-base); color: var(--theme-text-muted); }

/* ============================================================
   CTA BLOCK — CTA-06 Sticky Bottom Banner
   ============================================================ */
.h76 {
	position: sticky;
	bottom: 0;
	z-index: 90;
	width: 100%;
	background: var(--theme-accent-color);
	box-shadow: var(--theme-shade-lg);
}
.h76-inner { display: flex; align-items: center; gap: var(--theme-spacing-md); padding-block: var(--theme-gutter-sm); }
.h76-title { font-size: var(--theme-type-body); font-weight: var(--theme-fw-bold); color: var(--theme-surface); flex: 1; }
.h76-btn {
	background: var(--theme-surface);
	color: var(--theme-foreground);
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-fs-small);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	padding: var(--theme-gutter-sm) var(--theme-spacing-lg);
	border-radius: var(--theme-pill);
	white-space: nowrap;
}
.h76-btn:hover { background: var(--theme-main-color); color: var(--theme-foreground); text-decoration: none; }
.h76-close { background: transparent; border: 0; color: var(--theme-surface); font-size: 24px; line-height: 1; cursor: pointer; padding: 0 var(--theme-spacing-xs); }
.h76.is-hidden { display: none; }

/* ============================================================
   AUTHOR BYLINE — BYLINE-02 Card Block
   ============================================================ */
.l46 { padding-block: var(--theme-spacing-lg); }
.l46-card {
	max-width: var(--theme-container-narrow);
	margin-inline: auto;
	display: flex;
	gap: var(--theme-spacing-md);
	padding: var(--theme-spacing-lg);
	background: var(--theme-surface-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--theme-rounded-md);
}
.l46-body { display: flex; flex-direction: column; }
.l46-portrait { flex-shrink: 0; }
.l46-portrait-img { width: 64px; height: 64px; border-radius: var(--theme-radius-circle); object-fit: cover; object-position: center top; }
.l46-label { font-size: var(--theme-text-xs); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); color: var(--theme-text-muted); }
.l46-name { font-size: var(--theme-type-h4); font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); margin-block: var(--theme-gap-2xs); }
.l46-name a { color: var(--theme-foreground); }
.l46-role { font-size: var(--theme-fs-small); color: var(--theme-text-muted); }
.l46-bio { font-size: var(--theme-type-body); line-height: var(--theme-lh-base); color: var(--theme-text-muted); margin-block: var(--theme-gutter-sm); }
.l46-link { color: var(--theme-accent-color); font-size: var(--theme-fs-small); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); }

/* ============================================================
   AUTHOR CARD — AUTH-08 Minimal + articles list
   ============================================================ */
.k25 { padding-block: var(--theme-spacing-lg); }
.k25-head { display: flex; align-items: center; gap: var(--theme-spacing-md); }
.k25-id { display: flex; flex-direction: column; gap: var(--theme-gap-2xs); }
.k25-avatar-img { width: 96px; height: 96px; border-radius: var(--theme-radius-circle); object-fit: cover; object-position: center top; }
.k25-name { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-fs-h3); color: var(--theme-foreground); }
.k25-role { font-size: var(--theme-fs-small); color: var(--theme-text-muted); }
.k25-articles { padding-block: var(--theme-spacing-lg) 0; }
.k25-articles-heading { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-type-h4); color: var(--theme-foreground); margin-bottom: var(--theme-spacing-md); }
.k25-articles-list { display: flex; flex-direction: column; gap: var(--theme-spacing-xs); }
.k25-articles-item { font-size: var(--theme-type-body); line-height: var(--theme-lh-base); }
.k25-articles-link { color: var(--theme-accent-color); text-decoration: underline; }
.k25-articles-link:hover { color: var(--theme-accent-active); }

/* ============================================================
   CONTACT FORM — FORM-01 Stacked Standard
   ============================================================ */
.l68 { padding-block: var(--theme-spacing-lg); }
.l68-intro { font-size: var(--theme-type-body); line-height: var(--theme-line-loose); color: var(--theme-text-muted); margin-block-end: var(--theme-spacing-lg); max-width: var(--theme-readable-width); }
.l68-success { display: none; padding: var(--theme-spacing-md); background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--theme-foreground); border-radius: var(--theme-radius-sm); margin-bottom: var(--theme-spacing-md); }
.l68-success.is-visible { display: block; }
.l68-form { display: flex; flex-direction: column; gap: var(--theme-spacing-md); background: var(--theme-surface-2); padding: var(--theme-spacing-lg); border-radius: var(--theme-rounded-md); box-shadow: var(--theme-depth-sm); max-width: var(--theme-container-narrow); }
.l68-field { display: flex; flex-direction: column; gap: var(--theme-spacing-xs); }
.l68-label { font-weight: var(--theme-fw-medium); font-size: var(--theme-fs-small); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); color: var(--theme-foreground); }
.l68-input, .l68-textarea {
	font-family: var(--theme-font-base);
	font-size: var(--theme-type-body);
	color: var(--theme-foreground);
	background: var(--theme-surface);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--theme-rounded-md);
	padding: var(--theme-gutter-sm) var(--theme-spacing-md);
}
.l68-input { height: 48px; }
.l68-textarea { min-height: 120px; resize: vertical; }
.l68-input:focus, .l68-textarea:focus { outline: none; border-color: var(--theme-accent-color); }
.l68-submit {
	align-self: flex-start;
	height: 48px;
	padding-inline: var(--theme-gutter-xl);
	background: var(--theme-accent-color);
	color: var(--theme-surface);
	border: 0;
	font-family: var(--theme-font-heading);
	font-weight: var(--theme-fw-bold);
	font-size: var(--theme-type-body);
	text-transform: uppercase;
	letter-spacing: var(--theme-ls-wide);
	border-radius: var(--theme-rounded-md);
	cursor: pointer;
}
.l68-submit:hover { background: var(--theme-accent-active); color: var(--theme-surface); }

/* ============================================================
   LEGAL — LEGAL-06 Compact Multi-Page
   ============================================================ */
.t09 { padding-block: var(--theme-spacing-lg); }
.t09-body { max-width: var(--theme-readable-width); counter-reset: sec; }
.t09-intro { font-size: var(--theme-type-body); line-height: var(--theme-lh-base); color: var(--theme-text-muted); margin-bottom: var(--theme-spacing-md); }
.t09-sec { margin-block: var(--theme-spacing-md); }
.t09-sec-title { font-size: var(--theme-type-h4); font-family: var(--theme-font-base); font-weight: var(--theme-fw-bold); color: var(--theme-foreground); margin-bottom: var(--theme-gutter-sm); }
.t09-sec-title::before { counter-increment: sec; content: "\A7 " counter(sec) ". "; color: var(--theme-accent-color); }
.t09-p { font-size: var(--theme-fs-small); line-height: var(--theme-lh-base); color: var(--theme-text-muted); margin-bottom: var(--theme-gutter-sm); }
.t09-contacts { display: flex; flex-direction: column; gap: var(--theme-spacing-xs); margin-block: var(--theme-spacing-md); }
.t09-contacts-item { font-size: var(--theme-fs-small); color: var(--theme-text-muted); padding-left: var(--theme-spacing-md); position: relative; }
.t09-contacts-item::before { content: "\2022"; position: absolute; left: 0; color: var(--theme-accent-color); }
.t09-disclaimer { font-size: var(--theme-fs-small); color: var(--theme-text-muted); font-style: italic; margin-top: var(--theme-spacing-md); padding-top: var(--theme-spacing-md); border-top: 1px solid rgba(255, 255, 255, 0.08); }

/* ============================================================
   ERROR — ERR-05 Glitch / Cyber
   ============================================================ */
.k05 { padding-block: var(--theme-space-3xl); text-align: center; }
.k05-inner { display: flex; flex-direction: column; align-items: center; gap: var(--theme-spacing-md); }
.k05-title { position: relative; color: var(--theme-foreground); font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: 96px; line-height: 1; }
.k05-title::before, .k05-title::after { content: attr(data-text); position: absolute; inset: 0; opacity: 0.55; }
.k05-title::before { transform: translate(3px, -3px); color: var(--theme-gradient-to); }
.k05-title::after { transform: translate(-3px, 3px); color: var(--theme-gradient-from); }
.k05-text { font-size: var(--theme-size-h5); color: var(--theme-text-muted); max-width: var(--theme-container-narrow); }
.k05-btn { margin-top: var(--theme-gutter-sm); background: var(--theme-accent-color); color: var(--theme-surface); font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); padding: var(--theme-gutter-sm) var(--theme-gutter-xl); border-radius: var(--theme-rounded-md); }
.k05-btn:hover { background: var(--theme-accent-active); color: var(--theme-surface); text-decoration: none; }

/* ============================================================
   COOKIE — COOK-03 Corner Card
   ============================================================ */
.k86 { position: fixed; inset-block-end: var(--theme-spacing-md); inset-inline-end: var(--theme-spacing-md); z-index: 95; width: 360px; max-width: calc(100vw - 2 * var(--theme-spacing-md)); }
.k86.is-hidden { display: none; }
.k86-card { background: var(--theme-surface-2); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--theme-corner-lg); padding: var(--theme-spacing-lg); box-shadow: var(--theme-shade-lg); display: flex; flex-direction: column; gap: var(--theme-spacing-md); }
.k86-title { font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); font-size: var(--theme-size-h5); text-transform: uppercase; color: var(--theme-accent-color); }
.k86-msg { font-size: var(--theme-fs-small); line-height: var(--theme-lh-base); color: var(--theme-text-muted); }
.k86-actions { display: flex; gap: var(--theme-gutter-sm); }
.k86-btn { flex: 1; height: 40px; border: 0; border-radius: var(--theme-rounded-md); font-family: var(--theme-font-base); font-weight: var(--theme-fw-bold); font-size: var(--theme-fs-small); cursor: pointer; }
.k86-btn--theme-accept { background: var(--theme-accent-color); color: var(--theme-surface); }
.k86-btn--theme-accept:hover { background: var(--theme-accent-active); }
.k86-btn--theme-decline { background: transparent; border: 1px solid rgba(255, 255, 255, 0.25); color: var(--theme-foreground); }
.k86-btn--theme-decline:hover { border-color: var(--theme-foreground); }

/* ============================================================
   FOOTER — FOOT-06 Manifesto
   ============================================================ */
.y77 { background: var(--theme-surface); padding-block: var(--theme-space-3xl); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.y77-manifesto { text-align: center; }
.y77-statement { font-size: var(--theme-text-h2); font-family: var(--theme-font-heading); font-weight: var(--theme-fw-bold); color: var(--theme-foreground); max-width: var(--theme-container-narrow); margin: 0 auto var(--theme-spacing-md); }
.y77-cta { font-family: var(--theme-font-heading); font-size: var(--theme-size-h5); text-transform: uppercase; letter-spacing: var(--theme-ls-wide); color: var(--theme-accent-color); text-decoration: underline; }
.y77-cta:hover { color: var(--theme-foreground); }
.y77-divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin-block: var(--theme-gutter-xl); }
.y77-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--theme-spacing-lg); flex-wrap: wrap; }
.y77-logo { flex-shrink: 0; }
.y77-logo-img { height: 72px; width: auto; }
.y77-nav, .y77-legal { display: flex; flex-direction: column; gap: var(--theme-gutter-sm); }
.y77-nav-link, .y77-legal-link { font-size: var(--theme-fs-small); color: var(--theme-text-muted); }
.y77-nav-link:hover, .y77-legal-link:hover { color: var(--theme-foreground); }
.y77-copyright { font-size: var(--theme-text-xs); color: var(--theme-text-muted); flex-basis: 100%; margin-top: var(--theme-spacing-md); }

/* ============================================================
   MOBILE — BP-03 (md 900px)
   ============================================================ */
@media (max-width: 900px) {
	:root { --theme-size-h1: 30px; --theme-text-h2: 24px; --theme-fs-h3: 20px; --theme-type-h4: 17px; --theme-size-h5: 15px; --theme-type-body: 16px; --theme-fs-small: 13px; --theme-text-xs: 11px; }
	.f99-inner { padding-inline: var(--theme-edge-mobile); }
	.f99-logo-img { height: 60px; }
	.f99-inner, .j97-inner, .w12-inner, .x98-inner, .p13-inner, .b22-inner,
	.h76-inner, .d59-inner, .t12-inner, .t09-inner, .l68-inner, .k25-inner,
	.k05-inner, .h26-inner, .y77-inner { padding-inline: var(--theme-edge-mobile); }
	.x98-grid { grid-template-columns: 1fr; }
	.x98-card, .x98-card:first-child, .x98-card:nth-child(4) { grid-column: auto; grid-row: auto; }
	.p13-inner { grid-template-columns: 1fr; }
	.p13-aside { position: static; }
	.l46-card { flex-direction: column; }
	.y77-meta { flex-direction: column; }
	.k05-title { font-size: 64px; }
	.k05 { padding-block: var(--theme-gutter-xl); }
	.j97 { padding-block: var(--theme-gutter-xl) var(--theme-spacing-lg); }
}
