/**
 * Collectiv — main stylesheet.
 *
 * Tokens below are taken directly from the Collectiv Ticket Platform design
 * handoff (Collectiv.dc.html + Collectiv Event Page.dc.html). Reskinning the
 * whole theme = editing the :root tokens.
 */

/* -------------------------------------------------------------------------
 * Design tokens (from the Collectiv design system)
 * ---------------------------------------------------------------------- */
:root {
	/* Surfaces */
	--c-bg: #08060d;          /* page background */
	--c-bg-2: #0a0810;        /* deep panel */
	--c-surface: #120d1a;     /* cards */
	--c-surface-alt: #100c18; /* cards (event) */
	--c-surface-2: #15111d;   /* chips / raised */
	--c-surface-3: #1a1322;   /* inputs / controls */
	--c-inset: #0c0814;       /* inset wells */

	/* Lines */
	--c-line: #2a2238;        /* default border */
	--c-line-soft: #1c1626;   /* subtle border */
	--c-line-softer: #15111d; /* subtlest divider */
	--c-line-input: #3a2e48;  /* control border */

	/* Text */
	--c-text: #f4f1f7;        /* primary */
	--c-text-bright: #e8e4ef;
	--c-text-2: #cfc7da;      /* secondary */
	--c-muted: #9a92a8;       /* muted */
	--c-muted-2: #8b8398;
	--c-dim: #7d7490;         /* dim */
	--c-dimmer: #5a5266;      /* dimmest */

	/* Accents */
	--c-accent: #ff2d78;      /* brand pink */
	--c-accent-bright: #ff5594;
	--c-accent-light: #ff8fc0;
	--c-violet: #7a2cff;
	--c-violet-light: #b79bff;
	--c-blue: #2c8bff;
	--c-blue-light: #9fb8ff;
	--c-orange: #ff8a3d;
	--c-success: #2fe08f;
	--c-warning: #ffd27a;

	--c-brand-gradient: linear-gradient(135deg, var(--c-accent), var(--c-violet));
	--c-glow-pink: 0 0 30px rgba(255, 45, 120, 0.4);

	/* Page background glows (from the hub hero) */
	--c-bg-glows:
		radial-gradient(1100px 600px at 12% -8%, rgba(122, 44, 255, 0.16), transparent),
		radial-gradient(900px 520px at 100% 0%, rgba(255, 45, 120, 0.11), transparent);

	/* Typography */
	--font-display: "Space Grotesk", system-ui, sans-serif;
	--font-body: "Space Grotesk", system-ui, sans-serif;
	--font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

	/* Spacing scale */
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2.5rem;
	--space-5: 4rem;
	--space-6: 6rem;

	/* Layout */
	--container: 1120px;
	--container-narrow: 760px;
	--radius: 16px;
	--radius-lg: 18px;
	--radius-md: 12px;
	--radius-sm: 9px;

	--shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
	--ring: 0 0 0 3px rgba(255, 45, 120, 0.35);
	--transition: 150ms ease;
}

/* -------------------------------------------------------------------------
 * Reset & base
 * ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--c-bg);
	background-image: var(--c-bg-glows);
	background-attachment: fixed;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

::selection { background: var(--c-accent); color: #0a0a0a; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 var(--space-2);
	letter-spacing: -0.02em;
	color: var(--c-text);
}

p { margin: 0 0 var(--space-2); }

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--c-accent-bright); }

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

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

/* Mono label / eyebrow — the signature Collectiv detail */
.mono-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-dim);
}

/* -------------------------------------------------------------------------
 * Layout helpers
 * ---------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-3);
}
.container--narrow { max-width: var(--container-narrow); }

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1 0 auto; padding-block: var(--space-5); }
.section { padding-block: var(--space-5); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 100;
	background: var(--c-accent); color: #0a0a0a;
	padding: var(--space-1) var(--space-2);
	border-radius: 0 0 var(--radius-sm) 0;
	font-family: var(--font-display); font-weight: 700;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
 * Buttons
 * ---------------------------------------------------------------------- */
.button,
button,
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.95em 1.6em;
	border: 1px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
/* Primary — pink with dark text and a glow, per the design's Get-tickets CTA */
.button--primary,
input[type="submit"],
.wp-block-button__link {
	background: var(--c-accent);
	color: #0a0a0a;
	box-shadow: var(--c-glow-pink);
}
.button--primary:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover { background: var(--c-accent-bright); color: #0a0a0a; transform: translateY(-2px); }

/* Light — white pill used for "Sign in" / "Pay" */
.button--light { background: var(--c-text); color: #0a0a0a; }
.button--light:hover { background: #fff; color: #0a0a0a; transform: translateY(-1px); }

/* Ghost — bordered */
.button--ghost { background: transparent; color: var(--c-text-2); border-color: var(--c-line); }
.button--ghost:hover { border-color: var(--c-accent); color: var(--c-text); }

/* -------------------------------------------------------------------------
 * Header
 * ---------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(8, 6, 13, 0.82);
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--c-line-softer);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header__inner { display: flex; align-items: center; gap: var(--space-3); min-height: 68px; }

.site-branding .site-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -0.02em;
	margin: 0;
}
.site-branding .site-title a { color: var(--c-text); }
/* Pink dot flourish for the exact "Collectiv" wordmark (see header.php). */
.site-branding .brand-dot { color: var(--c-accent); }
.custom-logo { max-height: 40px; width: auto; }

.main-navigation { margin-left: auto; }
.primary-menu { display: flex; align-items: center; gap: var(--space-3); list-style: none; margin: 0; padding: 0; }
.primary-menu a { color: var(--c-muted); font-weight: 500; font-size: 0.9rem; }
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--c-text); }

.site-header__actions { display: flex; align-items: center; gap: var(--space-2); }
.header-cart { position: relative; display: inline-flex; align-items: center; gap: 0.4em; color: var(--c-text); font-weight: 600; }
.header-cart__count {
	display: inline-grid; place-items: center;
	min-width: 1.4em; height: 1.4em; padding: 0 0.4em;
	border-radius: 999px; background: var(--c-accent); color: #0a0a0a;
	font-size: 0.72rem; font-weight: 700;
}

.menu-toggle { display: none; background: var(--c-surface); border: 1px solid var(--c-line); padding: 0.6em; border-radius: var(--radius-sm); }
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after {
	content: ""; display: block; width: 20px; height: 2px; background: var(--c-text); position: relative; transition: var(--transition);
}
.menu-toggle__bars::before { position: absolute; top: -6px; }
.menu-toggle__bars::after { position: absolute; top: 6px; }

/* -------------------------------------------------------------------------
 * Hero
 * ---------------------------------------------------------------------- */
.hero {
	position: relative;
	padding-block: clamp(3.5rem, 10vw, 7rem);
	overflow: hidden;
}
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background: var(--hero-image, none);
	background-size: cover; background-position: center;
	opacity: var(--hero-image-opacity, 0);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.72rem;
	color: var(--c-accent-light);
	margin-bottom: var(--space-2);
}
.hero__title {
	font-size: clamp(2.75rem, 7vw, 4.25rem);
	letter-spacing: -0.035em;
	line-height: 0.98;
	margin-bottom: var(--space-3);
}
.hero__title .accent {
	color: var(--c-accent-bright);
	text-shadow: 0 0 24px rgba(255, 45, 120, 0.5);
}
.hero__lead { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--c-muted); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); align-items: center; }
.hero__note { font-family: var(--font-mono); font-size: 0.7rem; color: var(--c-dim); letter-spacing: 0.04em; }

