/* =====================================================================
   Web Based Result — App Stylesheet v2  ·  "Official Gazette"
   Palette: portal blue · result green · ink navy · paper white
   Type:    Archivo (display / numerals) · Public Sans (body) · mono codes
   Shape:   hairline borders, 6–10px radius, flat print-like surfaces
   ===================================================================== */

:root {
	--wbr-primary: #0f4c92;            /* portal blue (eboardresults) */
	--wbr-accent: #188a42;             /* result green ("Get Result") */
	--wbr-primary-dark: #0a3568;
	--wbr-primary-wash: #eef4fc;
	--wbr-accent-dark: #0f6b32;
	--wbr-accent-wash: #e7f5ec;
	--wbr-panel: #10294a;              /* notice-board navy */
	--wbr-ink: #16273f;
	--wbr-muted: #55677e;
	--wbr-faint: #8395ab;
	--wbr-bg: #f3f6fa;
	--wbr-surface: #ffffff;
	--wbr-line: #d9e2ee;
	--wbr-line-soft: #e7edf5;
	--wbr-red: #d7263d;
	--wbr-r: 8px;
	--wbr-r-lg: 12px;
	--wbr-shadow: 0 1px 2px rgba(16, 41, 74, 0.06), 0 8px 24px -18px rgba(16, 41, 74, 0.25);
	--wbr-display: "Archivo", "Public Sans", -apple-system, "Segoe UI", sans-serif;
	--wbr-body: "Public Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
	--wbr-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
	--wbr-header-h: 64px;
}
@supports (color: color-mix(in srgb, red, blue)) {
	:root {
		--wbr-primary-dark: color-mix(in srgb, var(--wbr-primary), #041a33 34%);
		--wbr-primary-wash: color-mix(in srgb, var(--wbr-primary), #ffffff 92%);
		--wbr-accent-dark: color-mix(in srgb, var(--wbr-accent), #032612 34%);
		--wbr-accent-wash: color-mix(in srgb, var(--wbr-accent), #ffffff 90%);
	}
}

/* ------------------------------ Base ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.wbr-body {
	margin: 0;
	font-family: var(--wbr-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--wbr-ink);
	background: var(--wbr-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wbr-primary); text-decoration: none; }
a:hover { color: var(--wbr-primary-dark); }
h1, h2, h3 { font-family: var(--wbr-display); color: var(--wbr-ink); line-height: 1.18; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
code {
	font-family: var(--wbr-mono); font-size: 0.85em;
	background: var(--wbr-primary-wash); color: var(--wbr-primary-dark);
	border: 1px solid var(--wbr-line); border-radius: 5px;
	padding: 0.12em 0.45em; white-space: nowrap;
}
:focus-visible { outline: 2px solid var(--wbr-primary); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--wbr-primary); color: #fff; }

.wbr-skip { position: absolute; left: -999px; top: 8px; z-index: 400; background: var(--wbr-ink); color: #fff; padding: 10px 18px; border-radius: 6px; }
.wbr-skip:focus { left: 8px; }

.wbr-container { width: min(1120px, 100% - 40px); margin-inline: auto; }
.wbr-container--narrow { width: min(780px, 100% - 40px); }
.wbr-i { flex: none; vertical-align: -0.18em; }

/* ------------------------- Kickers & headings ----------------------- */
.wbr-heading { margin-bottom: clamp(26px, 4vw, 40px); }
.wbr-kicker {
	display: flex; align-items: center; gap: 12px;
	font-family: var(--wbr-display); font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--wbr-primary);
	margin-bottom: 14px;
}
.wbr-kicker::before { content: ""; width: 9px; height: 9px; background: var(--wbr-accent); flex: none; }
.wbr-kicker::after { content: ""; height: 1px; background: var(--wbr-line); flex: 1; }
.wbr-heading h2 { font-size: clamp(23px, 3vw, 32px); font-weight: 700; max-width: 26ch; }
.wbr-heading p { color: var(--wbr-muted); font-size: 15.5px; max-width: 74ch; margin-bottom: 0; }

/* ----------------------------- Buttons ----------------------------- */
.wbr-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--wbr-display); font-weight: 700; font-size: 13px;
	letter-spacing: 0.06em; text-transform: uppercase;
	padding: 13px 22px; border-radius: var(--wbr-r); border: 1.5px solid transparent;
	cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
}
.wbr-btn--lg { padding: 15px 26px; font-size: 13.5px; }
.wbr-btn--primary { background: var(--wbr-primary); color: #fff; }
.wbr-btn--primary:hover { background: var(--wbr-primary-dark); color: #fff; box-shadow: 0 6px 16px -8px var(--wbr-primary); }
.wbr-btn--accent { background: var(--wbr-accent); color: #fff; }
.wbr-btn--accent:hover { background: var(--wbr-accent-dark); color: #fff; box-shadow: 0 6px 16px -8px var(--wbr-accent); }
.wbr-btn--ghost { background: var(--wbr-surface); border-color: var(--wbr-line); color: var(--wbr-ink); }
.wbr-btn--ghost:hover { border-color: var(--wbr-primary); color: var(--wbr-primary); }
.wbr-btn--soft { background: #fff; color: var(--wbr-primary-dark); border-color: var(--wbr-line); font-size: 12px; padding: 10px 16px; }

/* -------------------------- Utility strip --------------------------- */
.wbr-strip {
	background: var(--wbr-panel); color: #b9c9de; font-size: 12px;
}
.wbr-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 34px; }
.wbr-strip a { color: #dbe7f5; font-weight: 600; }
.wbr-strip a:hover { color: #fff; text-decoration: underline; }
.wbr-strip__links { display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; }
.wbr-strip__label { color: #7e93ad; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10.5px; font-weight: 700; }
.wbr-strip__tag { display: none; color: #8ea3bc; }
@media (min-width: 720px) { .wbr-strip__tag { display: block; } }

/* ----------------------------- Header ------------------------------ */
.wbr-header {
	background: #fff; border-bottom: 1px solid var(--wbr-line); z-index: 200;
	border-top: 4px solid var(--wbr-accent);
	transition: box-shadow 0.2s ease;
}
.wbr-header.is-sticky { position: sticky; top: 0; }
.wbr-header.is-scrolled { box-shadow: 0 6px 18px -12px rgba(16, 41, 74, 0.3); }
.wbr-header__inner { display: flex; align-items: center; gap: 26px; min-height: var(--wbr-header-h); }

.wbr-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--wbr-ink); }
.wbr-brand__logo { width: 38px; height: 38px; border-radius: 8px; object-fit: contain; }
.wbr-brand__mark {
	width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center;
	background: var(--wbr-primary); color: #fff; position: relative;
}
.wbr-brand__mark::after { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 5px; }
.wbr-brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.wbr-brand__title { font-family: var(--wbr-display); font-weight: 800; font-size: 17.5px; letter-spacing: -0.01em; }
.wbr-brand__tag { font-size: 10px; font-weight: 700; color: var(--wbr-muted); letter-spacing: 0.16em; text-transform: uppercase; }
a.wbr-brand:hover .wbr-brand__title { color: var(--wbr-primary); }

.wbr-nav { display: none; gap: 22px; margin-left: auto; }
.wbr-nav a {
	position: relative; font-family: var(--wbr-display);
	font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--wbr-muted); padding: 6px 0;
}
.wbr-nav a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
	height: 2px; background: var(--wbr-accent); transition: right 0.2s ease;
}
.wbr-nav a:hover { color: var(--wbr-ink); }
.wbr-nav a:hover::after { right: 0; }
.wbr-header__cta { margin-left: auto; padding: 11px 18px; }
@media (min-width: 960px) {
	.wbr-nav { display: flex; }
	.wbr-header__cta { margin-left: 0; }
}

/* ------------------------------ Hero -------------------------------- */
.wbr-hero {
	position: relative; overflow: hidden; text-align: center;
	background: linear-gradient(180deg, #fff 0%, var(--wbr-bg) 100%);
	padding: clamp(44px, 7vw, 80px) 0 clamp(46px, 6vw, 72px);
	border-bottom: 1px solid var(--wbr-line);
}
.wbr-hero__guilloche {
	position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
	background:
		repeating-radial-gradient(circle at 50% -420px, transparent 0 46px, rgba(15, 76, 146, 0.055) 46px 47px),
		repeating-radial-gradient(circle at 50% -420px, transparent 0 11px, rgba(15, 76, 146, 0.03) 11px 12px);
	mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
	-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.wbr-hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.wbr-gazline {
	display: inline-flex; align-items: center; gap: 14px; max-width: 100%;
	font-family: var(--wbr-display); font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-primary-dark);
	margin-bottom: 22px;
}
.wbr-gazline::before, .wbr-gazline::after { content: ""; height: 1px; width: clamp(24px, 6vw, 64px); background: var(--wbr-line); }
.wbr-gazline .wbr-live { width: 8px; height: 8px; background: var(--wbr-red); border-radius: 50%; flex: none; position: relative; }
.wbr-gazline .wbr-live::after { content: ""; position: absolute; inset: -4px; border: 1.5px solid var(--wbr-red); border-radius: 50%; opacity: 0.45; animation: wbr-pulse 1.7s ease-out infinite; }
@keyframes wbr-pulse { from { transform: scale(0.55); opacity: 0.7; } to { transform: scale(1.5); opacity: 0; } }

.wbr-hero h1 { font-size: clamp(30px, 4.8vw, 52px); font-weight: 800; letter-spacing: -0.02em; max-width: 21ch; margin: 0 auto 16px; }
.wbr-hero__sub { font-size: clamp(15px, 1.5vw, 17px); color: var(--wbr-muted); max-width: 66ch; margin: 0 auto 26px; }
.wbr-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: clamp(30px, 4.5vw, 44px); }

/* Notice board — the countdown */
.wbr-noticeboard {
	width: min(860px, 100%);
	background: var(--wbr-panel); color: #fff;
	border-radius: var(--wbr-r-lg); box-shadow: 0 24px 50px -26px rgba(16, 41, 74, 0.65);
	border: 1px solid #1d3d68; overflow: hidden; text-align: left;
}
.wbr-noticeboard__head {
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	padding: 13px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}
.wbr-noticeboard__title {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--wbr-display); font-size: 12px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase; color: #cfe0f4;
}
.wbr-noticeboard__title i { width: 8px; height: 8px; border-radius: 50%; background: #34d073; box-shadow: 0 0 0 3px rgba(52, 208, 115, 0.22); animation: wbr-blink 1.4s ease-in-out infinite; }
@keyframes wbr-blink { 50% { opacity: 0.35; } }
.wbr-noticeboard__date { margin-left: auto; font-family: var(--wbr-mono); font-size: 12px; color: #93aac7; letter-spacing: 0.04em; }

.wbr-flaps { display: flex; justify-content: center; gap: clamp(8px, 2vw, 16px); padding: clamp(22px, 4vw, 34px) 18px clamp(18px, 3vw, 26px); }
.wbr-flap {
	position: relative; flex: 0 1 128px; min-width: 66px;
	background: linear-gradient(180deg, #17355e 0%, #122b4e 48%, #0d2342 52%, #0f2848 100%);
	border: 1px solid #24466f; border-radius: 10px;
	padding: clamp(12px, 2.4vw, 18px) 6px clamp(9px, 1.6vw, 12px);
	text-align: center;
}
.wbr-flap::before { content: ""; position: absolute; left: 7px; right: 7px; top: 50%; height: 1px; background: rgba(3, 12, 24, 0.85); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06); }
.wbr-flap b {
	display: block; font-family: var(--wbr-display); font-weight: 800;
	font-size: clamp(32px, 7.4vw, 58px); line-height: 1; color: #fff;
	font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}
.wbr-flap b.is-tick { animation: wbr-flip 0.28s ease; }
@keyframes wbr-flip { 0% { transform: perspective(300px) rotateX(-58deg); opacity: 0.4; } 100% { transform: none; opacity: 1; } }
.wbr-flap span {
	display: block; margin-top: clamp(8px, 1.6vw, 12px);
	font-family: var(--wbr-display); font-size: 9.5px; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase; color: #7e97b8;
}
.wbr-flap--s b { color: #4fe08d; }
.wbr-flaps__sep { align-self: center; font-family: var(--wbr-display); font-weight: 800; font-size: clamp(20px, 4vw, 34px); color: #33507c; padding-bottom: 20px; }
@media (max-width: 480px) { .wbr-flaps__sep { display: none; } .wbr-flaps { gap: 7px; } }

.wbr-noticeboard__published {
	display: none; padding: clamp(28px, 5vw, 44px) 22px; text-align: center;
	font-family: var(--wbr-display); font-weight: 700; font-size: clamp(16px, 2.4vw, 21px);
	color: #5df09a; animation: wbr-pop 0.5s ease;
}
@keyframes wbr-pop { from { transform: scale(0.92); opacity: 0; } }
.wbr-noticeboard.is-done .wbr-flaps { display: none; }
.wbr-noticeboard.is-done .wbr-noticeboard__published { display: block; }
.wbr-noticeboard__note {
	margin: 0; padding: 11px 20px 14px; font-size: 12px; line-height: 1.6; color: #8ba2c0;
	border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

/* Spec strip under the board */
.wbr-specs {
	list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
	margin: 22px 0 0; padding: 0; background: #fff;
	border: 1px solid var(--wbr-line); border-radius: var(--wbr-r);
}
.wbr-specs li { display: flex; align-items: baseline; gap: 8px; padding: 11px 18px; }
.wbr-specs li + li { border-left: 1px solid var(--wbr-line-soft); }
.wbr-specs strong { font-family: var(--wbr-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-faint); }
.wbr-specs span { font-family: var(--wbr-mono); font-size: 13px; font-weight: 600; color: var(--wbr-ink); }
@media (max-width: 640px) {
	.wbr-specs { flex-direction: column; align-items: stretch; text-align: left; }
	.wbr-specs li + li { border-left: 0; border-top: 1px solid var(--wbr-line-soft); }
}

/* Standalone countdown band (hero off) */
.wbr-cdband { padding: clamp(36px, 5vw, 56px) 0; }
.wbr-cdband .wbr-noticeboard { margin-inline: auto; }

/* ---------------------------- Sections ----------------------------- */
.wbr-section { padding: clamp(52px, 7vw, 88px) 0; }
.wbr-section--tint { background: linear-gradient(180deg, var(--wbr-bg), var(--wbr-primary-wash) 60%, var(--wbr-bg)); }
main > section { scroll-margin-top: calc(var(--wbr-header-h) + 14px); }

.wbr-note {
	display: flex; gap: 11px; align-items: flex-start;
	background: #fff; border: 1px solid var(--wbr-line); border-left: 4px solid var(--wbr-primary);
	border-radius: var(--wbr-r); padding: 14px 18px; font-size: 14px; color: var(--wbr-muted);
	margin: 24px 0 0;
}
.wbr-note .wbr-i { flex: none; margin-top: 2px; color: var(--wbr-primary); }

.wbr-ad { width: min(1120px, 100% - 40px); margin: 32px auto; text-align: center; }
.wbr-ad:empty { display: none; }

/* ------------------------- Tabs (underline) ------------------------ */
.wbr-tabs { display: flex; gap: 26px; border-bottom: 2px solid var(--wbr-line); margin-bottom: 24px; }
.wbr-tab {
	display: inline-flex; align-items: center; gap: 8px; margin-bottom: -2px;
	font-family: var(--wbr-display); font-size: 12.5px; font-weight: 700;
	letter-spacing: 0.09em; text-transform: uppercase; color: var(--wbr-muted);
	background: none; border: 0; border-bottom: 2px solid transparent;
	padding: 10px 2px 12px; cursor: pointer; transition: color 0.15s ease, border-color 0.15s ease;
}
.wbr-tab:hover { color: var(--wbr-ink); }
.wbr-tab.is-active { color: var(--wbr-primary); border-bottom-color: var(--wbr-accent); }
.wbr-panel { display: none; }
.wbr-panel.is-active { display: block; }

/* --------------------------- Checker kiosk ------------------------- */
.wbr-kiosk { background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); box-shadow: var(--wbr-shadow); overflow: hidden; }
.wbr-kiosk__bar {
	display: flex; align-items: center; gap: 12px;
	background: var(--wbr-panel); color: #cfe0f4; padding: 11px 16px;
}
.wbr-kiosk__host { display: inline-flex; align-items: center; gap: 9px; min-width: 0; font-family: var(--wbr-mono); font-size: 12.5px; letter-spacing: 0.03em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wbr-kiosk__host .wbr-i { color: #4fe08d; }
.wbr-kiosk__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--wbr-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: #4fe08d; }
.wbr-kiosk__live i { width: 7px; height: 7px; border-radius: 50%; background: #34d073; animation: wbr-blink 1.4s ease-in-out infinite; }
.wbr-kiosk__tools { margin-left: auto; display: flex; gap: 7px; }
.wbr-kiosk__tool {
	width: 32px; height: 32px; display: grid; place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 7px;
	background: rgba(255, 255, 255, 0.06); color: #dbe7f5; cursor: pointer;
	transition: background 0.15s ease;
}
.wbr-kiosk__tool:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.wbr-kiosk__body { position: relative; background: var(--wbr-bg); }
.wbr-kiosk__body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wbr-kiosk__loader {
	position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
	align-items: center; justify-content: center; gap: 16px; text-align: center;
	background: var(--wbr-bg); padding: 24px; transition: opacity 0.3s ease;
}
.wbr-kiosk__loader.is-hidden { opacity: 0; pointer-events: none; }
.wbr-kiosk__loader p { color: var(--wbr-muted); font-size: 14px; margin: 0; }
.wbr-spinner { width: 34px; height: 34px; border: 3px solid var(--wbr-line); border-top-color: var(--wbr-primary); border-radius: 50%; animation: wbr-spin 0.85s linear infinite; }
@keyframes wbr-spin { to { transform: rotate(360deg); } }

.wbr-portalrows { display: grid; gap: 14px; }
@media (min-width: 760px) { .wbr-portalrows { grid-template-columns: 1fr 1fr; } }
.wbr-portalrow {
	display: flex; align-items: center; gap: 15px;
	background: #fff; border: 1px solid var(--wbr-line); border-left: 4px solid var(--wbr-accent);
	border-radius: var(--wbr-r); padding: 17px 18px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wbr-portalrow:hover { border-color: var(--wbr-primary); border-left-color: var(--wbr-accent); box-shadow: var(--wbr-shadow); }
.wbr-portalrow__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border: 1px solid var(--wbr-line); border-radius: 9px; color: var(--wbr-primary); background: var(--wbr-primary-wash); }
.wbr-portalrow__body { min-width: 0; }
.wbr-portalrow__body b { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--wbr-display); font-size: 15px; color: var(--wbr-ink); }
.wbr-portalrow__body em { font-style: normal; font-family: var(--wbr-display); font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--wbr-accent-wash); color: var(--wbr-accent-dark); border: 1px solid var(--wbr-accent); border-radius: 4px; padding: 2px 7px; }
.wbr-portalrow__body span { display: block; font-size: 13px; color: var(--wbr-muted); margin-top: 3px; }
.wbr-portalrow__go { margin-left: auto; color: var(--wbr-faint); transition: color 0.15s ease, transform 0.15s ease; }
.wbr-portalrow:hover .wbr-portalrow__go { color: var(--wbr-primary); transform: translate(2px, -2px); }

/* ------------------------------ Stats ------------------------------ */
.wbr-scorebar {
	display: grid; grid-template-columns: repeat(2, 1fr);
	background: var(--wbr-panel); border-top: 3px solid var(--wbr-accent);
	border-radius: var(--wbr-r-lg); overflow: hidden; box-shadow: var(--wbr-shadow);
	margin-bottom: 30px;
}
@media (min-width: 860px) { .wbr-scorebar { grid-template-columns: repeat(4, 1fr); } }
.wbr-score { padding: 24px 22px 20px; position: relative; }
.wbr-score:nth-child(n+2)::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 1px; background: rgba(255, 255, 255, 0.12); }
@media (max-width: 859px) { .wbr-score:nth-child(3)::before { display: none; } .wbr-score:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.12); } }
.wbr-score__icon { color: #7e97b8; margin-bottom: 12px; }
.wbr-score__value { display: block; font-family: var(--wbr-display); font-weight: 800; font-size: clamp(27px, 3.4vw, 38px); color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; line-height: 1.05; }
.wbr-score__label { font-family: var(--wbr-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8ba2c0; }

.wbr-ledger { background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); overflow: hidden; box-shadow: var(--wbr-shadow); }
.wbr-ledger__head, .wbr-ledgerrow { display: grid; grid-template-columns: minmax(120px, 0.9fr) 2fr 90px; gap: 16px; align-items: center; padding: 12px 20px; }
.wbr-ledger__head { font-family: var(--wbr-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-faint); border-bottom: 2px solid var(--wbr-line); background: #fbfcfe; }
.wbr-ledger__head span:last-child, .wbr-ledgerrow__gpa { text-align: right; }
.wbr-ledgerrow { border-bottom: 1px solid var(--wbr-line-soft); }
.wbr-ledgerrow:last-child { border-bottom: 0; }
.wbr-ledgerrow:hover { background: var(--wbr-primary-wash); }
.wbr-ledgerrow__name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 9px; }
.wbr-ledgerrow__name::before { content: ""; width: 7px; height: 7px; background: var(--wbr-primary); flex: none; }
.wbr-ledgerrow__bar { display: flex; align-items: center; gap: 12px; }
.wbr-ledgerrow__track { flex: 1; height: 6px; background: var(--wbr-line-soft); position: relative; overflow: hidden; border-radius: 2px; }
.wbr-ledgerrow__track::after { content: ""; position: absolute; inset: 0; width: var(--w, 0%); background: var(--wbr-accent); transition: width 1s cubic-bezier(0.25, 1, 0.4, 1); }
.wbr-ledgerrow__bar b { font-family: var(--wbr-mono); font-size: 12.5px; font-weight: 700; color: var(--wbr-primary-dark); min-width: 58px; text-align: right; }
.wbr-ledgerrow__gpa { font-family: var(--wbr-mono); font-size: 13px; font-weight: 700; color: var(--wbr-accent-dark); }
.wbr-source { font-size: 12.5px; color: var(--wbr-faint); margin: 16px 4px 0; }
@media (max-width: 560px) {
	.wbr-ledger__head { display: none; }
	.wbr-ledgerrow { grid-template-columns: 1fr auto; grid-template-areas: "name gpa" "bar bar"; row-gap: 8px; padding: 13px 16px; }
	.wbr-ledgerrow__name { grid-area: name; }
	.wbr-ledgerrow__gpa { grid-area: gpa; }
	.wbr-ledgerrow__gpa::after { content: " GPA-5"; font-family: var(--wbr-display); font-size: 9px; color: var(--wbr-faint); letter-spacing: 0.1em; }
	.wbr-ledgerrow__bar { grid-area: bar; }
}

/* --------------------------- Method cards -------------------------- */
.wbr-cards { display: grid; gap: 15px; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.wbr-card {
	position: relative; background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r);
	padding: 22px 22px 18px; display: flex; flex-direction: column;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.wbr-card::before { content: ""; position: absolute; left: -1px; top: 14px; bottom: 14px; width: 3px; background: var(--wbr-accent); border-radius: 0 3px 3px 0; transform: scaleY(0); transition: transform 0.2s ease; }
.wbr-card:hover { border-color: var(--wbr-primary); box-shadow: var(--wbr-shadow); }
.wbr-card:hover::before { transform: scaleY(1); }
.wbr-card__icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--wbr-line); border-radius: 9px; color: var(--wbr-primary); margin-bottom: 15px; background: var(--wbr-primary-wash); }
.wbr-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; }
.wbr-card p { font-size: 14px; color: var(--wbr-muted); margin-bottom: 14px; }
.wbr-card__link {
	margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--wbr-display); font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.09em; text-transform: uppercase; color: var(--wbr-accent-dark);
}
.wbr-card__link .wbr-i { transition: transform 0.15s ease; }
.wbr-card__link:hover { color: var(--wbr-accent-dark); }
.wbr-card__link:hover .wbr-i { transform: translateX(3px); }

/* ----------------------- Features option sheet --------------------- */
.wbr-sheet { background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); overflow: hidden; box-shadow: var(--wbr-shadow); }
.wbr-sheet__grid { display: grid; }
@media (min-width: 820px) { .wbr-sheet__grid { grid-template-columns: 1fr 1fr; } }
.wbr-option { display: flex; gap: 16px; padding: 22px 24px; border-bottom: 1px solid var(--wbr-line-soft); }
@media (min-width: 820px) {
	.wbr-option:nth-child(odd) { border-right: 1px solid var(--wbr-line-soft); }
	.wbr-option:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}
.wbr-option:last-child { border-bottom: 0; }
.wbr-option__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; background: var(--wbr-accent-wash); border: 1px solid var(--wbr-accent); border-radius: 9px; color: var(--wbr-accent-dark); }
.wbr-option h3 { font-size: 15.5px; margin-bottom: 5px; }
.wbr-option p { font-size: 13.5px; color: var(--wbr-muted); margin: 0; }

/* --------------------------- How-To rail --------------------------- */
.wbr-rail { list-style: none; margin: 0; padding: 0; position: relative; max-width: 760px; }
.wbr-rail::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px; background: var(--wbr-line); }
.wbr-railstep { position: relative; display: flex; gap: 20px; padding: 0 0 26px 0; }
.wbr-railstep:last-child { padding-bottom: 0; }
.wbr-railstep__num {
	position: relative; z-index: 1; flex: none; width: 44px; height: 44px;
	display: grid; place-items: center; background: var(--wbr-primary); color: #fff;
	border-radius: 9px; font-family: var(--wbr-mono); font-weight: 700; font-size: 15px;
	box-shadow: 0 0 0 5px var(--wbr-bg);
}
.wbr-section--tint .wbr-railstep__num { box-shadow: 0 0 0 5px var(--wbr-primary-wash); }
.wbr-railstep__body { padding-top: 2px; border-bottom: 1px dashed var(--wbr-line); padding-bottom: 22px; flex: 1; }
.wbr-railstep:last-child .wbr-railstep__body { border-bottom: 0; padding-bottom: 0; }
.wbr-railstep__body h3 { font-size: 16px; margin-bottom: 5px; }
.wbr-railstep__body p { font-size: 14px; color: var(--wbr-muted); margin: 0; }

.wbr-slip {
	position: relative; display: flex; gap: 13px; align-items: flex-start;
	background: #fff; border: 1.5px dashed var(--wbr-accent);
	border-radius: var(--wbr-r); padding: 17px 20px; margin-top: 28px; max-width: 760px;
}
.wbr-slip::before {
	content: "TIP"; position: absolute; top: -10px; left: 16px;
	font-family: var(--wbr-display); font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
	background: var(--wbr-accent); color: #fff; padding: 3px 9px; border-radius: 4px;
}
.wbr-slip .wbr-i { flex: none; color: var(--wbr-accent-dark); margin-top: 2px; }
.wbr-slip p { margin: 0; font-size: 14.5px; font-weight: 500; color: var(--wbr-ink); }

/* -------------------------- SMS composer --------------------------- */
.wbr-sms { display: grid; gap: 30px; align-items: start; }
@media (min-width: 920px) { .wbr-sms { grid-template-columns: 1fr 390px; gap: 44px; } }

.wbr-composer { background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); box-shadow: var(--wbr-shadow); overflow: hidden; }
.wbr-composer__head {
	display: flex; align-items: center; gap: 10px;
	padding: 13px 20px; border-bottom: 1px solid var(--wbr-line);
	font-family: var(--wbr-display); font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-primary);
	background: #fbfcfe;
}
.wbr-composer__head .wbr-i { color: var(--wbr-accent); }
.wbr-composer__body { padding: 22px; display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .wbr-composer__body { grid-template-columns: 1fr; } }
.wbr-field { display: flex; flex-direction: column; gap: 6px; }
.wbr-field label { font-family: var(--wbr-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wbr-muted); }
.wbr-field input, .wbr-field select {
	width: 100%; font: inherit; font-size: 15px; color: var(--wbr-ink);
	background: #fff; border: 1.5px solid var(--wbr-line); border-radius: var(--wbr-r);
	padding: 11px 13px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none; appearance: none;
}
.wbr-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2355677e' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.wbr-field input:focus, .wbr-field select:focus { outline: none; border-color: var(--wbr-primary); box-shadow: 0 0 0 3px var(--wbr-primary-wash); }
.wbr-field input::placeholder { color: var(--wbr-faint); }
.wbr-field input.is-error { border-color: var(--wbr-red); animation: wbr-shake 0.3s ease; }
@keyframes wbr-shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.wbr-composer__send { grid-column: 1 / -1; width: 100%; }
.wbr-composer__hint { grid-column: 1 / -1; font-size: 12px; color: var(--wbr-faint); margin: -4px 0 0; }

