/* =============================================================
   X3DE JEUG — "Daybreak" design system
   Warm bone ground, ink type, sunrise-orange gradient.
   Display: Anton · Body/UI: Archivo · Script: Yellowtail
   Companion to the dark X3DE Kampe ticket-office theme.
   Built by Aquila Web Sec.
   ============================================================= */

:root {
	/* Ground + ink */
	--bone: #faf6ef;
	--cream: #f2ecdf;
	--sand: #e9e1d0;
	--ink: #16161c;
	--coal: #1b1b22;
	--ash: #6d6d78;
	--line: rgba(22, 22, 28, 0.12);

	/* Brand */
	--sun: #ff7a18;
	--sun-2: #ffa04d;
	--coral: #ff6b4a;
	--wa: #1fbf5f;

	/* Type */
	--f-display: "Anton", "Archivo", sans-serif;
	--f-body: "Archivo", system-ui, sans-serif;
	--f-script: "Yellowtail", cursive;

	/* Rhythm */
	--wrap: 1200px;
	--r-lg: 28px;
	--r-md: 18px;
	--r-sm: 12px;
	--shadow-soft: 0 18px 50px -18px rgba(22, 22, 28, 0.25);
	--shadow-sun: 0 14px 40px -12px color-mix(in srgb, var(--sun) 55%, transparent);
	--grad-sun: linear-gradient(120deg, var(--sun), var(--sun-2));
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Base Theme Reset: Prevent stray styles from overriding text colors */
.x3dej-theme h1, 
.x3dej-theme h2, 
.x3dej-theme h3, 
.x3dej-theme h4, 
.x3dej-theme h5, 
.x3dej-theme h6,
.x3dej-theme p, 
.x3dej-theme span, 
.x3dej-theme li,
.x3dej-theme a,
.x3dej-theme label,
.x3dej-theme small,
.x3dej-theme b,
.x3dej-theme strong,
.x3dej-theme em,
.x3dej-theme summary,
.x3dej-theme button {
	color: inherit;
}
/* Our own explicit color rules below will naturally win via specificity */
body {
	margin: 0;
	background: var(--bone);
	color: var(--ink);
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
}

body::after {
	/* Quiet film grain over everything — cinematic, not noisy. */
	content: "";
	position: fixed;
	inset: 0;
	background: var(--grain);
	opacity: 0.05;
	pointer-events: none;
	z-index: 9990;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 { line-height: 1.05; margin: 0 0 0.4em; }

.xj-wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--bone);
	padding: 10px 18px;
	border-radius: 0 0 12px 0;
	z-index: 10001;
}
.skip-link:focus { left: 0; }