/* -------------------------------------------------------------------------
 * Section headers
 * ---------------------------------------------------------------------- */
.section__header { margin-bottom: var(--space-4); }
.section__title { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
.section__subtitle { color: var(--c-muted); font-size: 1.05rem; margin: 0; }
.section__cta { margin-top: var(--space-4); text-align: center; }
.section__empty { color: var(--c-muted); }

/* Section eyebrow row (mono label + rule) like the hub sections */
.section-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.section-eyebrow__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-accent-light); }
.section-eyebrow__rule { flex: 1; height: 1px; background: linear-gradient(90deg, #3a2438, transparent); }

/* -------------------------------------------------------------------------
 * Cards / grids
 * ---------------------------------------------------------------------- */
.posts-grid { display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.card {
	background: var(--c-surface);
	border: 1px solid var(--c-line-soft);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.card .post-thumbnail { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: repeating-linear-gradient(125deg, #191120, #191120 9px, #221829 9px, #221829 18px); }
.card .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--space-3); display: flex; flex-direction: column; gap: var(--space-1); flex: 1; }
.card .entry-title { font-size: 1.15rem; margin: 0; }
.card .entry-title a { color: var(--c-text); }
.card .entry-title a:hover { color: var(--c-accent); }
.card .entry-meta { color: var(--c-dim); font-size: 0.8rem; font-family: var(--font-mono); display: flex; gap: 0.6em; flex-wrap: wrap; }
.card .entry-summary { color: var(--c-muted); flex: 1; font-size: 0.92rem; }
.card__link { font-weight: 700; font-family: var(--font-display); font-size: 0.9rem; }

/* -------------------------------------------------------------------------
 * 3% trust strip (from the event page)
 * ---------------------------------------------------------------------- */
.trust-strip {
	border-radius: var(--radius);
	background: linear-gradient(120deg, #1a0f1a, #140b1c);
	border: 1px solid #3a1f30;
	padding: var(--space-4);
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--space-3); flex-wrap: wrap;
	box-shadow: inset 0 0 70px rgba(255, 45, 120, 0.06);
}
.trust-strip__headline { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.75rem, 4vw, 2.15rem); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.trust-strip__headline .accent { color: var(--c-accent-bright); text-shadow: 0 0 20px rgba(255, 45, 120, 0.5); }
.trust-strip__headline .strike { color: var(--c-dimmer); }
.trust-strip__body { font-size: 0.92rem; color: var(--c-muted); max-width: 380px; line-height: 1.6; margin: 0; }

/* -------------------------------------------------------------------------
 * Single / page content
 * ---------------------------------------------------------------------- */
.page-header { margin-bottom: var(--space-4); }
.page-title { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.03em; }
.entry--single .entry-title,
.entry--page .entry-title { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.035em; }
.entry--single .entry-meta,
.entry--page .entry-meta { color: var(--c-dim); font-family: var(--font-mono); font-size: 0.82rem; margin-top: var(--space-2); }
.entry--single .post-thumbnail,
.entry--page .post-thumbnail { margin: var(--space-4) 0; border-radius: var(--radius); overflow: hidden; }
.entry-content { font-size: 1.05rem; color: var(--c-text-2); }
.entry-content > * + * { margin-top: var(--space-2); }
.entry-content h2, .entry-content h3 { color: var(--c-text); margin-top: var(--space-4); }
.entry-content a { color: var(--c-accent-light); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
	border-left: 3px solid var(--c-accent);
	padding-left: var(--space-3); margin-inline: 0;
	color: var(--c-muted); font-size: 1.15rem;
}
.entry-footer { margin-top: var(--space-4); color: var(--c-dim); font-size: 0.85rem; font-family: var(--font-mono); display: flex; gap: var(--space-2); flex-wrap: wrap; }
.entry-footer a { color: var(--c-muted); }
.entry-footer a:hover { color: var(--c-accent); }

/* -------------------------------------------------------------------------
 * Navigation (pagination, post nav)
 * ---------------------------------------------------------------------- */
.pagination, .posts-navigation, .post-navigation { margin-top: var(--space-5); }
.pagination .nav-links { display: flex; gap: var(--space-1); flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
	display: inline-grid; place-items: center; min-width: 2.6em; height: 2.6em; padding: 0 0.6em;
	border: 1px solid var(--c-line); border-radius: var(--radius-sm); color: var(--c-text); font-family: var(--font-mono); font-size: 0.85rem;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--c-surface-2); border-color: var(--c-accent); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: var(--space-3); }
.post-navigation .nav-subtitle { display: block; color: var(--c-dim); font-size: 0.72rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.post-navigation .nav-title { font-family: var(--font-display); font-weight: 600; }

/* -------------------------------------------------------------------------
 * Search form
 * ---------------------------------------------------------------------- */
.search-form { display: flex; gap: var(--space-1); max-width: 520px; }
.search-field {
	flex: 1; background: var(--c-surface); border: 1px solid var(--c-line); color: var(--c-text);
	border-radius: var(--radius-md); padding: 0.9em 1.2em; font: inherit;
}
.search-field::placeholder { color: var(--c-dim); }
.search-field:focus { border-color: var(--c-accent); outline: none; }

/* -------------------------------------------------------------------------
 * Widgets & sidebar
 * ---------------------------------------------------------------------- */
.widget-area { display: grid; gap: var(--space-2); align-content: start; }
.widget { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--radius); padding: var(--space-3); }
.widget-title { font-size: 1.05rem; margin-bottom: var(--space-2); }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5em; }
.widget a { color: var(--c-muted); }
.widget a:hover { color: var(--c-accent); }

/* -------------------------------------------------------------------------
 * Footer
 * ---------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--c-line-softer); background: var(--c-bg-2); padding-block: var(--space-5) var(--space-3); margin-top: var(--space-6); }
.site-footer__widgets { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: var(--space-4); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); padding-top: var(--space-3); border-top: 1px solid var(--c-line-softer); }
.site-footer__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; margin: 0; }
.site-footer__brand .brand-dot { color: var(--c-accent); }
.footer-menu { display: flex; gap: var(--space-3); list-style: none; margin: 0; padding: 0; font-family: var(--font-mono); font-size: 0.78rem; }
.footer-menu a { color: var(--c-dim); }
.footer-menu a:hover { color: var(--c-accent); }
.site-footer__copy { color: var(--c-dim); font-family: var(--font-mono); font-size: 0.75rem; margin: 0; }

/* -------------------------------------------------------------------------
 * WooCommerce touch-ups (on-brand defaults; full event/buy page in Phase 2)
 * ---------------------------------------------------------------------- */
.woocommerce ul.products { display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin: 0; padding: 0; }
.woocommerce ul.products li.product { list-style: none; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--radius); overflow: hidden; padding: 0; text-align: left; }
.woocommerce ul.products li.product a img { border-radius: 0; margin: 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: var(--space-3) var(--space-3) 0; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--c-text); }
.woocommerce ul.products li.product .price { display: block; padding: 0.4em var(--space-3) 0; color: var(--c-accent-bright); font-weight: 700; font-family: var(--font-display); }
.woocommerce ul.products li.product .price del { color: var(--c-dim); font-weight: 400; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button { margin: var(--space-3); }
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-error { background: var(--c-surface-2); border-top-color: var(--c-accent); color: var(--c-text); }

/* -------------------------------------------------------------------------
 * Front page — the Hub card grid
 * ---------------------------------------------------------------------- */
.hub { padding-block: var(--space-4) var(--space-5); }
.hub-section { margin-bottom: var(--space-4); }
.hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 14px;
}
.hub-card {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-surface);
	padding: 18px;
	transition: transform var(--transition), border-color var(--transition);
}
.hub-card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.hub-card__icon {
	width: 42px; height: 42px; flex: 0 0 auto;
	border-radius: 11px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.hub-card__body { flex: 1; min-width: 0; }
.hub-card__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hub-card__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--c-text); }
.hub-card__badge {
	font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em;
	border: 1px solid currentColor; padding: 2px 7px; border-radius: 10px;
	opacity: 0.85;
}
.hub-card__desc {
	display: block; margin-top: 5px;
	font-weight: 500; font-size: 12px; line-height: 1.5; color: var(--c-muted-2, #8b8398);
}
/* Unbuilt surfaces render identically to the design; the link just waits. */
.hub-card--soon { cursor: default; }

.hub-foot {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 16px;
	margin-top: var(--space-4); padding-top: var(--space-3);
	border-top: 1px solid var(--c-line-softer);
	font-family: var(--font-mono); font-size: 11px; color: var(--c-dimmer); letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
 * Event / buy page
 * ---------------------------------------------------------------------- */
.event-single { padding-top: 0; }

.event-hero {
	position: relative;
	padding-block: clamp(3rem, 8vw, 6rem);
	background:
		linear-gradient(180deg, rgba(8,6,13,0.35) 0%, transparent 32%, rgba(8,6,13,0.7) 78%, var(--c-bg) 100%),
		radial-gradient(620px 440px at 72% 30%, rgba(255,45,120,0.32), transparent),
		radial-gradient(520px 360px at 20% 80%, rgba(122,44,255,0.26), transparent),
		repeating-linear-gradient(125deg, #191120, #191120 14px, #221829 14px, #221829 28px);
	overflow: hidden;
}
.event-hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background: var(--event-flyer, none); background-size: cover; background-position: center;
	opacity: 0.35; mix-blend-mode: luminosity;
}
.event-hero__inner { position: relative; z-index: 1; }
.event-hero__badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: var(--space-2); }
.event-pill {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
	padding: 7px 13px; border-radius: 20px; background: rgba(8,6,13,0.5);
}
.event-pill__dot { width: 7px; height: 7px; border-radius: 50%; }
.event-pill--live { color: var(--c-accent-light); border: 1px solid #5a2640; }
.event-pill--live .event-pill__dot { background: var(--c-accent); animation: cvpulse 1.8s infinite; }
.event-pill--soldout { color: var(--c-text-2); border: 1px solid #3a2e48; }
.event-pill--soldout .event-pill__dot { background: var(--c-muted); }
@keyframes cvpulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.event-chip { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--c-text-bright); background: rgba(8,6,13,0.45); border: 1px solid #3a2e48; padding: 6px 12px; border-radius: 20px; }
.event-hero__date { font-family: var(--font-mono); font-size: 0.8rem; color: var(--c-accent-light); letter-spacing: 0.14em; margin-bottom: 10px; }
.event-hero__title { font-size: clamp(3rem, 11vw, 6.5rem); letter-spacing: -0.045em; line-height: 0.86; margin: 0; }
.event-hero__lineup { font-weight: 600; font-size: 1.1rem; color: var(--c-text-bright); margin-top: var(--space-2); }
.event-hero__cta { margin-top: var(--space-3); }

.event-body { display: flex; gap: var(--space-4); align-items: flex-start; flex-wrap: wrap; padding-block: var(--space-5); }
.event-content { flex: 1 1 560px; min-width: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.event-block .mono-label { color: var(--c-dim); margin-bottom: var(--space-2); }
.event-prose { color: var(--c-text-2); line-height: 1.7; }

.event-lineup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-2); }
.event-artist { border: 1px solid var(--c-line-soft); border-radius: 14px; background: var(--c-surface-alt); overflow: hidden; }
.event-artist__art { height: 130px; background: repeating-linear-gradient(125deg, #191120, #191120 9px, #221829 9px, #221829 18px); position: relative; }
.event-artist__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(110px 80px at 55% 42%, rgba(255,45,120,0.25), transparent); }
.event-artist__name { padding: 12px 14px; font-weight: 700; }

.event-venue { display: flex; flex-wrap: wrap; border: 1px solid var(--c-line-soft); border-radius: var(--radius); background: var(--c-surface-alt); overflow: hidden; }
.event-venue__map { flex: 1 1 240px; min-height: 190px; position: relative; background-image: linear-gradient(#191120 1px, transparent 1px), linear-gradient(90deg, #191120 1px, transparent 1px); background-size: 38px 38px; background-color: #0c0814; }
.event-venue__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 16px var(--c-accent); }
.event-venue__info { flex: 1 1 260px; padding: var(--space-3); }
.event-venue__name { font-weight: 700; font-size: 1.2rem; }
.event-venue__addr { font-family: var(--font-mono); font-size: 0.75rem; color: var(--c-muted-2, #8a7f98); margin-top: 4px; }

.event-buy { flex: 0 0 372px; max-width: 100%; position: sticky; top: 88px; }
.event-buy__card { border: 1px solid #2e2238; border-radius: var(--radius-lg); background: linear-gradient(180deg, #130d1c, #0d0914); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(255,45,120,0.4); }
.event-buy__form, .event-buy__card > p { padding: var(--space-3); }
.event-buy__head { margin-bottom: var(--space-2); }
.event-buy__title { font-weight: 700; font-size: 1.15rem; }
.event-buy__note { color: var(--c-muted); font-family: var(--font-mono); font-size: 0.8rem; }

.tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: var(--space-2) 0; border-bottom: 1px solid var(--c-line-soft); }
.tier__name { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tier__flag { font-family: var(--font-mono); font-size: 0.55rem; background: #1e0f18; color: var(--c-accent-light); border: 1px solid #5a2640; padding: 2px 7px; border-radius: 10px; letter-spacing: 0.08em; }
.tier__desc { font-family: var(--font-mono); font-size: 0.72rem; color: #8a7f98; margin-top: 3px; }
.tier__price { font-weight: 700; color: var(--c-accent-bright); margin-top: 6px; }
.tier__price .woocommerce-Price-amount { color: var(--c-accent-bright); }

.stepper { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.stepper__btn { width: 32px; height: 32px; border-radius: var(--radius-sm); border: 1px solid var(--c-line-input); background: var(--c-surface-3); color: var(--c-text); font-size: 18px; cursor: pointer; display: grid; place-items: center; padding: 0; box-shadow: none; }
.stepper__btn:hover { border-color: var(--c-accent); transform: none; }
.stepper__qty { width: 34px; text-align: center; background: transparent; border: none; color: var(--c-text); font-family: var(--font-display); font-weight: 700; font-size: 1rem; -moz-appearance: textfield; }
.stepper__qty::-webkit-outer-spin-button, .stepper__qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.event-buy__totals { border-top: 1px solid var(--c-line-soft); margin-top: var(--space-2); padding-top: var(--space-2); }
.event-buy__row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.85rem; color: var(--c-muted-2, #8a7f98); font-family: var(--font-mono); }
.event-buy__row span:last-child { color: var(--c-text); font-family: var(--font-display); font-weight: 600; }
.event-buy__row--total { border-top: 1px solid var(--c-line-soft); margin-top: 6px; padding-top: 10px; font-size: 0.95rem; }
.event-buy__row--total span { color: var(--c-text) !important; font-size: 1.05rem; }
.event-buy__row--total span:last-child { color: var(--c-accent-bright) !important; font-weight: 700; }
.event-buy__submit { width: 100%; margin-top: var(--space-2); }
.event-buy__reassure { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 12px 0 0; font-family: var(--font-mono); font-size: 0.7rem; color: #8a7f98; }
.event-buy__reassure span { color: var(--c-success); }

@media (max-width: 900px) {
	.event-buy { position: static; flex-basis: 100%; }
}

/* -------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------- */
@media (max-width: 860px) {
	.menu-toggle { display: inline-flex; }
	.main-navigation .primary-menu {
		position: absolute; inset: 68px 0 auto 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--c-surface); border-bottom: 1px solid var(--c-line);
		padding: var(--space-2); display: none;
	}
	.main-navigation.is-open .primary-menu { display: flex; }
	.primary-menu a { display: block; padding: 0.75em 0.5em; border-radius: var(--radius-sm); }
	.post-navigation .nav-links { flex-direction: column; }
	.trust-strip { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
 * Accounts: header menu, branded auth, fan wallet, role portals
 * ====================================================================== */

/* ---- Header account control ---- */
.header-auth { color: var(--c-text); font-weight: 600; font-size: 0.9rem; }
.header-account { position: relative; }
.header-account__toggle { display: flex; align-items: center; gap: 0.5em; background: transparent; border: 1px solid var(--c-line); border-radius: 999px; padding: 0.3em 0.7em 0.3em 0.35em; cursor: pointer; box-shadow: none; }
.header-account__toggle:hover { border-color: var(--c-accent); transform: none; }
.header-account__avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--c-brand-gradient); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; }
.header-account__meta { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.header-account__name { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--c-text); }
.header-account__role { font-family: var(--font-mono); font-size: 0.6rem; color: var(--c-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.header-account__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 6px; display: none; box-shadow: var(--shadow); z-index: 60; }
.header-account.is-open .header-account__menu { display: block; }
.header-account__menu a { display: block; padding: 0.6em 0.75em; border-radius: var(--radius-sm); color: var(--c-text-2); font-size: 0.88rem; }
.header-account__menu a:hover { background: var(--c-surface-2); color: var(--c-text); }

/* ---- Branded auth page ---- */
.cv-auth { width: 100vw; margin-left: calc(50% - 50vw); min-height: calc(100vh - 68px); display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; padding: 30px; }
.cv-auth__brand, .cv-auth__form { flex: 1 1 420px; max-width: 520px; min-height: 560px; padding: 38px; }
.cv-auth__brand {
	position: relative; overflow: hidden; border-radius: 22px 0 0 22px;
	background: repeating-linear-gradient(125deg,#170f1f,#170f1f 16px,#1f1628 16px,#1f1628 32px);
	display: flex; flex-direction: column; justify-content: space-between;
}
.cv-auth__brand::before { content: ""; position: absolute; inset: 0; background: radial-gradient(460px 360px at 30% 18%,rgba(255,45,120,.34),transparent),radial-gradient(440px 360px at 90% 92%,rgba(122,44,255,.32),transparent); }
.cv-auth__brand > * { position: relative; }
.cv-auth__logo { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--c-text); }
.cv-auth__pitch h2 { font-size: 42px; letter-spacing: -0.03em; line-height: 1.02; margin: 0 0 16px; }
.cv-auth__pitch p { color: #cdbce0; font-size: 14px; max-width: 320px; line-height: 1.6; margin: 0; }
.cv-auth__proof { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--c-text-2); }
.cv-auth__avatars { display: flex; }
.cv-auth__avatars i { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #170f1f; display: inline-block; }
.cv-auth__avatars i:nth-child(1){ background: var(--c-accent);} .cv-auth__avatars i:nth-child(2){ background: var(--c-violet); margin-left:-9px;} .cv-auth__avatars i:nth-child(3){ background: var(--c-blue); margin-left:-9px;}
.cv-auth__form { background: #0b0910; border: 1px solid #221d2c; border-left: none; border-radius: 0 22px 22px 0; }
.cv-auth--in { display: block; text-align: center; padding: 60px 30px; }
.cv-auth__errors { background: rgba(255,45,120,.08); border: 1px solid #5a2640; border-radius: 12px; padding: 10px 14px; margin-bottom: 16px; }
.cv-auth__errors p { color: var(--c-accent-light); font-size: 0.85rem; margin: 0.2em 0; }
.cv-tabs { display: flex; gap: 6px; margin-bottom: 22px; }
.cv-tab { background: transparent; border: none; border-bottom: 2px solid transparent; color: var(--c-muted); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 0.4em 0.2em; cursor: pointer; box-shadow: none; border-radius: 0; }
.cv-tab.is-active { color: var(--c-text); border-bottom-color: var(--c-accent); }
.cv-pane { display: none; }
.cv-pane.is-active { display: block; }
.cv-pane h1 { font-size: 30px; letter-spacing: -0.02em; margin: 0 0 6px; }
.cv-sub { color: var(--c-muted); font-size: 14px; margin: 0 0 20px; }
.cv-field { display: block; margin-bottom: 14px; }
.cv-field > span { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--c-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.cv-in { width: 100%; font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--c-text); background: var(--c-inset); border: 1px solid var(--c-line); border-radius: 11px; padding: 13px 14px; outline: none; }
.cv-in::placeholder { color: var(--c-dimmer); }
.cv-in:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(255,45,120,.12); }
.cv-roles { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 18px; }
.cv-role { position: relative; display: flex; align-items: center; gap: 14px; border: 1px solid var(--c-line); border-radius: 15px; background: var(--c-surface-alt); padding: 14px; cursor: pointer; }
.cv-role:hover { border-color: var(--c-accent); }
.cv-role input { position: absolute; opacity: 0; }
.cv-role:has(input:checked) { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent); }
.cv-role__badge { width: 44px; height: 44px; border-radius: 13px; flex: 0 0 auto; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.cv-role__title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--c-text); }
.cv-role__blurb { display: block; font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.cv-remember { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--c-muted); margin: 4px 0 8px; }
.cv-submit { width: 100%; margin-top: 8px; }
.cv-fine { font-size: 0.78rem; color: var(--c-dim); text-align: center; margin-top: 14px; }

/* ---- Fan wallet (boarding pass) ---- */
.cv-wallet { width: 100%; max-width: 460px; margin-inline: auto; }
.cv-wallet__head { text-align: center; margin-bottom: 22px; }
.cv-wallet__eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--c-accent-light); margin: 0 0 6px; }
.cv-wallet__eyebrow--section { text-align: left; color: var(--c-dim); margin: 26px 0 12px; }
.cv-wallet__title { font-size: 22px; margin: 0; }
.cv-wallet__empty { text-align: center; padding: 40px 0; color: var(--c-muted); display: grid; gap: 16px; }
.cv-pass { border-radius: 22px; background: #f4f1f7; overflow: hidden; box-shadow: 0 26px 50px -22px rgba(255,45,120,.5); margin-bottom: 18px; }
.cv-pass__head { background: var(--c-brand-gradient); padding: 20px 20px 17px; color: #fff; display: flex; justify-content: space-between; gap: 12px; }
.cv-pass__eyebrow { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: rgba(255,255,255,.82); }
.cv-pass__event { font-family: var(--font-display); font-weight: 700; font-size: 31px; letter-spacing: -0.03em; }
.cv-pass__venue { font-size: 12px; color: rgba(255,255,255,.92); margin-top: 2px; }
.cv-pass__status { align-self: flex-start; font-family: var(--font-mono); font-size: 9px; padding: 4px 9px; border-radius: 20px; color: #0a0a0a; white-space: nowrap; }
.cv-pass__status--ok { background: #9dffb0; }
.cv-pass__status--used { background: #d9d2e0; }
.cv-pass__strip { display: flex; justify-content: space-between; padding: 16px 20px; background: #f4f1f7; }
.cv-pass__strip div { display: flex; flex-direction: column; gap: 3px; }
.cv-pass__strip div:nth-child(2){ text-align: center; } .cv-pass__strip div:nth-child(3){ text-align: right; }
.cv-pass__strip span { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; color: #8a7f98; }
.cv-pass__strip b { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #0a0a0a; }
.cv-pass__tear { position: relative; height: 1px; background: repeating-linear-gradient(90deg,#bdb7c7 0 6px,transparent 6px 12px); }
.cv-pass__notch { position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%; background: var(--c-bg); }
.cv-pass__notch--l { left: -11px; } .cv-pass__notch--r { right: -11px; }
.cv-pass__qr { background: #f4f1f7; text-align: center; padding: 20px; }
.cv-pass__qr img { width: 176px; height: 176px; image-rendering: pixelated; margin: 0 auto; }
.cv-pass__code { font-family: var(--font-mono); font-size: 10px; color: #5a5266; letter-spacing: 0.1em; margin-top: 10px; }
.cv-voucher { display: flex; align-items: center; gap: 12px; border: 1px solid var(--c-line-soft); border-radius: 14px; background: var(--c-surface-alt); padding: 12px; margin-bottom: 10px; }
.cv-voucher__qr { width: 48px; height: 48px; border-radius: 9px; background: #f4f1f7; padding: 6px; image-rendering: pixelated; }
.cv-voucher__body { flex: 1; }
.cv-voucher__name { font-weight: 600; font-size: 13px; }
.cv-voucher__note { font-family: var(--font-mono); font-size: 10px; color: #8a7f98; }
.cv-voucher__qty { font-family: var(--font-mono); font-size: 10px; background: var(--c-accent-bright); color: #0a0a0a; padding: 3px 9px; border-radius: 20px; }
.cv-staff-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); padding: var(--space-3); color: var(--c-text-2); }
.cv-staff-endpoints { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 6px; }
.cv-staff-endpoints code { font-family: var(--font-mono); font-size: 11px; color: var(--c-accent-light); word-break: break-all; }

/* ---- Role portals (shared shell) ---- */
.cvp { width: 100vw; margin-left: calc(50% - 50vw); min-height: calc(100vh - 68px); background: #0c0a11; --cvp-accent: #ff2d78; color: #f4f1f7; }
.cvp-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 24px; border-bottom: 1px solid #221d2c; background: linear-gradient(180deg,#120e1a,#0c0a11); }
.cvp-topbar__left, .cvp-topbar__right { display: flex; align-items: center; gap: 14px; }
.cvp-logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.cvp-rolepill { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; padding: 4px 9px; border-radius: 20px; }
.cvp-rolepill--pink { color: #ff8fc0; border: 1px solid #5a2640; background: #1e0f18; }
.cvp-rolepill--blue { color: #9fb8ff; border: 1px solid #28406a; background: #0f1422; }
.cvp-div { width: 1px; height: 18px; background: #2a2435; }
.cvp-switch { font-size: 13px; font-weight: 600; color: #cfc7da; } .cvp-switch b { color: #6a6277; }
.cvp-avatar { border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #fff; width: 34px; height: 34px; }
.cvp-avatar--brand { background: var(--c-brand-gradient); }
.cvp-body { display: flex; flex-wrap: wrap; align-items: stretch; }
.cvp-side { flex: 0 0 240px; min-width: 200px; border-right: 1px solid #221d2c; background: #0a0810; padding: 18px 0; }
.cvp-side__label { font-family: var(--font-mono); font-size: 10px; color: #544c63; letter-spacing: 0.18em; padding: 0 20px 12px; }
.cvp-nav { list-style: none; margin: 0; padding: 0 12px; display: grid; gap: 2px; }
.cvp-navitem { width: 100%; display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 9px; background: transparent; border: none; cursor: pointer; color: #9a92a8; font-family: var(--font-display); font-weight: 500; font-size: 13px; box-shadow: none; }
.cvp-navitem:hover { transform: none; }
.cvp-navitem__dot { width: 7px; height: 7px; border-radius: 50%; background: #2a2435; flex: 0 0 auto; }
.cvp-navitem__label { flex: 1; text-align: left; }
.cvp-navitem__badge { font-family: var(--font-mono); font-size: 10px; background: var(--cvp-accent); color: #0a0a0a; padding: 1px 7px; border-radius: 10px; }
.cvp-navitem.is-active { font-weight: 700; color: #f4f1f7; background: linear-gradient(90deg,color-mix(in srgb,var(--cvp-accent) 16%,transparent),transparent); }
.cvp-navitem.is-active .cvp-navitem__dot { background: var(--cvp-accent); box-shadow: 0 0 10px var(--cvp-accent); }
.cvp-promo { margin: 20px 12px; padding: 16px; border-radius: 12px; background: linear-gradient(160deg,#1a0f1a,#100b18); border: 1px solid #2e2238; }
.cvp-promo__label { font-family: var(--font-mono); font-size: 10px; color: #9a7fa8; letter-spacing: 0.14em; }
.cvp-promo__value { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--cvp-accent); text-shadow: 0 0 20px color-mix(in srgb,var(--cvp-accent) 50%,transparent); }
.cvp-promo__caption { font-size: 12px; color: #9a92a8; }
.cvp-main { flex: 1 1 560px; min-width: 0; padding: 24px; background: radial-gradient(900px 400px at 80% -10%,rgba(122,44,255,.12),transparent); }
.cvp-section { display: none; }
.cvp-section.is-active { display: block; }
.cvp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.cvp-head__right { display: flex; align-items: center; gap: 10px; }
.cvp-kicker { font-family: var(--font-mono); font-size: 11px; color: #9a7fa8; letter-spacing: 0.12em; }
.cvp-title { font-size: 32px; letter-spacing: -0.02em; margin: 4px 0 0; }
.cvp-desc { color: #8b93a8; font-size: 13px; max-width: 560px; margin: 8px 0 0; }
.cvp-tiles { display: grid; grid-template-columns: repeat(var(--cvp-cols,4),1fr); gap: 12px; margin-bottom: 16px; }
.cvp-tile { padding: 16px; border-radius: 12px; background: #11131b; border: 1px solid #232a38; }
.cvp-tile--green { background: #0c1a12; border-color: #1f5a3a; }
.cvp-tile__label { font-family: var(--font-mono); font-size: 10px; color: #6a6277; letter-spacing: 0.1em; }
.cvp-tile__value { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin-top: 6px; }
.cvp-tile--accent .cvp-tile__value { color: var(--cvp-accent); }
.cvp-tile--green .cvp-tile__value, .cvp-tile--green .cvp-tile__label { color: #5ef0a8; }
.cvp-tile__sub { font-family: var(--font-mono); font-size: 10px; color: #8b93a8; margin-top: 6px; }
.cvp-panel { background: #120d1a; border: 1px solid #2a2238; border-radius: 14px; margin-bottom: 16px; }
.cvp-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #1c2230; }
.cvp-panel__title { font-weight: 700; font-size: 15px; }
.cvp-panel__action { font-family: var(--font-mono); font-size: 11px; color: var(--cvp-accent); }
.cvp-panel__body { padding: 8px 16px 12px; }
.cvp-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #161b26; }
.cvp-row:last-child { border-bottom: none; }
.cvp-row__main { flex: 1; min-width: 0; }
.cvp-row__title { font-weight: 600; font-size: 14px; }
.cvp-row__sub { font-size: 11px; color: #8a7f98; margin-top: 3px; }
.cvp-row__right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cvp-pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 10px; white-space: nowrap; border: 1px solid transparent; }
.cvp-pill--green { background: #0c1a12; color: #5ef0a8; border-color: #1f5a3a; }
.cvp-pill--amber { background: #1a130c; color: #ffd27a; border-color: #5a4420; }
.cvp-pill--blue { background: #0f1422; color: #9fb8ff; border-color: #28406a; }
.cvp-pill--red { background: #1a0c10; color: #ff7a90; border-color: #5a2a33; }
.cvp-pill--grey { color: #8b93a8; border-color: #3a3e48; }
.cvp-pill--pink { background: #0a0a0a; color: #ff5594; border-color: #5a2640; }
.cvp-pill--pinksolid { background: #ff5594; color: #0a0a0a; }
.cvp-pill--purple { background: #170f1f; color: #cdbce0; border-color: #3a2e48; }
.cvp-btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: 8px; border: 1px solid transparent; cursor: pointer; white-space: nowrap; }
.cvp-btn--primary { background: var(--cvp-accent); color: #0a0a0a; box-shadow: 0 0 22px color-mix(in srgb,var(--cvp-accent) 38%,transparent); }
.cvp-btn--ghost { color: #f4f1f7; border-color: #3a2e48; }
.cvp-btn--ghost:hover { border-color: var(--cvp-accent); }
.cvp-btn--green { background: #2fe08f; color: #04130b; }
.cvp-btn--blue { background: #0f1422; color: #9fb8ff; border-color: #28406a; }
.cvp-btn--pink { background: #1e0f18; color: #ff8fc0; border-color: #5a2640; }
.cvp-chip { display: inline-block; font-size: 12px; padding: 6px 12px; border-radius: 20px; margin: 0 6px 6px 0; }
.cvp-chip--neutral { background: #15111d; border: 1px solid #2a2238; color: #cfc7da; }
.cvp-chip--accent { background: #0f1422; border: 1px solid #28406a; color: #9fb8ff; }
.cvp-progress { height: 8px; border-radius: 20px; background: #1a1322; overflow: hidden; margin: 6px 0; }
.cvp-progress span { display: block; height: 100%; background: linear-gradient(90deg,var(--cvp-accent),#7a2cff); box-shadow: 0 0 16px color-mix(in srgb,var(--cvp-accent) 60%,transparent); }
.cvp-ph { background: repeating-linear-gradient(135deg,#1a1322,#1a1322 9px,#211829 9px,#211829 18px); border-radius: 10px; position: relative; min-height: 120px; display: grid; place-items: center; }
.cvp-ph span { font-family: var(--font-mono); font-size: 10px; color: #6a6277; }
.cvp-cols { display: flex; gap: 16px; flex-wrap: wrap; }
.cvp-cols > .cvp-panel { flex: 1 1 300px; }
.cvp-split { display: flex; gap: 16px; flex-wrap: wrap; }
.cvp-split__main { flex: 1 1 360px; } .cvp-split__side { flex: 1 1 320px; }
.cvp-card { background: #120d1a; border: 1px solid #2a2238; border-radius: 14px; margin-bottom: 12px; }
.cvp-card--pad { padding: 14px; }
.cvp-hero { display: flex; flex-wrap: wrap; gap: 20px; padding: 14px; }
.cvp-hero .cvp-ph { flex: 0 0 230px; }
.cvp-hero__body { flex: 1 1 300px; }
.cvp-hero__title { font-family: var(--font-display); font-weight: 700; font-size: 42px; letter-spacing: -0.02em; margin: 4px 0 8px; }
.cvp-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.cvp-herostats { display: flex; gap: 24px; margin-top: 16px; }
.cvp-herostats span, .cvp-evstats span { display: block; font-family: var(--font-mono); font-size: 10px; color: #6a6277; letter-spacing: 0.08em; }
.cvp-herostats b, .cvp-evstats b { font-family: var(--font-display); font-weight: 700; font-size: 26px; }
.cvp-herostats b i { font-style: normal; font-size: 14px; }
.cvp-caplabel { display: flex; justify-content: space-between; font-size: 11px; color: #8a7f98; margin-top: 12px; }
.cvp-banner { margin-top: 16px; padding: 24px; border-radius: 16px; background: linear-gradient(120deg,#1a0f1a,#140b1c); border: 1px solid #3a1f30; }
.cvp-banner__h { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
.cvp-banner__p { font-size: 12px; color: #9a92a8; max-width: 340px; margin-top: 8px; }
.cvp-kv__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #221b2c; }
.cvp-kv__row:last-child { border-bottom: none; }
.cvp-kv__row span { font-family: var(--font-mono); font-size: 12px; color: #8a7f98; } .cvp-kv__row b { font-size: 13px; }
.cvp-note { color: #8b93a8; font-size: 13px; padding: 24px; border: 1px dashed #3a2e48; border-radius: 14px; text-align: center; }
.cvp-evrow, .cvp-vrow { display: flex; gap: 14px; align-items: center; }
.cvp-evrow__main { flex: 1; min-width: 0; } .cvp-evrow__right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.cvp-evrow__prog { display: flex; align-items: center; gap: 8px; max-width: 240px; margin-top: 6px; } .cvp-evrow__prog .cvp-progress { flex: 1; height: 6px; }
.cvp-evstats { display: flex; gap: 16px; } .cvp-evstats b { font-size: 15px; }
.cvp-vrow__body { flex: 1; } .cvp-vrow__top { display: flex; justify-content: space-between; } .cvp-vrow__name { font-weight: 700; font-size: 16px; }
.cvp-vrow__stats { font-size: 11px; color: #cfc7da; margin: 6px 0; } .cvp-vrow__cta { display: flex; gap: 8px; }
.cvp-map .cvp-ph { min-height: 500px; }
.cvp-terms { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.cvp-terms > div { flex: 1 1 150px; border: 1px solid #1c2230; border-radius: 10px; background: #0e1118; padding: 11px 13px; }
.cvp-terms span { font-family: var(--font-mono); font-size: 9px; color: #6a6277; } .cvp-terms b { display: block; font-size: 14px; margin-top: 4px; }
.cvp-bignum { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.cvp-mono { font-family: var(--font-mono); } .cvp-muted { color: #8a7f98; }
.cvp-accenttext { color: var(--cvp-accent); } .cvp-green { color: #5ef0a8; } .cvp-amber { color: #ffd27a; } .cvp-red { color: #ff7a90; }
.cvp-strike { color: #5a5266; } .cvp-star { color: var(--cvp-accent); font-weight: 700; font-size: 13px; } .cvp-amt { font-size: 15px; }

@media (max-width: 800px) {
	.cvp-tiles { grid-template-columns: repeat(2,1fr); }
	.cvp-side { flex-basis: 100%; border-right: none; border-bottom: 1px solid #221d2c; }
	.cv-auth__brand { border-radius: 22px 22px 0 0; } .cv-auth__form { border-radius: 0 0 22px 22px; border-left: 1px solid #221d2c; border-top: none; }
}

/* ---- Take-the-tour persona picker + demo bar ---- */
.cv-tour { position: fixed; inset: 0; z-index: 2147483000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.cv-tour[hidden] { display: none; }
.cv-tour__backdrop { position: absolute; inset: 0; background: rgba(6,4,10,.78); backdrop-filter: blur(6px); }
.cv-tour__modal { position: relative; width: min(560px,100%); border: 1px solid #2e2440; border-radius: 22px; background: linear-gradient(180deg,#150f1f,#0e0a16); box-shadow: 0 50px 100px -30px rgba(0,0,0,.85); overflow: hidden; }
.cv-tour__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 26px 26px 18px; border-bottom: 1px solid #211b2c; }
.cv-tour__eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--c-accent-light); letter-spacing: 0.16em; }
.cv-tour__head h3 { font-size: 24px; letter-spacing: -0.02em; margin: 6px 0 6px; }
.cv-tour__head p { font-size: 13px; color: var(--c-muted); margin: 0; line-height: 1.5; }
.cv-tour__x { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; background: var(--c-surface-3); border: 1px solid var(--c-line); color: var(--c-muted); font-size: 15px; cursor: pointer; box-shadow: none; }
.cv-tour__cards { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.cv-tour__card { display: flex; align-items: center; gap: 14px; padding: 15px; border-radius: 14px; background: var(--c-surface-alt); border: 1px solid var(--c-line); }
.cv-tour__card:hover { border-color: var(--c-accent); }
.cv-tour__badge { width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.cv-tour__text { flex: 1; }
.cv-tour__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--c-text); }
.cv-tour__sub { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--c-muted); margin-top: 3px; }
.cv-tour__arrow { font-family: var(--font-mono); color: var(--c-accent-bright); }
.cv-demobar { width: 100vw; margin-left: calc(50% - 50vw); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 10px 18px; background: linear-gradient(90deg,#1a0f1a,#140b1c); border-bottom: 1px solid #3a1f30; font-family: var(--font-mono); font-size: 12px; color: var(--c-text-2); }
.cv-demobar b { color: var(--c-accent-light); }
.cv-demobar a { font-weight: 700; color: var(--c-text); border: 1px solid var(--c-line); border-radius: 999px; padding: 4px 12px; }
.cv-demobar a:hover { border-color: var(--c-accent); }

/* ---- Editable profile forms (portal Settings / Profile) ---- */
.cvp-profile .cvp-panel__body { padding: 14px 16px 4px; }
.cvp-profile .cv-field { margin-bottom: 14px; }
.cvp-profile .cv-field > span { color: #8a7f98; }
.cvp-profile .cvp-btn { margin-top: 6px; }
.cvp-saved { background: #0c1a12; border: 1px solid #1f5a3a; color: #5ef0a8; border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; font-family: var(--font-mono); font-size: 12px; }
.cv-wallet__profile { margin-top: 26px; border-top: 1px solid var(--c-line-soft); padding-top: 16px; }
.cv-wallet__profile summary { cursor: pointer; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--c-dim); text-transform: uppercase; }
.cv-wallet__profile .cvp-cols { margin-top: 14px; }
.cv-wallet__profile .cvp-panel { background: var(--c-surface); border-color: var(--c-line-soft); }

/* ---- Standalone pages: Deal Room / Settlement / Scanner ---- */
.cv-mono { font-family: var(--font-mono); } .cv-muted { color: #8a7f98; }
.cv-standalone { width: 100vw; margin-left: calc(50% - 50vw); min-height: calc(100vh - 68px); background: radial-gradient(1000px 500px at 85% -10%, rgba(122,44,255,.1), transparent), #0c0a11; color: #f4f1f7; --cvp-accent: #ff2d78; }
.cv-standalone__top { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-bottom: 1px solid #221d2c; background: linear-gradient(180deg,#120e1a,#0c0a11); }
.cv-standalone__logo { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: -0.02em; }
.cv-standalone__badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; padding: 4px 9px; border-radius: 20px; color: #9fb8ff; border: 1px solid #28406a; background: #0f1422; }
.cv-standalone__body { max-width: 1080px; margin: 0 auto; padding: 26px 24px 70px; }
.cv-empty { text-align: center; padding: 60px 20px; display: grid; gap: 16px; justify-items: center; color: #8b8398; }
.cv-picker h2 { font-size: 22px; margin-bottom: 16px; }
.cv-picker__list { display: grid; gap: 10px; }
.cv-picker__item { display: flex; justify-content: space-between; border: 1px solid #2a2238; border-radius: 13px; background: #120d1a; padding: 14px 18px; color: #f4f1f7; }
.cv-picker__item:hover { border-color: #ff2d78; }
.cv-picker__meta { color: #8a7f98; font-family: var(--font-mono); font-size: 12px; }

.cv-deal__header, .cv-settle .cv-deal__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.cv-deal__eyebrow { font-family: var(--font-mono); font-size: 11px; color: #9a7fa8; letter-spacing: 0.12em; }
.cv-deal__header h1 { font-size: 34px; letter-spacing: -0.02em; margin: 6px 0 4px; }
.cv-deal__header p { color: #8b8398; font-size: 13px; margin: 0; }
.cv-deal__terms { background: #120d1a; border: 1px solid #2a2238; border-radius: 16px; padding: 18px; margin-bottom: 16px; }
.cv-deal__terms-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.cv-deal__terms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; }
.cv-deal__terms-grid span { display: block; font-family: var(--font-mono); font-size: 9px; color: #7d7490; letter-spacing: 0.1em; margin-bottom: 4px; }
.cv-deal__terms-grid b { font-size: 15px; }
.cv-deal__note { color: #8b8398; font-size: 13px; margin: 14px 0 0; }
.cv-deal__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.cv-deal__actions form { display: contents; }
.cv-deal__signed { color: #5ef0a8; margin-top: 16px; font-size: 13px; }
.cv-deal__propose[hidden] { display: none; }
.cv-deal__activity { background: #120d1a; border: 1px solid #2a2238; border-radius: 16px; padding: 16px 18px; }
.cv-deal__activity-row { padding: 9px 0; border-top: 1px solid #1a1422; font-size: 12px; display: flex; gap: 8px; flex-wrap: wrap; align-items: baseline; }
.cv-deal__activity-row:first-child { border-top: none; }

.cv-settle__feehero { background: linear-gradient(160deg,#1a0f1a,#100b18); border: 1px solid #2e2238; border-radius: 14px; padding: 14px 18px; text-align: right; min-width: 200px; }
.cv-settle__feehero span { display: block; font-family: var(--font-mono); font-size: 10px; color: #9a7fa8; letter-spacing: 0.1em; }
.cv-settle__feehero b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #ff5594; margin-top: 4px; }
.cv-settle__feehero i { font-style: normal; font-family: var(--font-mono); font-size: 10px; color: #8b8398; }
.cv-settle__label { font-family: var(--font-mono); font-size: 10px; color: #7d7490; letter-spacing: 0.14em; margin: 22px 0 12px; }
.cv-settle__net { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.cv-settle__net span { font-family: var(--font-mono); font-size: 10px; color: #7d7490; letter-spacing: 0.08em; }
.cv-settle__net b { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #5ef0a8; }

/* ---- Scanner ---- */
.cv-scan { max-width: 430px; margin: 0 auto; }
.cv-scan__header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cv-scan__pill { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; padding: 6px 11px; border-radius: 20px; color: #ff8fc0; border: 1px solid #5a2640; background: #1e0f18; }
.cv-scan__pill.is-bar { color: #9fb8ff; border-color: #28406a; background: #0f1422; }
.cv-scan__eventmeta { flex: 1; text-align: center; display: flex; flex-direction: column; }
.cv-scan__live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: #2fe08f; }
.cv-scan__live i { width: 7px; height: 7px; border-radius: 50%; background: #2fe08f; animation: cvpulse 1.8s infinite; }
.cv-scan__view { position: relative; border-radius: 22px; border: 1px solid #1c1626; background: radial-gradient(260px 240px at 50% 42%, #10101a, #060409); min-height: 360px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 24px; }
.cv-scan__view video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.cv-scan__view[hidden] { display: none; }
.cv-scan__reticle { position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%); width: 212px; height: 212px; }
.cv-scan__reticle i { position: absolute; width: 46px; height: 46px; border: 4px solid #ff2d78; }
.cv-scan__reticle .tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 10px 0 0 0; }
.cv-scan__reticle .tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 10px 0 0; }
.cv-scan__reticle .bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 10px; }
.cv-scan__reticle .br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 10px 0; }
.cv-scan__line { position: absolute; left: 6px; right: 6px; top: 20px; height: 2px; background: linear-gradient(90deg,transparent,#ff5594,transparent); box-shadow: 0 0 14px #ff2d78; animation: cvscanline 2.4s ease-in-out infinite; }
@keyframes cvscanline { 0%,100% { transform: translateY(0); } 50% { transform: translateY(168px); } }
.cv-scan__prompt { position: relative; z-index: 1; font-weight: 600; font-size: 14px; color: #cfc7da; margin: 0 0 6px; }
.cv-scan__manual-link { position: relative; z-index: 1; background: none; border: none; box-shadow: none; font-family: var(--font-mono); font-size: 10px; color: #7d7490; cursor: pointer; padding: 4px; }
.cv-scan__manual-link:hover { color: #ff2d78; }
.cv-scan__manual { border-radius: 22px; border: 1px solid #1c1626; background: #0b0910; padding: 24px; text-align: center; }
.cv-scan__manual[hidden] { display: none; }
.cv-scan__manual label { display: block; font-size: 13px; color: #cfc7da; margin-bottom: 10px; }
.cv-scan__manual input { width: 100%; background: #100c18; border: 1px solid #221b2c; border-radius: 13px; padding: 15px; font-family: var(--font-mono); font-size: 16px; color: #f4f1f7; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.cv-scan__manual .cvp-btn { width: 100%; margin-top: 12px; padding: 15px; }
.cv-scan__result { text-align: center; padding: 30px 20px; border-radius: 22px; }
.cv-scan__result[hidden] { display: none; }
.cv-scan__result.is-ok { background: radial-gradient(460px 460px at 50% 20%, rgba(47,224,143,.18), transparent); }
.cv-scan__result.is-bad { background: radial-gradient(460px 460px at 50% 20%, rgba(255,59,92,.2), transparent); }
.cv-scan__icon { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto; font-size: 46px; color: #04130b; }
.cv-scan__result.is-ok .cv-scan__icon { background: #2fe08f; box-shadow: 0 0 40px rgba(47,224,143,.5); }
.cv-scan__result.is-bad .cv-scan__icon { background: #ff3b5c; color: #1a0509; box-shadow: 0 0 40px rgba(255,59,92,.5); }
.cv-scan__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; margin: 18px 0 4px; }
.cv-scan__result.is-ok .cv-scan__kicker { color: #5ef0a8; } .cv-scan__result.is-bad .cv-scan__kicker { color: #ff8fa0; }
.cv-scan__result h2 { font-size: 36px; margin: 0 0 12px; }
.cv-scan__name { font-weight: 700; font-size: 18px; margin: 0; }
.cv-scan__sub { color: #9a92a8; font-size: 13px; margin: 4px 0 0; }
.cv-scan__next { margin-top: 28px; font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 14px; border: none; cursor: pointer; }
.cv-scan__result.is-ok .cv-scan__next { background: #2fe08f; color: #04130b; }
.cv-scan__result.is-bad .cv-scan__next { background: #ff3b5c; color: #fff; }
.cv-scan__toggle { display: flex; gap: 6px; padding: 5px; border: 1px solid #1c1626; border-radius: 14px; background: #0b0910; margin-top: 16px; }
.cv-scan__toggle button { flex: 1; background: transparent; color: #8a7f98; font-weight: 600; font-size: 13px; padding: 11px; border-radius: 10px; border: none; cursor: pointer; box-shadow: none; }
.cv-scan__toggle button.is-active { background: #ff2d78; color: #0a0a0a; font-weight: 700; box-shadow: 0 0 18px rgba(255,45,120,.4); }

/* ---- Messaging (inbox + conversation) ---- */
.cvmsg { display: flex; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); overflow: hidden; min-height: 440px; }
.cvmsg__list { flex: 0 0 240px; border-right: 1px solid var(--c-line); overflow-y: auto; }
.cvmsg__empty { padding: 20px; color: var(--c-muted); font-size: 0.85rem; }
.cvmsg__empty--pane { display: grid; place-items: center; height: 100%; }
.cvmsg__thread { display: flex; gap: 10px; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--c-line-soft); color: var(--c-text); }
.cvmsg__thread:hover { background: var(--c-surface-2); }
.cvmsg__thread.is-active { background: linear-gradient(90deg, rgba(255,45,120,.12), transparent); }
.cvmsg__avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--c-brand-gradient); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; flex: 0 0 auto; }
.cvmsg__meta { min-width: 0; display: flex; flex-direction: column; }
.cvmsg__name { font-weight: 600; font-size: 0.85rem; }
.cvmsg__unread { display: inline-grid; place-items: center; min-width: 1.3em; height: 1.3em; padding: 0 0.3em; border-radius: 999px; background: var(--c-accent); color: #0a0a0a; font-size: 0.65rem; }
.cvmsg__preview { font-family: var(--font-mono); font-size: 0.68rem; color: var(--c-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cvmsg__pane { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.cvmsg__head { padding: 14px 18px; border-bottom: 1px solid var(--c-line); font-weight: 700; }
.cvmsg__scroll { flex: 1; padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; max-height: 340px; }
.cvmsg__bubble { max-width: 78%; padding: 10px 13px; font-size: 0.9rem; line-height: 1.4; }
.cvmsg__bubble--in { align-self: flex-start; background: var(--c-surface-3); border: 1px solid var(--c-line); border-radius: 12px 12px 12px 2px; color: var(--c-text-bright); }
.cvmsg__bubble--out { align-self: flex-end; background: linear-gradient(135deg, #ff2d78, #c0246a); color: #fff; border-radius: 12px 12px 2px 12px; }
.cvmsg__composer { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--c-line); }
.cvmsg__composer input { flex: 1; background: var(--c-surface-2); border: 1px solid var(--c-line-soft); border-radius: 10px; padding: 11px 13px; color: var(--c-text); font: inherit; }
.cvmsg__composer input:focus { border-color: var(--c-accent); outline: none; }
@media (max-width: 700px) { .cvmsg { flex-direction: column; } .cvmsg__list { flex-basis: auto; border-right: none; border-bottom: 1px solid var(--c-line); max-height: 200px; } }