/* Receipt */
.wbr-receiptwrap { display: flex; justify-content: center; }
.wbr-receipt {
	position: relative; width: min(360px, 100%); background: #fff; color: var(--wbr-ink);
	padding: 26px 22px 22px;
	box-shadow: 0 18px 40px -22px rgba(16, 41, 74, 0.45), 0 2px 6px rgba(16, 41, 74, 0.08);
	border: 1px solid var(--wbr-line);
}
.wbr-receipt::before, .wbr-receipt::after {
	content: ""; position: absolute; left: 0; right: 0; height: 10px;
	background-image: radial-gradient(circle at 6px 0, transparent 0 5px, #fff 5px);
	background-size: 14px 10px; background-repeat: repeat-x;
	filter: drop-shadow(0 -1px 0 var(--wbr-line));
}
.wbr-receipt::before { top: -9px; transform: rotate(180deg); }
.wbr-receipt::after { bottom: -9px; }
.wbr-receipt.is-issued { animation: wbr-print 0.45s ease; }
@keyframes wbr-print { 0% { transform: translateY(-8px); } 55% { transform: translateY(3px); } 100% { transform: none; } }

.wbr-receipt__brand { text-align: center; padding-bottom: 14px; border-bottom: 1.5px dashed var(--wbr-line); }
.wbr-receipt__brand b { display: block; font-family: var(--wbr-display); font-weight: 800; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; }
.wbr-receipt__brand span { font-family: var(--wbr-mono); font-size: 11px; color: var(--wbr-muted); letter-spacing: 0.06em; }
.wbr-receipt__rows { padding: 15px 0 5px; }
.wbr-receipt__row { display: flex; justify-content: space-between; gap: 12px; font-family: var(--wbr-mono); font-size: 12.5px; padding: 4px 0; }
.wbr-receipt__row span { color: var(--wbr-muted); letter-spacing: 0.04em; }
.wbr-receipt__row b { font-weight: 700; }
.wbr-receipt__msg {
	margin: 10px 0 14px; padding: 13px 14px; text-align: center;
	background: var(--wbr-primary-wash); border: 1px solid var(--wbr-line); border-radius: 6px;
	font-family: var(--wbr-mono); font-size: 15.5px; font-weight: 700; letter-spacing: 0.05em;
	color: var(--wbr-primary-dark); word-break: break-word;
}
.wbr-receipt__actions { display: flex; gap: 9px; }
.wbr-receipt__actions .wbr-btn { flex: 1; padding: 11px 10px; font-size: 11px; }
.wbr-barcode {
	height: 34px; margin: 16px 0 6px;
	background: repeating-linear-gradient(90deg, var(--wbr-ink) 0 2px, transparent 2px 5px, var(--wbr-ink) 5px 6px, transparent 6px 11px, var(--wbr-ink) 11px 14px, transparent 14px 17px);
	opacity: 0.85;
}
.wbr-receipt__serial { text-align: center; font-family: var(--wbr-mono); font-size: 10.5px; letter-spacing: 0.3em; color: var(--wbr-faint); margin: 0; }

.wbr-reply { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, margin 0.4s ease; }
.wbr-reply.is-shown { max-height: 300px; opacity: 1; margin-top: 14px; }
.wbr-reply__tag {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--wbr-display); font-size: 9.5px; font-weight: 800;
	letter-spacing: 0.2em; text-transform: uppercase; color: var(--wbr-faint); margin-bottom: 10px;
}
.wbr-reply__tag::before, .wbr-reply__tag::after { content: ""; flex: 1; border-top: 1.5px dashed var(--wbr-line); }
.wbr-reply__text {
	font-family: var(--wbr-mono); font-size: 12.5px; line-height: 1.65;
	background: var(--wbr-accent-wash); border: 1px dashed var(--wbr-accent);
	border-radius: 6px; padding: 12px 14px; color: var(--wbr-accent-dark); margin: 0;
}