/* Section headings */
.xj-sechead { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.xj-sechead h2 {
	font-family: var(--f-display);
	font-size: clamp(34px, 5vw, 54px);
	text-transform: uppercase;
	letter-spacing: 0.01em;
}
.xj-sechead p { color: var(--ash); font-size: 17px; margin: 10px 0 0; }
.xj-sechead--light h2 { color: var(--bone); }
.xj-sechead--light p { color: rgba(250, 246, 239, 0.65); }

.xj-script {
	font-family: var(--f-script);
	font-size: clamp(20px, 2.6vw, 26px);
	color: var(--sun);
	display: inline-block;
	transform: rotate(-2deg);
}
.xj-script--coral { color: var(--sun); }

.xj-highlight { color: var(--sun); }

/* ---------- Buttons & chips ---------- */
.xj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 22px;
	border-radius: 999px;
	border: 2px solid transparent;
	font-family: var(--f-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.xj-btn:hover { transform: translateY(-2px); }
.xj-btn:active { transform: translateY(0); }
.xj-btn--lg { padding: 15px 30px; font-size: 16px; }

.xj-btn--sun { background: var(--grad-sun); color: #fff; box-shadow: var(--shadow-sun); }
.xj-btn--sun:hover { box-shadow: 0 20px 48px -12px color-mix(in srgb, var(--sun) 70%, transparent); }

.xj-btn--ink { background: var(--ink); color: var(--bone); }
.xj-btn--ink:hover { background: #2a2a33; color: var(--bone); }

.xj-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.xj-btn--ghost:hover { border-color: var(--ink); }

.xj-btn--ghostlight { background: transparent; color: var(--bone); border-color: rgba(250, 246, 239, 0.35); }
.xj-btn--ghostlight:hover { border-color: var(--bone); }

.xj-btn--wa { background: var(--wa); color: #fff; box-shadow: 0 14px 36px -12px rgba(31, 191, 95, 0.55); }
.xj-btn--wa:hover { background: #23d169; }

.xj-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 15px;
	border-radius: 999px;
	background: rgba(22, 22, 28, 0.06);
	border: 1px solid var(--line);
	font-size: 13.5px;
	font-weight: 600;
}
.xj-chip--dark { background: rgba(250, 246, 239, 0.08); border-color: rgba(250, 246, 239, 0.2); color: var(--bone); }

/* =============================================================
   HEADER
   ============================================================= */
.xj-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	padding: 14px 0;
	transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.xj-header.is-scrolled {
	padding: 8px 0;
	background: rgba(250, 246, 239, 0.86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 8px 30px -16px rgba(22, 22, 28, 0.25);
}

/* Every page opens on a dark hero band — keep the bar light until scroll. */
.xj-header:not(.is-scrolled) .xj-brand__word,
.xj-header:not(.is-scrolled) .xj-nav a { color: var(--bone); }
.xj-header:not(.is-scrolled) .xj-nav a:hover { background: rgba(250, 246, 239, 0.14); }
.xj-header:not(.is-scrolled) .xj-header__donate { color: var(--bone); border-color: rgba(250, 246, 239, 0.35); }
.xj-header:not(.is-scrolled) .xj-header__donate:hover { border-color: var(--bone); }
.xj-header:not(.is-scrolled) .xj-menu-toggle { background: rgba(22, 22, 28, 0.35); border-color: rgba(250, 246, 239, 0.3); color: var(--bone); }
.xj-header__inner { display: flex; align-items: center; gap: 22px; }

.xj-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.xj-brand__logo, .xj-brand .custom-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 12px; }
.xj-brand__word { font-family: var(--f-display); font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; }
.xj-brand__word em { font-style: normal; color: var(--sun); }

.xj-nav { margin-left: auto; }
.xj-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.xj-nav a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s ease;
}
.xj-nav a:hover { background: rgba(22, 22, 28, 0.07); }

.xj-header__actions { display: flex; align-items: center; gap: 10px; }

.xj-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: rgba(250, 246, 239, 0.8);
	color: var(--ink);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

/* Slide-in panel (mobile) */
.xj-panel {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(400px, 92vw);
	background: var(--bone);
	z-index: 1200;
	transform: translateX(105%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 22px 26px 34px;
	box-shadow: -30px 0 60px -30px rgba(22, 22, 28, 0.4);
	overflow-y: auto;
}
.xj-panel.is-open { transform: translateX(0); }
.xj-panel__head { display: flex; align-items: center; justify-content: space-between; }
.xj-panel__close {
	width: 46px; height: 46px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}
.xj-panel__menu { display: flex; flex-direction: column; }
.xj-panel__menu a {
	font-family: var(--f-display);
	font-size: 27px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.xj-panel__menu a:hover { color: var(--sun); padding-left: 8px; }
.xj-panel__cta { display: flex; flex-direction: column; gap: 10px; }

.xj-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(22, 22, 28, 0.45);
	backdrop-filter: blur(3px);
	z-index: 1100;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.xj-backdrop.is-open { opacity: 1; pointer-events: auto; }

.xj-socials { display: flex; gap: 8px; }
.xj-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: 13px;
	border: 1px solid var(--line);
	color: var(--ink);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.xj-ico svg { width: 19px; height: 19px; fill: currentColor; }
.xj-ico:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }

/* =============================================================
   HERO
   ============================================================= */
.xj-hero {
	position: relative;
	min-height: min(94vh, 980px);
	display: flex;
	align-items: flex-end;
	padding: 170px 0 90px;
	color: var(--bone);
	overflow: hidden;
}
.xj-hero__bg { position: absolute; inset: 0; z-index: -1; }
.xj-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.xj-hero__wash {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(22, 22, 28, 0.42) 0%, rgba(22, 22, 28, 0.18) 40%, rgba(22, 22, 28, 0.78) 100%),
		radial-gradient(120% 90% at 85% 10%, color-mix(in srgb, var(--sun) 34%, transparent) 0%, transparent 55%);
}

.xj-hero__inner { position: relative; }
.xj-hero__kicker { color: var(--sun-2); font-size: clamp(22px, 3vw, 30px); }

.xj-hero__title {
	font-family: var(--f-display);
	text-transform: uppercase;
	font-size: clamp(58px, 11vw, 148px);
	line-height: 0.94;
	margin: 8px 0 18px;
	letter-spacing: 0.005em;
}
.xj-hero__line { display: block; }
.xj-hero__line i { font-style: normal; }
.xj-hero__line--mid { color: transparent; -webkit-text-stroke: 2px rgba(250, 246, 239, 0.9); }
.xj-hero__line--sun {
	background: var(--grad-sun);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.xj-hero__sub { max-width: 560px; font-size: clamp(16px, 2vw, 19px); color: rgba(250, 246, 239, 0.88); margin: 0 0 26px; }

.xj-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.xj-hero__cta .xj-btn--ink { background: rgba(250, 246, 239, 0.12); border: 1px solid rgba(250, 246, 239, 0.3); backdrop-filter: blur(6px); }
.xj-hero__cta .xj-btn--ink:hover { background: rgba(250, 246, 239, 0.22); }

.xj-hero__chips { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; }
.xj-hero__chips li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 15px;
	border-radius: 999px;
	background: rgba(22, 22, 28, 0.4);
	border: 1px solid rgba(250, 246, 239, 0.22);
	backdrop-filter: blur(8px);
	font-size: 13.5px;
	font-weight: 600;
}
.xj-hero__chips svg { color: var(--sun-2); }

.xj-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	width: 26px; height: 42px;
	border: 2px solid rgba(250, 246, 239, 0.5);
	border-radius: 999px;
	transform: translateX(-50%);
}
.xj-hero__scroll span {
	position: absolute;
	left: 50%; top: 8px;
	width: 4px; height: 8px;
	background: var(--sun-2);
	border-radius: 4px;
	transform: translateX(-50%);
	animation: xj-scrollcue 1.8s ease-in-out infinite;
}
@keyframes xj-scrollcue {
	0%, 100% { transform: translate(-50%, 0); opacity: 1; }
	70% { transform: translate(-50%, 12px); opacity: 0; }
}

/* =============================================================
   MARQUEE
   ============================================================= */
.xj-marquee {
	background: var(--ink);
	color: var(--bone);
	overflow: hidden;
	padding: 13px 0;
	transform: rotate(-1.2deg) scale(1.02);
	margin: -12px 0 0;
	position: relative;
	z-index: 5;
	box-shadow: 0 14px 30px -18px rgba(22, 22, 28, 0.5);
}
.xj-marquee__track {
	display: flex;
	width: max-content;
	animation: xj-marquee 26s linear infinite;
	font-family: var(--f-display);
	font-size: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}
.xj-marquee__track span { padding-right: 12px; }
.xj-marquee__track i { font-style: normal; color: var(--sun); padding: 0 10px; }
@keyframes xj-marquee { to { transform: translateX(-50%); } }

/* =============================================================
   PILLARS (Vir ma en pa)
   ============================================================= */
.xj-pillars { padding: 110px 0 80px; }

.xj-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.xj-pillar {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 34px 30px 30px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}
.xj-pillar:hover { transform: translateY(-6px); }
.xj-pillar__num {
	position: absolute;
	top: 14px; right: 20px;
	font-family: var(--f-display);
	font-size: 54px;
	color: rgba(22, 22, 28, 0.07);
	line-height: 1;
}
.xj-pillar__icon {
	width: 58px; height: 58px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: var(--cream);
	color: var(--sun);
	margin-bottom: 18px;
}
.xj-pillar h3 { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; }
.xj-pillar p { color: var(--ash); font-size: 15.5px; margin: 0; }

.xj-pillar--sun { background: var(--grad-sun); border: none; color: #fff; box-shadow: var(--shadow-sun); }
.xj-pillar--sun .xj-pillar__icon { background: rgba(255, 255, 255, 0.18); color: #fff; }
.xj-pillar--sun .xj-pillar__num { color: rgba(255, 255, 255, 0.22); }
.xj-pillar--sun p { color: rgba(255, 255, 255, 0.92); }

.xj-pillars__strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 48px;
}
.xj-pillars__strip img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease;
}
.xj-pillars__strip img:nth-child(odd) { transform: rotate(-1.4deg); }
.xj-pillars__strip img:nth-child(even) { transform: rotate(1.2deg) translateY(8px); }
.xj-pillars__strip img:hover { transform: rotate(0) scale(1.04); }

/* =============================================================
   IMPACT (dark)
   ============================================================= */
.xj-impact {
	position: relative;
	background: var(--ink);
	color: var(--bone);
	padding: 110px 0 120px;
	overflow: hidden;
}
.xj-impact__grain, .xj-next__grain, .xj-footer__grain {
	position: absolute;
	inset: 0;
	background: var(--grain);
	opacity: 0.07;
	pointer-events: none;
}
.xj-impact::before {
	content: "";
	position: absolute;
	inset: -30% -20% auto;
	height: 70%;
	background: radial-gradient(50% 60% at 50% 30%, color-mix(in srgb, var(--sun) 22%, transparent) 0%, transparent 70%);
	pointer-events: none;
}

.xj-impact__hero { text-align: center; margin: 10px 0 64px; position: relative; }
.xj-impact__big {
	font-family: var(--f-display);
	font-size: clamp(72px, 14vw, 190px);
	line-height: 1;
	background: var(--grad-sun);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: block;
}
.xj-impact__biglabel {
	display: block;
	max-width: 480px;
	margin: 10px auto 0;
	color: rgba(250, 246, 239, 0.62);
	font-size: 16px;
}

.xj-impact__years { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }

.xj-year {
	background: rgba(250, 246, 239, 0.05);
	border: 1px solid rgba(250, 246, 239, 0.12);
	border-radius: var(--r-md);
	padding: 24px 22px;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.xj-year:hover { transform: translateY(-5px); background: rgba(250, 246, 239, 0.08); border-color: color-mix(in srgb, var(--sun) 55%, transparent); }
.xj-year__head { display: flex; flex-direction: column; gap: 2px; border-bottom: 1px dashed rgba(250, 246, 239, 0.2); padding-bottom: 14px; margin-bottom: 14px; }
.xj-year__year { font-family: var(--f-display); font-size: 34px; color: var(--sun-2); line-height: 1; }
.xj-year__total { font-size: 14px; color: rgba(250, 246, 239, 0.6); }
.xj-year__total b { font-family: var(--f-display); font-size: 22px; color: var(--bone); letter-spacing: 0.03em; }
.xj-year__rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.xj-year__rows li { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; color: rgba(250, 246, 239, 0.75); }
.xj-year__rows b { font-weight: 700; color: var(--bone); }

/* =============================================================
   VIDEOS
   ============================================================= */
.xj-videos { padding: 110px 0; }

.xj-videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.xj-video {
	position: relative;
	border: none;
	border-radius: var(--r-lg);
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	background: var(--ink);
	aspect-ratio: 16 / 10.5;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease;
}
.xj-video:hover { transform: translateY(-6px); }
.xj-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.4s ease, opacity 0.3s ease; }
.xj-video:hover img { transform: scale(1.05); opacity: 1; }
.xj-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(22, 22, 28, 0.82) 100%);
}
.xj-video__play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 66px; height: 66px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--grad-sun);
	color: #fff;
	box-shadow: var(--shadow-sun);
	z-index: 2;
	transition: transform 0.25s ease;
}
.xj-video:hover .xj-video__play { transform: translate(-50%, -50%) scale(1.12); }
.xj-video__label {
	position: absolute;
	left: 20px; right: 20px; bottom: 16px;
	z-index: 2;
	color: var(--bone);
	font-family: var(--f-display);
	font-size: 21px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-align: left;
	display: flex;
	flex-direction: column;
}
.xj-video__label small { font-family: var(--f-body); font-size: 12px; font-weight: 600; color: var(--sun-2); letter-spacing: 0.12em; }

/* Video modal */
.xj-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 12, 0.88);
	backdrop-filter: blur(6px);
	padding: 24px;
}
.xj-modal.is-open { display: flex; }
.xj-modal__box { position: relative; width: min(1000px, 100%); }
.xj-modal__media { aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; background: #000; box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8); }
.xj-modal__media iframe { width: 100%; height: 100%; border: 0; display: block; }
.xj-modal__close {
	position: absolute;
	top: -52px; right: 0;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(250, 246, 239, 0.3);
	background: transparent;
	color: var(--bone);
	font-size: 26px;
	cursor: pointer;
	line-height: 1;
}

/* =============================================================
   NEXT CAMP → BOOKINGS (ticket banner)
   ============================================================= */
.xj-next { position: relative; background: var(--coal); padding: 100px 0; overflow: hidden; }
.xj-next::before {
	content: "";
	position: absolute;
	inset: auto -20% -60% -20%;
	height: 100%;
	background: radial-gradient(50% 50% at 50% 100%, color-mix(in srgb, var(--sun) 26%, transparent) 0%, transparent 70%);
	pointer-events: none;
}

.xj-next__ticket {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 190px;
	background: linear-gradient(150deg, #212129, #17171d);
	border: 1px solid rgba(250, 246, 239, 0.14);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.85);
}
.xj-next__ticket::before {
	/* Perforation between body and stub. */
	content: "";
	position: absolute;
	top: 10px; bottom: 10px;
	right: 190px;
	border-right: 2px dashed rgba(250, 246, 239, 0.25);
}
.xj-next__ticket::after {
	content: "";
	position: absolute;
	right: 178px; top: -12px;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--coal);
	box-shadow: 0 calc(100% + 570px) 0 var(--coal);
}