/* Formats table */
.wbr-formats { margin-top: 38px; background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); overflow: hidden; box-shadow: var(--wbr-shadow); }
.wbr-formats__head, .wbr-formats__row { display: grid; grid-template-columns: 0.7fr 1.4fr 1fr; gap: 14px; padding: 12px 20px; align-items: center; }
.wbr-formats__head { font-family: var(--wbr-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-faint); border-bottom: 2px solid var(--wbr-line); background: #fbfcfe; }
.wbr-formats__row { border-bottom: 1px solid var(--wbr-line-soft); font-size: 14px; }
.wbr-formats__row:last-child { border-bottom: 0; }
.wbr-formats__row > span:first-child { font-weight: 600; }
@media (max-width: 640px) {
	.wbr-formats__head { display: none; }
	.wbr-formats__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 18px; }
	.wbr-formats__row > span::before { content: attr(data-th); display: block; font-family: var(--wbr-display); font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wbr-faint); }
}

/* ------------------------------ Boards ----------------------------- */
.wbr-boards { display: grid; gap: 13px; grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr)); }
.wbr-board {
	position: relative; background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r);
	padding: 18px 16px 15px; display: flex; flex-direction: column; gap: 2px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.wbr-board:hover { border-color: var(--wbr-primary); box-shadow: var(--wbr-shadow); }