.xj-next__main { padding: 46px 50px; color: var(--bone); }
.xj-next__title {
	font-family: var(--f-display);
	font-size: clamp(38px, 6vw, 66px);
	text-transform: uppercase;
	color: var(--bone);
	margin: 6px 0 16px;
}
.xj-next__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.xj-next__copy { color: rgba(250, 246, 239, 0.72); max-width: 560px; margin: 0 0 26px; }
.xj-next__copy b { color: var(--sun-2); }
.xj-next__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.xj-next__more { color: rgba(250, 246, 239, 0.75); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(250, 246, 239, 0.3); padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.xj-next__more:hover { color: var(--sun-2); border-color: var(--sun-2); }

.xj-next__stub {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 26px 16px;
	color: rgba(250, 246, 239, 0.75);
}
.xj-next__stub-top { font-family: var(--f-display); font-size: 22px; letter-spacing: 0.35em; color: var(--sun); writing-mode: vertical-rl; }
.xj-next__barcode {
	width: 54px;
	flex: 1;
	max-height: 190px;
	background: repeating-linear-gradient(180deg, rgba(250, 246, 239, 0.85) 0 2px, transparent 2px 5px, rgba(250, 246, 239, 0.85) 5px 9px, transparent 9px 12px);
	border-radius: 3px;
}
.xj-next__stub-code { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; writing-mode: vertical-rl; }

/* =============================================================
   VIR OUERS (prakties)
   ============================================================= */
.xj-parents { padding: 110px 0; background: var(--cream); }

.xj-parents__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.xj-parents__copy h2 { font-family: var(--f-display); font-size: clamp(32px, 4.6vw, 50px); text-transform: uppercase; }
.xj-parents__copy > p { color: var(--ash); margin-bottom: 30px; }

.xj-parents__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.xj-parents__list a {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 16px 20px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.xj-parents__list a:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--sun) 45%, transparent); }
.xj-parents__ico {
	flex: none;
	width: 46px; height: 46px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--cream);
	color: var(--sun);
}
.xj-parents__list b { display: block; font-size: 16px; }
.xj-parents__list small { color: var(--ash); font-size: 13.5px; }

.xj-parents__photo { position: relative; margin: 0; }
.xj-parents__photo img {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-soft);
	transform: rotate(1.6deg);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	width: 100%;
}
.xj-parents__photo figcaption {
	position: absolute;
	bottom: -12px; left: 24px;
	background: var(--ink);
	color: var(--sun-2);
	padding: 8px 22px;
	border-radius: 999px;
	transform: rotate(-3deg);
	font-size: 22px;
}

/* =============================================================
   INVOLVE (WhatsApp form)
   ============================================================= */
.xj-involve { padding: 110px 0; }

.xj-involve__card {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 50px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 54px;
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}
.xj-involve__card::before {
	content: "";
	position: absolute;
	top: -80px; right: -80px;
	width: 260px; height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in srgb, var(--sun) 22%, transparent), transparent 70%);
	pointer-events: none;
}
.xj-involve__intro h2 { font-family: var(--f-display); font-size: clamp(32px, 4.6vw, 48px); text-transform: uppercase; }
.xj-involve__intro p { color: var(--ash); }

.xj-involve__form { display: flex; flex-direction: column; gap: 16px; }
.xj-involve__note { font-size: 13px; color: var(--ash); margin: 0; }

.xj-field { display: flex; flex-direction: column; gap: 7px; }
.xj-field span { font-size: 13.5px; font-weight: 700; letter-spacing: 0.03em; }
.xj-field input, .xj-field select, .xj-field textarea {
	font-family: var(--f-body);
	font-size: 15.5px;
	color: var(--ink);
	background: var(--bone);
	border: 1.5px solid var(--line);
	border-radius: 14px;
	padding: 13px 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}
.xj-field textarea { resize: vertical; }
.xj-field input:focus, .xj-field select:focus, .xj-field textarea:focus {
	outline: none;
	border-color: var(--sun);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--sun) 18%, transparent);
}

/* =============================================================
   ONEHEART STRIP
   ============================================================= */
.xj-oneheart { padding: 0 0 110px; }
.xj-oneheart__inner {
	display: flex;
	align-items: center;
	gap: 34px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 38px 46px;
}
.xj-oneheart__logo { width: 96px; height: 96px; object-fit: contain; flex: none; }
.xj-oneheart__copy { flex: 1; }
.xj-oneheart__copy h2 { font-family: var(--f-display); font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; margin-bottom: 6px; }
.xj-oneheart__copy p { color: var(--ash); margin: 0; }

/* =============================================================
   SUB-PAGE HERO
   ============================================================= */
.xj-pagehero {
	position: relative;
	background: var(--ink);
	color: var(--bone);
	padding: 190px 0 90px;
	overflow: hidden;
	text-align: center;
}
.xj-pagehero__glow {
	position: absolute;
	inset: auto -20% -70%;
	height: 120%;
	background: radial-gradient(50% 50% at 50% 100%, color-mix(in srgb, var(--sun) 30%, transparent) 0%, transparent 70%);
	pointer-events: none;
}
.xj-pagehero__title {
	font-family: var(--f-display);
	font-size: clamp(52px, 9vw, 110px);
	text-transform: uppercase;
	line-height: 0.96;
	margin: 8px 0 14px;
}
.xj-pagehero__title em {
	font-style: normal;
	background: var(--grad-sun);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.xj-pagehero__sub { max-width: 620px; margin: 0 auto; color: rgba(250, 246, 239, 0.7); font-size: 17px; }

/* =============================================================
   WIE ONS IS
   ============================================================= */
.xj-about { padding: 100px 0; }

.xj-about__intro {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 90px;
}
.xj-about__photo { margin: 0; }
.xj-about__photo img {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-soft);
	transform: rotate(-1.6deg);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	width: 100%;
}
.xj-about__introcopy h2 { font-family: var(--f-display); font-size: clamp(32px, 4.6vw, 50px); text-transform: uppercase; }
.xj-about__introcopy p { color: var(--ash); }
.xj-about__quote {
	margin: 26px 0 0;
	padding: 22px 26px;
	background: var(--cream);
	border-left: 4px solid var(--sun);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-weight: 600;
	font-size: 16.5px;
}