.wbr-board__code {
	font-family: var(--wbr-display); font-weight: 800; font-size: 26px; letter-spacing: 0.06em;
	color: transparent; -webkit-text-stroke: 1.3px var(--wbr-primary);
	line-height: 1; margin-bottom: 10px; transition: color 0.18s ease;
}
@supports not (-webkit-text-stroke: 1px black) { .wbr-board__code { color: var(--wbr-primary); } }
.wbr-board:hover .wbr-board__code { color: var(--wbr-primary); }
.wbr-board__name { font-family: var(--wbr-display); font-weight: 700; font-size: 15px; color: var(--wbr-ink); }
.wbr-board__type { font-family: var(--wbr-display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wbr-faint); }
.wbr-board__ext { position: absolute; top: 14px; right: 13px; color: var(--wbr-line); transition: color 0.15s ease; }
.wbr-board:hover .wbr-board__ext { color: var(--wbr-accent); }

/* ---------------------------- Rescrutiny --------------------------- */
.wbr-facts { display: grid; gap: 14px; margin-bottom: 30px; }
@media (min-width: 760px) { .wbr-facts { grid-template-columns: repeat(3, 1fr); } }
.wbr-fact { position: relative; background: #fff; border: 1.5px dashed var(--wbr-line); border-radius: var(--wbr-r); padding: 18px 20px 16px; }
.wbr-fact__k { display: flex; align-items: center; gap: 8px; font-family: var(--wbr-display); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wbr-primary); margin-bottom: 9px; }
.wbr-fact code { font-size: 13.5px; padding: 5px 10px; }
.wbr-fact em { display: block; font-style: normal; font-size: 12px; color: var(--wbr-faint); margin-top: 6px; }
.wbr-fact b { font-size: 14px; color: var(--wbr-ink); font-weight: 600; line-height: 1.55; }