.xj-about__blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 100px; }
.xj-block {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 36px 30px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}
.xj-block__num {
	font-family: var(--f-display);
	font-size: 46px;
	line-height: 1;
	color: var(--sun);
	display: block;
	margin-bottom: 12px;
}
.xj-block h3 { font-family: var(--f-display); font-size: 25px; text-transform: uppercase; }
.xj-block p { color: var(--ash); font-size: 15.5px; margin: 0; }
.xj-block--sun { background: var(--ink); border: none; color: var(--bone); }
.xj-block--sun .xj-block__num { color: var(--sun-2); }
.xj-block--sun p { color: rgba(250, 246, 239, 0.72); }

.xj-teams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 70px; }
.xj-team {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px 24px;
	transition: transform 0.2s ease, background 0.2s ease;
}
.xj-team:hover { transform: translateY(-5px); background: #fff; }
.xj-team h3 { font-family: var(--f-display); font-size: 20px; text-transform: uppercase; color: var(--sun); }
.xj-team p { color: var(--ash); font-size: 14.5px; margin: 0; }

.xj-about__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =============================================================
   HULPBRONNE
   ============================================================= */
.xj-docs { padding: 100px 0; }

.xj-docs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }

.xj-doc {
	display: grid;
	grid-template-columns: 210px 1fr;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease;
}
.xj-doc:hover { transform: translateY(-5px); }
.xj-doc__preview { position: relative; margin: 0; background: var(--cream); min-height: 230px; }
.xj-doc__preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.xj-doc__preview--pdf { display: grid; place-items: center; color: var(--coral); }
.xj-doc__badge {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--ink);
	color: var(--bone);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	padding: 5px 10px;
	border-radius: 8px;
}
.xj-doc__body { padding: 28px 28px 26px; display: flex; flex-direction: column; }
.xj-doc__body h2 { font-family: var(--f-display); font-size: 27px; text-transform: uppercase; }
.xj-doc__body p { color: var(--ash); font-size: 15px; flex: 1; }
.xj-doc__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.xj-docs__help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--r-lg);
	padding: 32px 40px;
}
.xj-docs__help h3 { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; margin-bottom: 4px; }
.xj-docs__help p { color: rgba(250, 246, 239, 0.65); margin: 0; }

/* =============================================================
   KONTAK
   ============================================================= */
.xj-contact { padding: 100px 0; }

.xj-contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; margin-bottom: 80px; align-items: start; }

.xj-contact__details {
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--r-lg);
	padding: 44px 40px;
	position: sticky;
	top: 100px;
}
.xj-contact__details h2 { font-family: var(--f-display); font-size: clamp(26px, 3.4vw, 36px); text-transform: uppercase; }
.xj-contact__list { list-style: none; margin: 24px 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.xj-contact__list li { display: flex; flex-direction: column; gap: 2px; border-bottom: 1px dashed rgba(250, 246, 239, 0.18); padding-bottom: 14px; }
.xj-contact__list b { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun-2); }
.xj-contact__list a, .xj-contact__list span { color: var(--bone); font-size: 18px; font-weight: 600; text-decoration: none; }
.xj-contact__list a:hover { color: var(--sun-2); }
.xj-contact__quick { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.xj-contact__quick .xj-btn--ghost { color: var(--bone); border-color: rgba(250, 246, 239, 0.3); }
.xj-contact__quick .xj-btn--ghost:hover { border-color: var(--bone); }

.xj-contact__maps h3 { font-family: var(--f-display); font-size: 21px; text-transform: uppercase; margin-bottom: 4px; }
.xj-contact__maps p { color: rgba(250, 246, 239, 0.6); font-size: 14.5px; margin: 0 0 12px; }
.xj-contact__mapbtns { display: flex; flex-wrap: wrap; gap: 10px; }
.xj-contact__mapbtns .xj-btn--ink { background: rgba(250, 246, 239, 0.1); border: 1px solid rgba(250, 246, 239, 0.22); }
.xj-contact__mapbtns .xj-btn--ink:hover { background: rgba(250, 246, 239, 0.2); }
.xj-contact__tip { font-size: 13px; color: rgba(250, 246, 239, 0.5); margin: 14px 0 0; }

.xj-contact__right { display: flex; flex-direction: column; gap: 24px; }

.xj-shortcuts, .xj-contactform {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 36px;
	box-shadow: var(--shadow-soft);
}
.xj-shortcuts h3, .xj-contactform h3 { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; margin-bottom: 4px; }
.xj-shortcuts > p, .xj-contactform > p { color: var(--ash); font-size: 15px; margin: 0 0 20px; }
.xj-shortcuts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.xj-shortcut {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 16px 18px;
	background: var(--bone);
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.xj-shortcut:hover { transform: translateY(-3px); border-color: var(--wa); box-shadow: 0 12px 26px -14px rgba(31, 191, 95, 0.5); }
.xj-shortcut b { font-size: 15px; }
.xj-shortcut small { color: var(--ash); font-size: 12.5px; }

.xj-contactform { display: flex; flex-direction: column; gap: 16px; }

/* FAQ */
.xj-faq { max-width: 780px; margin-inline: auto; }
.xj-faq__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	margin-bottom: 10px;
	overflow: hidden;
}
.xj-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	list-style: none;
	cursor: pointer;
	padding: 19px 24px;
	font-weight: 700;
	font-size: 16.5px;
}
.xj-faq__item summary::-webkit-details-marker { display: none; }
.xj-faq__item summary span {
	flex: none;
	width: 30px; height: 30px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--cream);
	color: var(--sun);
	font-weight: 800;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.xj-faq__item[open] summary span { transform: rotate(45deg); background: var(--sun); color: #fff; }
.xj-faq__item p { margin: 0; padding: 0 24px 20px; color: var(--ash); }
.xj-faq__cta { text-align: center; margin-top: 30px; }

/* =============================================================
   GENERIC PAGE
   ============================================================= */
.xj-page { padding: 90px 0; }
.xj-page__content { max-width: 780px; }
.xj-page__content h2 { font-family: var(--f-display); text-transform: uppercase; }
.xj-page__entry { border-bottom: 1px solid var(--line); padding-bottom: 26px; margin-bottom: 26px; }

/* =============================================================
   FOOTER
   ============================================================= */
.xj-footer {
	position: relative;
	background: var(--ink);
	color: var(--bone);
	padding: 100px 0 120px;
	overflow: hidden;
}
.xj-footer::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto;
	height: 80%;
	background: radial-gradient(45% 55% at 50% 0%, color-mix(in srgb, var(--sun) 14%, transparent) 0%, transparent 70%);
	pointer-events: none;
}

.xj-footer__big {
	font-family: var(--f-display);
	font-size: clamp(44px, 8.5vw, 108px);
	line-height: 1.02;
	text-transform: uppercase;
	margin-bottom: 64px;
}
.xj-footer__big span { color: transparent; -webkit-text-stroke: 2px rgba(250, 246, 239, 0.75); padding: 0 14px; }
.xj-footer__big em {
	font-style: normal;
	background: var(--grad-sun);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.xj-footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
.xj-footer__col { display: flex; flex-direction: column; gap: 10px; }
.xj-footer__col .t { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sun-2); font-weight: 700; margin-bottom: 6px; }
.xj-footer__col a { color: rgba(250, 246, 239, 0.78); text-decoration: none; font-size: 15.5px; transition: color 0.2s ease, padding-left 0.2s ease; }
.xj-footer__col a:hover { color: var(--sun-2); padding-left: 4px; }
.xj-footer__addr { color: rgba(250, 246, 239, 0.55); font-size: 14.5px; }
.xj-footer__col .xj-socials { margin-top: 8px; }
.xj-footer__col .xj-ico { border-color: rgba(250, 246, 239, 0.22); color: rgba(250, 246, 239, 0.85); }
.xj-footer__col .xj-ico:hover { background: var(--grad-sun); color: #fff; }

.xj-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(250, 246, 239, 0.14);
	padding-top: 26px;
	color: rgba(250, 246, 239, 0.5);
	font-size: 13.5px;
}
.xj-footer__bottom b { color: rgba(250, 246, 239, 0.85); }

/* =============================================================
   PILL NAV (floating, brand family)
   ============================================================= */