.wbr-procedure { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: proc; }
@media (min-width: 860px) { .wbr-procedure { grid-template-columns: repeat(4, 1fr); } }
.wbr-procedure li { position: relative; background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r); padding: 46px 18px 16px; counter-increment: proc; }
.wbr-procedure li::before {
	content: counter(proc, decimal-leading-zero); position: absolute; top: 14px; left: 18px;
	font-family: var(--wbr-mono); font-weight: 700; font-size: 13px;
	background: var(--wbr-primary); color: #fff; border-radius: 6px; padding: 4px 9px;
}
@media (min-width: 860px) {
	.wbr-procedure li:not(:last-child)::after { content: ""; position: absolute; top: 26px; right: -14px; width: 14px; height: 2px; background: var(--wbr-line); }
}
.wbr-procedure h3 { font-size: 15px; margin-bottom: 5px; }
.wbr-procedure p { font-size: 13px; color: var(--wbr-muted); margin: 0; }

/* ------------------------------- FAQ ------------------------------- */
.wbr-faq { background: #fff; border: 1px solid var(--wbr-line); border-radius: var(--wbr-r-lg); box-shadow: var(--wbr-shadow); overflow: hidden; }
.wbr-faq__item { border-bottom: 1px solid var(--wbr-line-soft); }
.wbr-faq__item:last-child { border-bottom: 0; }
.wbr-faq__item summary {
	display: flex; align-items: center; gap: 14px; list-style: none; cursor: pointer;
	padding: 17px 20px; font-family: var(--wbr-display); font-weight: 700; font-size: 15px; color: var(--wbr-ink);
	transition: background 0.15s ease;
}
.wbr-faq__item summary::-webkit-details-marker { display: none; }
.wbr-faq__item summary:hover { background: var(--wbr-primary-wash); }
.wbr-faq__q { flex: none; width: 28px; height: 28px; display: grid; place-items: center; background: var(--wbr-primary); color: #fff; border-radius: 6px; font-family: var(--wbr-mono); font-size: 13px; font-weight: 700; }
.wbr-faq__chev { margin-left: auto; flex: none; color: var(--wbr-faint); transition: transform 0.22s ease, color 0.22s ease; }
.wbr-faq__item[open] .wbr-faq__chev { transform: rotate(180deg); color: var(--wbr-accent-dark); }
.wbr-faq__item[open] .wbr-faq__q { background: var(--wbr-accent); }
.wbr-faq__a { padding: 2px 20px 18px 62px; }
.wbr-faq__a p { margin: 0; font-size: 14px; color: var(--wbr-muted); border-left: 2px solid var(--wbr-accent); padding-left: 15px; animation: wbr-fade 0.28s ease; }
@keyframes wbr-fade { from { opacity: 0; transform: translateY(-4px); } }
@media (max-width: 520px) { .wbr-faq__a { padding-left: 20px; } }

/* ----------------------------- Article ----------------------------- */
.wbr-article { max-width: 720px; font-size: 16px; color: #33465e; }
.wbr-article > p:first-of-type { font-size: 18px; color: var(--wbr-ink); }
.wbr-article h3 { font-size: 19px; margin: 1.7em 0 0.55em; padding-left: 14px; border-left: 4px solid var(--wbr-accent); }
.wbr-article strong { color: var(--wbr-ink); }
.wbr-article a { text-decoration: underline; text-underline-offset: 3px; }
.wbr-article p:last-child { margin-bottom: 0; }

/* ------------------------------ Footer ----------------------------- */
.wbr-footer { background: #fff; border-top: 4px solid var(--wbr-panel); padding: 50px 0 0; margin-bottom: 62px; }
@media (min-width: 960px) { .wbr-footer { margin-bottom: 0; } }
.wbr-footer__grid { display: grid; gap: 32px; padding-bottom: 34px; }
@media (min-width: 820px) { .wbr-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.wbr-footer__brand { font-family: var(--wbr-display); font-weight: 800; font-size: 18px; color: var(--wbr-ink); display: inline-block; margin-bottom: 10px; }
.wbr-footer__about p { font-size: 13.5px; color: var(--wbr-muted); line-height: 1.7; margin: 0; }
.wbr-footer__nav { display: flex; flex-direction: column; gap: 9px; }
.wbr-footer__nav b { font-family: var(--wbr-display); font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wbr-primary); margin-bottom: 5px; }
.wbr-footer__nav a { color: var(--wbr-muted); font-size: 13.5px; }
.wbr-footer__nav a:hover { color: var(--wbr-primary); }
.wbr-footer__disclaimer { font-size: 11.5px; color: var(--wbr-faint); line-height: 1.7; border-top: 1px solid var(--wbr-line-soft); padding: 18px 0 4px; margin: 0; }
.wbr-footer__creditbar { background: var(--wbr-bg); border-top: 1px solid var(--wbr-line-soft); margin-top: 18px; }
.wbr-footer__credit { text-align: center; font-size: 12.5px; color: var(--wbr-muted); padding: 15px 0; margin: 0; }

/* -------------------------- Mobile app bar ------------------------- */
.wbr-appbar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 210;
	display: flex; background: var(--wbr-panel);
	border-top: 1px solid #1d3d68;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	box-shadow: 0 -8px 24px -14px rgba(4, 15, 30, 0.6);
}
.wbr-appbar a {
	position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
	color: #7e97b8; padding: 9px 2px 8px;
	font-family: var(--wbr-display); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
	transition: color 0.15s ease;
}
.wbr-appbar a::before { content: ""; position: absolute; top: 0; left: 22%; right: 22%; height: 2px; background: transparent; transition: background 0.15s ease; }
.wbr-appbar a.is-active { color: #fff; }
.wbr-appbar a.is-active::before { background: var(--wbr-accent); }
@media (min-width: 960px) { .wbr-appbar { display: none; } }

/* ----------------------- Floating utilities ------------------------ */
.wbr-top {
	position: fixed; right: 16px; bottom: 84px; z-index: 205;
	width: 42px; height: 42px; border-radius: var(--wbr-r); border: 1px solid var(--wbr-line);
	background: #fff; color: var(--wbr-primary); cursor: pointer;
	display: grid; place-items: center; box-shadow: var(--wbr-shadow);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.15s ease;
}
.wbr-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.wbr-top:hover { background: var(--wbr-primary); color: #fff; }
@media (min-width: 960px) { .wbr-top { bottom: 22px; } }

.wbr-edit {
	position: fixed; left: 14px; bottom: 84px; z-index: 205;
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; border: 1px solid var(--wbr-line); color: var(--wbr-primary-dark);
	font-family: var(--wbr-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	border-radius: var(--wbr-r); padding: 10px 14px; box-shadow: var(--wbr-shadow);
}
.wbr-edit:hover { border-color: var(--wbr-primary); }
@media (min-width: 960px) { .wbr-edit { bottom: 20px; } }

/* --------------------------- Reveal & motion ----------------------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 1, 0.4, 1); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
body[data-no-anim] [data-reveal] { opacity: 1; transform: none; transition: none; }
body[data-no-anim] .wbr-live::after, body[data-no-anim] .wbr-noticeboard__title i, body[data-no-anim] .wbr-kiosk__live i { animation: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
	[data-reveal] { opacity: 1; transform: none; }
}