.xj-pill {
	position: fixed;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 900;
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(22, 22, 28, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(250, 246, 239, 0.14);
	border-radius: 999px;
	padding: 7px;
	box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}
.xj-pill__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	min-width: 64px;
	padding: 8px 12px;
	border-radius: 999px;
	color: rgba(250, 246, 239, 0.8);
	text-decoration: none;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease;
}
.xj-pill__item:hover { background: rgba(250, 246, 239, 0.1); color: #fff; }
.xj-pill__item img { width: 26px; height: 26px; object-fit: contain; filter: grayscale(1) brightness(1.8); transition: filter 0.2s ease; }
.xj-pill__item:hover img { filter: none; }
.xj-pill__item--cta { background: var(--grad-sun); color: #fff; box-shadow: var(--shadow-sun); }
.xj-pill__item--cta:hover { background: var(--grad-sun); filter: brightness(1.08); }

/* =============================================================
   SOUND TOGGLE (welcome chord)
   ============================================================= */
.xj-sound {
	position: fixed;
	left: 18px;
	bottom: 24px;
	z-index: 901;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(250, 246, 239, 0.16);
	background: rgba(22, 22, 28, 0.88);
	backdrop-filter: blur(14px);
	color: var(--bone);
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.6);
	transition: transform 0.2s ease, color 0.2s ease;
}
.xj-sound:hover { transform: scale(1.08); color: var(--sun-2); }
.xj-sound .xj-sound__off { display: none; }
.xj-sound[data-state="off"] .xj-sound__on { display: none; }
.xj-sound[data-state="off"] .xj-sound__off { display: block; }
.xj-sound.is-playing { animation: xj-soundpulse 2.4s ease-in-out infinite; }
@keyframes xj-soundpulse {
	0%, 100% { box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.6), 0 0 0 0 color-mix(in srgb, var(--sun) 45%, transparent); }
	50% { box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.6), 0 0 0 12px transparent; }
}

/* =============================================================
   REVEAL ON SCROLL
   ============================================================= */
.xj-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.xj-reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.xj-nav { display: none; }
	.xj-menu-toggle { display: inline-flex; }
	.xj-header__donate { display: none; }

	.xj-pillars__grid, .xj-about__blocks { grid-template-columns: 1fr; }
	.xj-impact__years { grid-template-columns: repeat(2, 1fr); }
	.xj-videos__grid { grid-template-columns: 1fr; }
	.xj-parents__grid, .xj-about__intro, .xj-involve__card, .xj-contact__grid, .xj-docs__grid { grid-template-columns: 1fr; }
	.xj-parents__photo { order: -1; max-width: 420px; }
	.xj-teams { grid-template-columns: repeat(2, 1fr); }
	.xj-shortcuts__grid { grid-template-columns: repeat(2, 1fr); }
	.xj-contact__details { position: static; }
	.xj-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.xj-pillars__strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.xj-wrap { width: calc(100% - 32px); }

	.xj-header__book { padding: 10px 16px; font-size: 13.5px; }
	.xj-brand__word { display: none; }

	.xj-hero { padding: 140px 0 110px; min-height: 88vh; }
	.xj-hero__chips { gap: 7px; }
	.xj-hero__chips li { font-size: 12px; padding: 7px 12px; }

	.xj-pillars, .xj-videos, .xj-parents, .xj-involve, .xj-impact { padding: 70px 0; }
	.xj-impact__years { grid-template-columns: 1fr; }
	.xj-involve__card { padding: 30px 24px; }
	.xj-teams, .xj-shortcuts__grid { grid-template-columns: 1fr; }
	.xj-doc { grid-template-columns: 1fr; }
	.xj-doc__preview { max-height: 260px; }
	.xj-footer__grid { grid-template-columns: 1fr; }
	.xj-oneheart__inner { flex-direction: column; text-align: center; padding: 32px 24px; }

	.xj-next__ticket { grid-template-columns: 1fr; }
	.xj-next__ticket::before { display: none; }
	.xj-next__ticket::after { display: none; }
	.xj-next__main { padding: 34px 26px; }
	.xj-next__stub { flex-direction: row; padding: 18px 26px 26px; gap: 14px; }
	.xj-next__stub-top, .xj-next__stub-code { writing-mode: horizontal-tb; }
	.xj-next__barcode { height: 40px; max-height: none; width: auto; flex: 1; background: repeating-linear-gradient(90deg, rgba(250, 246, 239, 0.85) 0 2px, transparent 2px 5px, rgba(250, 246, 239, 0.85) 5px 9px, transparent 9px 12px); }

	.xj-pill { bottom: 12px; width: calc(100% - 84px); justify-content: space-between; overflow-x: auto; }
	.xj-pill__item { min-width: 52px; padding: 7px 6px; font-size: 9px; letter-spacing: 0.03em; }
	.xj-pill__item img { width: 23px; height: 23px; }
	.xj-sound { left: 12px; bottom: 16px; }

	.xj-pagehero { padding: 150px 0 70px; }
	.xj-about, .xj-docs, .xj-contact { padding: 70px 0; }
	.xj-docs__help { padding: 26px; }
	.xj-shortcuts, .xj-contactform { padding: 26px 22px; }
	.xj-contact__details { padding: 32px 26px; }
}

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



/* Force WhatsApp Button Styling */
.xj-btn--wa { 
	background: var(--wa) !important; 
	color: #fff !important; 
	box-shadow: 0 14px 36px -12px rgba(31, 191, 95, 0.55) !important; 
}
.xj-btn--wa:hover { 
	background: #23d169 !important; 
}

