/*
 * The Event OS microsite: /event-operating-system and its
 * area pages. Loaded after conversion-pages.css under the same
 * `ticketing-home-design` body class, so every section, card, button and
 * heading is the /event-ticketing recipe. This file adds only what the
 * microsite has and the overview does not: the area navigation, the
 * benefit rows, the feature lists and the animated scenes.
 */

/* ---------------------------------------------------------------------------
 * Area navigation: the microsite's own menu under the header, one pill per
 * area page. It scrolls sideways on a phone rather than wrapping.
 * ------------------------------------------------------------------------ */
.eos-area-nav {
	position: relative;
	z-index: 2;
	margin: 0 0 clamp(24px, 4vw, 40px);
}

/* The shared stylesheet turns every nav into the full-height menu overlay
   while the phone menu is open. The area menu is not that menu, so it keeps
   its place under the header. */
body.showMobileMenu .eos-area-nav {
	z-index: 2;
	height: auto;
	min-height: 0;
	padding: 0;
}

.eos-area-nav ul {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 4px 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.eos-area-nav ul::-webkit-scrollbar {
	display: none;
}

.eos-area-nav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: var(--roundings-round, 999px);
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
	color: rgba(235, 235, 238, 0.78);
	font: 500 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
	white-space: nowrap;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.eos-area-nav a:hover,
.eos-area-nav a:focus-visible {
	border-color: var(--colors-base-white-20, rgba(235, 235, 238, 0.2));
	color: var(--fg-primary-rest, #ebebee);
}

.eos-area-nav a[aria-current="page"] {
	border-color: var(--colors-violet-300-12, rgba(196, 181, 255, 0.12));
	background: var(--colors-violet-300-12, rgba(196, 181, 255, 0.12));
	color: var(--fg-primary-rest, #ebebee);
}

.eos-area-nav i {
	color: var(--colors-violet-300, #c4b5ff);
	font-size: 13px;
}

/* ---------------------------------------------------------------------------
 * Hero: the overview hero grid with a scene or a capture in the media slot.
 * ------------------------------------------------------------------------ */
.eos-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
}

.eos-hero-grid > * {
	min-width: 0;
}

@media (max-width: 960px) {
	.eos-hero-grid {
		grid-template-columns: 1fr;
	}
}

.eos-hero .eos-scene {
	max-width: 520px;
	margin: 0 auto;
	border: 0;
	background: none;
	box-shadow: none;
}

.eos-hero .eos-scene::before {
	content: none;
}

.eos-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-breadcrumb li,
.eos-breadcrumb a {
	display: inline-flex;
	align-items: center;
	margin: 0;
	font: 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-breadcrumb a {
	color: rgba(235, 235, 238, 0.78);
	text-decoration: none;
}

.eos-breadcrumb a:hover {
	color: var(--fg-primary-rest, #ebebee);
}

.eos-breadcrumb li + li::before {
	content: "\203A";
	margin-right: 8px;
}

.eos-hero-outcomes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.eos-hero-outcomes li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: var(--roundings-round, 999px);
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
	color: var(--fg-primary-rest, #ebebee);
	font: 500 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-hero-outcomes i {
	color: var(--colors-violet-300, #c4b5ff);
}

/* ---------------------------------------------------------------------------
 * Benefit rows: the outcome first, as a heading and a short paragraph with
 * the features that deliver it, beside the dashboard capture or scene that
 * shows it. Rows alternate sides on wide screens.
 * ------------------------------------------------------------------------ */
.eos-benefits {
	display: grid;
	gap: clamp(24px, 4vw, 40px);
}

.eos-benefit {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}

.eos-benefit:nth-child(even) .eos-benefit-copy {
	order: 2;
}

.ticketing-conversion-page .eos-benefit-copy h2 {
	margin: 0 0 12px;
	color: var(--fg-primary-rest, #ebebee);
	font: 500 clamp(24px, 2.2vw, 32px)/1.25 var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-benefit-copy > p {
	margin: 0 0 20px;
	color: rgba(235, 235, 238, 0.8);
	font: 400 16px/24px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-benefit-kicker {
	display: block;
	margin-bottom: 12px;
	background: var(--gradient-button-outline);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font: 500 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-feature-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eos-feature-list li {
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	color: rgba(235, 235, 238, 0.8);
	font: 400 15px/23px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-feature-list li strong {
	color: var(--fg-primary-rest, #ebebee);
	font-weight: 500;
}

.eos-feature-list li > i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: 50%;
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
	color: var(--colors-peach-300, #ffbfb5);
	font-size: 11px;
}

.eos-benefit-media {
	min-width: 0;
}

@media (max-width: 880px) {
	.eos-benefit {
		grid-template-columns: 1fr;
	}

	.eos-benefit:nth-child(even) .eos-benefit-copy {
		order: 0;
	}
}

/* ---------------------------------------------------------------------------
 * Area cards on the hub: the benefit an area delivers, what is in it, and a
 * link to its page. The home feature-card recipe, one level of containment.
 * ------------------------------------------------------------------------ */
.eos-area-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eos-area-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--roundings-xl, 24px);
	background: linear-gradient(180deg, rgba(235, 235, 238, 0.05), rgba(235, 235, 238, 0.01));
	box-shadow: 0 4px 24px rgba(11, 10, 21, 0.8);
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.eos-area-card:hover,
.eos-area-card:focus-visible {
	border-color: var(--colors-base-white-20, rgba(235, 235, 238, 0.2));
}

.eos-area-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 24px;
	border: 1px solid var(--colors-violet-300-12, rgba(196, 181, 255, 0.12));
	border-radius: 50%;
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
	color: var(--fg-primary-rest, #ebebee);
	font-size: 20px;
}

.eos-area-card h3 {
	margin: 0 0 8px;
	color: var(--fg-primary-rest, #ebebee);
	font: 500 22px/30px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-area-card p {
	margin: 0 0 16px;
	color: rgba(235, 235, 238, 0.8);
	font: 400 16px/24px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-area-card ul {
	display: grid;
	gap: 6px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.eos-area-card ul li {
	position: relative;
	padding-left: 20px;
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-area-card ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: var(--colors-violet-300, #c4b5ff);
}

.eos-area-link {
	margin-top: auto;
	background: var(--gradient-button-outline);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font: 500 15px/22px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-area-link i {
	margin-left: 6px;
	color: var(--colors-violet-300, #c4b5ff);
	-webkit-text-fill-color: var(--colors-violet-300, #c4b5ff);
	font-size: 12px;
}

@media (max-width: 980px) {
	.eos-area-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.eos-area-grid {
		grid-template-columns: 1fr;
	}

	.eos-area-card {
		padding: 24px;
	}
}

/* ---------------------------------------------------------------------------
 * Feature cards: the full list for an area, each with the scene that shows
 * it where one exists. Same card recipe as the area cards.
 * ------------------------------------------------------------------------ */
.eos-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eos-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eos-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--roundings-xl, 24px);
	background: linear-gradient(180deg, rgba(235, 235, 238, 0.05), rgba(235, 235, 238, 0.01));
	box-shadow: 0 4px 24px rgba(11, 10, 21, 0.8);
}

.eos-card .eos-area-icon {
	margin-bottom: 20px;
}

.eos-card h3 {
	margin: 0 0 8px;
	color: var(--fg-primary-rest, #ebebee);
	font: 500 20px/28px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-card p {
	margin: 0;
	color: rgba(235, 235, 238, 0.8);
	font: 400 15px/23px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-card .eos-scene {
	margin-top: auto;
	padding-top: 20px;
	border: 0;
	background: none;
	box-shadow: none;
}

.eos-card .eos-scene::before {
	content: none;
}

.eos-card .eos-scene-desktop,
.eos-card .eos-scene-phone {
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: var(--roundings-l, 16px);
	background: rgba(11, 10, 21, 0.5);
	overflow: hidden;
}

@media (max-width: 980px) {
	.eos-card-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.eos-card-grid,
	.eos-card-grid--three {
		grid-template-columns: 1fr;
	}

	.eos-card {
		padding: 24px;
	}
}

/* ---------------------------------------------------------------------------
 * The "one system" strip on the hub: the areas as chips joined by the flow
 * line, which shows the same record moving between them.
 * ------------------------------------------------------------------------ */
.eos-system-strip {
	margin: 0 auto;
	max-width: 1120px;
	text-align: center;
}

.eos-system-strip .eos-scene--flow {
	margin: 12px 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.eos-system-strip .eos-scene--flow::before {
	content: none;
}

.eos-system-strip .eos-scene--flow svg {
	height: 48px;
}

.eos-system-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.eos-system-points li {
	color: rgba(235, 235, 238, 0.8);
	font: 400 15px/23px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-system-points strong {
	display: block;
	margin-bottom: 6px;
	color: var(--fg-primary-rest, #ebebee);
	font: 500 18px/26px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

@media (max-width: 760px) {
	.eos-system-points {
		grid-template-columns: 1fr;
	}

	.eos-system-strip .eos-scene--flow svg {
		height: 24px;
	}
}

/* ---------------------------------------------------------------------------
 * Next and previous area links at the foot of an area page.
 * ------------------------------------------------------------------------ */
.eos-pager {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.eos-pager a {
	display: block;
	padding: 24px 28px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--roundings-xl, 24px);
	background: linear-gradient(180deg, rgba(235, 235, 238, 0.05), rgba(235, 235, 238, 0.01));
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.eos-pager a:hover,
.eos-pager a:focus-visible {
	border-color: var(--colors-base-white-20, rgba(235, 235, 238, 0.2));
}

.eos-pager a:last-child {
	text-align: right;
}

.eos-pager span {
	display: block;
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-pager strong {
	color: var(--fg-primary-rest, #ebebee);
	font: 500 18px/26px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

@media (max-width: 600px) {
	.eos-pager {
		grid-template-columns: 1fr;
	}

	.eos-pager a:last-child {
		text-align: left;
	}
}

/* ---------------------------------------------------------------------------
 * Animated scenes (landing_page;event_os_scene). A scene sits in the home
 * feature-card surface; its text is Inter Tight; it moves only with the
 * `is-playing` class event-os.js sets while it is on the screen, and never
 * for a reader who asked for less motion.
 * ------------------------------------------------------------------------ */
.eos-scene-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.eos-scene {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--roundings-xl, 24px);
	background: linear-gradient(180deg, rgba(235, 235, 238, 0.05), rgba(235, 235, 238, 0.01));
	box-shadow: 0 4px 24px rgba(11, 10, 21, 0.8);
	overflow: hidden;
}

.eos-scene svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.eos-scene text {
	font-family: var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-scene-phone {
	display: none;
}

@media (max-width: 640px) {
	.eos-scene-desktop {
		display: none;
	}

	.eos-scene-phone {
		display: block;
	}

	/* The flow line has no phone drawing: it keeps the one line. */
	.eos-scene--flow .eos-scene-desktop {
		display: block;
	}
}

/* Every animation waits for the scene to come on screen. Important because
   the feature scenes declare their animation inline, and the inline
   shorthand would otherwise set it running. */
.eos-scene:not(.is-playing) * {
	animation-play-state: paused !important;
}

@keyframes eos-orbit { to { transform: rotate(360deg); } }
@keyframes eos-orbit-r { to { transform: rotate(-360deg); } }
@keyframes eos-pulse-ring { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.35; } }
@keyframes eos-dash-flow { to { stroke-dashoffset: -20; } }
@keyframes eos-float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.eos-scene .orbit-ring { animation: eos-pulse-ring 4s ease-in-out infinite; }
.eos-scene .orbit-group { transform-origin: 200px 200px; }
.eos-scene .orbit-group-1 { animation: eos-orbit 30s linear infinite; }
.eos-scene .orbit-group-2 { animation: eos-orbit 45s linear infinite reverse; }
.eos-scene .orbit-group-1 .agent-node { transform-origin: 200px 200px; animation: eos-orbit-r 30s linear infinite; }
.eos-scene .orbit-group-2 .agent-node { transform-origin: 200px 200px; animation: eos-orbit 45s linear infinite; }
.eos-scene .data-flow-line { stroke-dasharray: 6 4; animation: eos-dash-flow 1.2s linear infinite; }
.eos-scene .center-icon { animation: eos-float-y 4s ease-in-out infinite; }

@keyframes eos-particle-drift {
	0% { opacity: 0; }
	15%, 85% { opacity: 1; }
	100% { opacity: 0; }
}

.eos-scene .flow-particle { animation: eos-particle-drift 3s ease-in-out infinite; }
.eos-scene .flow-particle:nth-of-type(2) { animation-delay: 0.6s; }
.eos-scene .flow-particle:nth-of-type(3) { animation-delay: 1.2s; }
.eos-scene .flow-particle:nth-of-type(4) { animation-delay: 1.8s; }
.eos-scene .flow-particle:nth-of-type(5) { animation-delay: 2.4s; }

/* Feature scenes: each group enters, holds and leaves on the scene's loop. */
@keyframes cs-fade-in {
	0%, 15% { opacity: 0; transform: translateY(4px); }
	30%, 80% { opacity: 1; transform: translateY(0); }
	95%, 100% { opacity: 0; }
}

@keyframes cs-slide-right {
	0% { opacity: 0; transform: translateX(-12px); }
	15%, 80% { opacity: 1; transform: translateX(0); }
	95%, 100% { opacity: 0; transform: translateX(12px); }
}

@keyframes cs-pop {
	0%, 40% { opacity: 0; transform: scale(0); }
	55% { opacity: 1; transform: scale(1.2); }
	65%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes cs-grow-x {
	0% { transform: scaleX(0); }
	30%, 100% { transform: scaleX(1); }
}

@keyframes cs-grow-y {
	0% { transform: scaleY(0); }
	30%, 100% { transform: scaleY(1); }
}

@keyframes cs-draw {
	0% { stroke-dashoffset: 200; }
	50%, 100% { stroke-dashoffset: 0; }
}

@keyframes cs-pulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 1; }
}

@keyframes cs-blink {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.4); }
}

@keyframes cs-cycle {
	0%, 20% { opacity: 1; transform: translateY(0); }
	25%, 100% { opacity: 0; transform: translateY(-8px); }
}

.eos-scene .cs-anim {
	transform-box: fill-box;
	transform-origin: center;
}

/* Fai reads the inbox, then lists what she did with it. */
@keyframes fai-slide-in {
	0% { transform: translateX(-20px); opacity: 0; }
	15%, 75% { transform: translateX(0); opacity: 1; }
	100% { transform: translateX(20px); opacity: 0; }
}

@keyframes fai-action-appear {
	0%, 25% { opacity: 0; transform: translateY(5px); }
	40%, 80% { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes fai-check-pop {
	0%, 50% { transform: scale(0); opacity: 0; }
	65% { transform: scale(1.3); opacity: 1; }
	75%, 100% { transform: scale(1); opacity: 1; }
}

@keyframes arrow-pulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.8; }
}

.eos-scene .fai-email { animation: fai-slide-in 5s ease-in-out infinite; }
.eos-scene .fai-action { animation: fai-action-appear 6s ease-in-out infinite; }
.eos-scene .fai-arrow-pulse { animation: arrow-pulse 2s ease-in-out infinite; }
.eos-scene .fai-check { transform-box: fill-box; transform-origin: center; animation: fai-check-pop 4s ease-out infinite; }

/* Vault: payments land, balances grow. */
@keyframes vault-tx-slide {
	0% { transform: translateY(8px); opacity: 0; }
	12%, 80% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(-8px); opacity: 0; }
}

@keyframes vault-bar-grow {
	0% { transform: scaleY(0); }
	30%, 100% { transform: scaleY(1); }
}

@keyframes vault-dot-blink {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.5); }
}

.eos-scene .vault-tx { animation: vault-tx-slide 5s ease-in-out infinite; }
.eos-scene .vault-bar { transform-box: fill-box; transform-origin: bottom center; animation: vault-bar-grow 4s ease-out infinite; }
.eos-scene .vault-dot-pulse { transform-box: fill-box; transform-origin: center; animation: vault-dot-blink 2s ease-in-out infinite; }

/* Capital: the advance flows to each cost, then comes back from sales. */
@keyframes cap-flow-dash { to { stroke-dashoffset: -16; } }

@keyframes cap-fill-grow {
	0% { transform: scaleX(0); }
	40%, 100% { transform: scaleX(1); }
}

@keyframes cap-check-in {
	0%, 40% { opacity: 0; transform: scale(0); }
	55% { opacity: 1; transform: scale(1.2); }
	65%, 100% { opacity: 1; transform: scale(1); }
}

.eos-scene .cap-flow { stroke-dasharray: 6 4; animation: cap-flow-dash 1.2s linear infinite; }
.eos-scene .cap-fill { transform-box: fill-box; transform-origin: left center; animation: cap-fill-grow 5s ease-out infinite; }
.eos-scene .cap-check { transform-box: fill-box; transform-origin: center; animation: cap-check-in 5s ease-out infinite; }

/* Less motion: every scene stands still, drawn complete. */
@media (prefers-reduced-motion: reduce) {
	.eos-scene *,
	.eos-scene.is-playing * {
		animation: none !important;
	}

	.eos-scene .cs-anim,
	.eos-scene .fai-email,
	.eos-scene .fai-action,
	.eos-scene .fai-check,
	.eos-scene .vault-tx,
	.eos-scene .cap-check,
	.eos-scene .flow-particle {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ---------------------------------------------------------------------------
 * Figures, quotes, guides and the small print.
 * ------------------------------------------------------------------------ */
.eos-stat-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.eos-stat-row li {
	display: flex;
	flex: 1 1 140px;
	flex-direction: column;
	gap: 2px;
	padding: 16px 20px;
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: var(--roundings-l, 16px);
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
}

.eos-stat-row strong {
	background: var(--gradient-button-outline);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font: 500 clamp(24px, 2.4vw, 32px)/1.2 var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-stat-row span {
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-stat-row--proof {
	max-width: 1120px;
	margin: 20px auto 0;
}

.eos-stat-row--proof strong {
	font-size: clamp(20px, 2vw, 24px);
}

.eos-quote-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.eos-quote {
	display: flex;
	flex-direction: column;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--roundings-xl, 24px);
	background: linear-gradient(180deg, rgba(235, 235, 238, 0.05), rgba(235, 235, 238, 0.01));
	box-shadow: 0 4px 24px rgba(11, 10, 21, 0.8);
}

.eos-quote--wide {
	grid-column: 1 / -1;
}

.eos-quote blockquote {
	margin: 0 0 20px;
	padding: 0;
	border: 0;
	color: var(--fg-primary-rest, #ebebee);
	font: 400 clamp(17px, 1.4vw, 20px)/1.5 var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-quote cite {
	margin: auto 0 0;
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: normal 400 14px/21px var(--font-family-inter-tight, "Inter Tight", sans-serif);
}

.eos-quote cite strong {
	color: var(--fg-primary-rest, #ebebee);
	font-weight: 500;
}

.eos-quote cite a {
	color: var(--colors-violet-300, #c4b5ff);
}

.eos-quote .eos-stat-row {
	margin: 24px 0 0;
}

.eos-guide-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.eos-guide-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 100%;
	padding: 18px 24px;
	border: 1px solid var(--colors-base-white-10, rgba(235, 235, 238, 0.1));
	border-radius: var(--roundings-l, 16px);
	background: var(--colors-base-white-05, rgba(235, 235, 238, 0.05));
	color: var(--fg-primary-rest, #ebebee);
	font: 500 16px/24px var(--font-family-inter-tight, "Inter Tight", sans-serif);
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.eos-guide-grid a:hover,
.eos-guide-grid a:focus-visible {
	border-color: var(--colors-base-white-20, rgba(235, 235, 238, 0.2));
}

.eos-guide-grid i,
.eos-benefit-more i {
	color: var(--colors-violet-300, #c4b5ff);
	font-size: 12px;
}

.eos-benefit-more {
	margin: 20px 0 0;
}

.eos-benefit-more a {
	color: var(--fg-primary-rest, #ebebee);
	font: 500 15px/22px var(--font-family-inter-tight, "Inter Tight", sans-serif);
	text-decoration: none;
}

.eos-card .eos-benefit-more {
	margin-top: auto;
	padding-top: 16px;
}

.eos-disclaimer {
	max-width: 760px;
	margin: 32px auto 0;
	color: var(--fg-tertiary-rest, #9f9cb0);
	font: 400 12px/18px var(--font-family-inter-tight, "Inter Tight", sans-serif);
	text-align: center;
}

@media (max-width: 760px) {
	.eos-quote-grid,
	.eos-guide-grid {
		grid-template-columns: 1fr;
	}

	.eos-quote {
		padding: 24px;
	}
}

/* The page's base list styles space list items for long prose; these lists
   are short labels and keep their own rhythm. */
.eos-area-card ul li,
.eos-feature-list li,
.eos-hero-outcomes li,
.eos-stat-row li,
.eos-system-points li,
.eos-guide-grid li,
.eos-quote-grid > li,
.eos-card-grid > li,
.eos-area-grid > li,
.eos-area-nav li {
	margin: 0;
}

.eos-stat-row {
	align-items: stretch;
}

/* The overview's phone rules move its hero media first; a microsite hero
   reads headline first, with room between the heading, the lead and the
   actions. */
.ticketing-conversion-page #hero.eos-hero .hero-content {
	order: 0;
}

.ticketing-conversion-page #hero.eos-hero .eos-hero-media {
	order: 1;
}

.ticketing-conversion-page #hero.eos-hero .hero-platform-desc {
	margin-top: 20px;
}

.ticketing-conversion-page #hero.eos-hero .button-row {
	margin-top: 28px;
}

/* ---------------------------------------------------------------------------
 * Concept drawings (landing_page;event_os_concept): each builds up in six
 * steps over an eight-second loop, holds, and starts again.
 * ------------------------------------------------------------------------ */
.eos-concept {
	margin-top: 24px;
}

.eos-concept .st1, .eos-concept .st2, .eos-concept .st3, .eos-concept .st4, .eos-concept .st5, .eos-concept .st6,
.eos-concept .trv, .eos-concept .out5 {
	transform-box: fill-box;
	transform-origin: center;
}

.eos-concept .g1, .eos-concept .g2, .eos-concept .g3, .eos-concept .g4, .eos-concept .g5, .eos-concept .g6 {
	transform-box: fill-box;
	transform-origin: left center;
}

@keyframes eos-step-1 {
	0%, 0% { opacity: 0; transform: translateY(6px) scale(0.96); }
	8%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-1 {
	0%, 0% { opacity: 0; transform: scaleX(0); }
	12%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-1 {
	0%, 0% { opacity: 0; transform: translate(0, 0); }
	2% { opacity: 1; transform: translate(0, 0); }
	14% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	18%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st1 { animation: eos-step-1 8s ease-out infinite; }
.eos-concept .g1 { animation: eos-grow-1 8s ease-out infinite; }
.eos-concept .tr1 { animation: eos-travel-1 8s ease-in-out infinite; }

@keyframes eos-step-2 {
	0%, 12% { opacity: 0; transform: translateY(6px) scale(0.96); }
	20%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-2 {
	0%, 12% { opacity: 0; transform: scaleX(0); }
	24%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-2 {
	0%, 12% { opacity: 0; transform: translate(0, 0); }
	14% { opacity: 1; transform: translate(0, 0); }
	26% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	30%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st2 { animation: eos-step-2 8s ease-out infinite; }
.eos-concept .g2 { animation: eos-grow-2 8s ease-out infinite; }
.eos-concept .tr2 { animation: eos-travel-2 8s ease-in-out infinite; }

@keyframes eos-step-3 {
	0%, 24% { opacity: 0; transform: translateY(6px) scale(0.96); }
	32%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-3 {
	0%, 24% { opacity: 0; transform: scaleX(0); }
	36%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-3 {
	0%, 24% { opacity: 0; transform: translate(0, 0); }
	26% { opacity: 1; transform: translate(0, 0); }
	38% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	42%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st3 { animation: eos-step-3 8s ease-out infinite; }
.eos-concept .g3 { animation: eos-grow-3 8s ease-out infinite; }
.eos-concept .tr3 { animation: eos-travel-3 8s ease-in-out infinite; }

@keyframes eos-step-4 {
	0%, 36% { opacity: 0; transform: translateY(6px) scale(0.96); }
	44%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-4 {
	0%, 36% { opacity: 0; transform: scaleX(0); }
	48%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-4 {
	0%, 36% { opacity: 0; transform: translate(0, 0); }
	38% { opacity: 1; transform: translate(0, 0); }
	50% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	54%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st4 { animation: eos-step-4 8s ease-out infinite; }
.eos-concept .g4 { animation: eos-grow-4 8s ease-out infinite; }
.eos-concept .tr4 { animation: eos-travel-4 8s ease-in-out infinite; }

@keyframes eos-step-5 {
	0%, 48% { opacity: 0; transform: translateY(6px) scale(0.96); }
	56%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-5 {
	0%, 48% { opacity: 0; transform: scaleX(0); }
	60%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-5 {
	0%, 48% { opacity: 0; transform: translate(0, 0); }
	50% { opacity: 1; transform: translate(0, 0); }
	62% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	66%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st5 { animation: eos-step-5 8s ease-out infinite; }
.eos-concept .g5 { animation: eos-grow-5 8s ease-out infinite; }
.eos-concept .tr5 { animation: eos-travel-5 8s ease-in-out infinite; }

@keyframes eos-step-6 {
	0%, 60% { opacity: 0; transform: translateY(6px) scale(0.96); }
	68%, 88% { opacity: 1; transform: none; }
	96%, 100% { opacity: 0; transform: none; }
}
@keyframes eos-grow-6 {
	0%, 60% { opacity: 0; transform: scaleX(0); }
	72%, 88% { opacity: 1; transform: scaleX(1); }
	96%, 100% { opacity: 0; transform: scaleX(1); }
}
@keyframes eos-travel-6 {
	0%, 60% { opacity: 0; transform: translate(0, 0); }
	62% { opacity: 1; transform: translate(0, 0); }
	74% { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
	78%, 100% { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
}
.eos-concept .st6 { animation: eos-step-6 8s ease-out infinite; }
.eos-concept .g6 { animation: eos-grow-6 8s ease-out infinite; }
.eos-concept .tr6 { animation: eos-travel-6 8s ease-in-out infinite; }

@keyframes eos-dim-5 {
	0%, 52% { opacity: 1; }
	60%, 92% { opacity: 0.12; }
	100% { opacity: 1; }
}

.eos-concept .out5 { animation: eos-dim-5 8s ease-out infinite; }
@keyframes eos-late {
	0%, 36% { opacity: 0; transform: translateY(6px); }
	44%, 56% { opacity: 1; transform: none; }
	62%, 100% { opacity: 0; transform: none; }
}

/* A part that comes in at step four and gives way at step six. */
.eos-concept .st4.out5 { animation: eos-late 8s ease-out infinite; }

@keyframes eos-sweep {
	0% { transform: translateX(0); }
	100% { transform: translateX(290px); }
}

@keyframes eos-drive {
	0%, 8% { transform: translate(0, 0); }
	30% { transform: translate(70px, -8px); }
	50% { transform: translate(136px, -16px); }
	70%, 100% { transform: translate(230px, -20px); }
}

@keyframes eos-spin { to { transform: rotate(360deg); } }
@keyframes eos-draw-ring {
	0% { stroke-dashoffset: 226; }
	60%, 100% { stroke-dashoffset: 60; }
}
@keyframes eos-draw-line {
	0%, 24% { stroke-dashoffset: 120; }
	40%, 88% { stroke-dashoffset: 0; }
	96%, 100% { stroke-dashoffset: 120; }
}
@keyframes eos-draw-box {
	0% { stroke-dashoffset: 260; }
	14%, 100% { stroke-dashoffset: 0; }
}

.eos-concept .flow { stroke-dasharray: 4 3; animation-name: eos-dash-flow; animation-duration: 1.2s; animation-timing-function: linear; animation-iteration-count: infinite; }
.eos-concept .flow.st1, .eos-concept .flow.st2, .eos-concept .flow.st3, .eos-concept .flow.st4, .eos-concept .flow.st5, .eos-concept .flow.st6 {
	animation-name: eos-dash-flow, var(--eos-step);
	animation-duration: 1.2s, 8s;
	animation-timing-function: linear, ease-out;
}
.eos-concept .flow.st1 { --eos-step: eos-step-1; }
.eos-concept .flow.st2 { --eos-step: eos-step-2; }
.eos-concept .flow.st3 { --eos-step: eos-step-3; }
.eos-concept .flow.st4 { --eos-step: eos-step-4; }
.eos-concept .flow.st5 { --eos-step: eos-step-5; }
.eos-concept .flow.st6 { --eos-step: eos-step-6; }
.eos-concept .pulse { animation: cs-pulse 1.8s ease-in-out infinite; }
.eos-concept .blink { transform-box: fill-box; transform-origin: center; animation: cs-blink 1.2s ease-in-out infinite; }
.eos-concept .st2.pulse { animation: eos-step-2 8s ease-out infinite; }
.eos-concept .sweep { animation: eos-sweep 8s linear infinite; }
.eos-concept .drive { animation: eos-drive 8s ease-in-out infinite; }
.eos-concept .spin { transform-box: view-box; animation: eos-spin 6s linear infinite; }
.eos-concept .draw { animation: eos-draw-ring 8s ease-out infinite; }
.eos-concept .sig { animation: eos-draw-line 8s ease-out infinite; }
.eos-concept .draw-rect { animation: eos-draw-box 8s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
	.eos-concept [class] {
		opacity: 1 !important;
		transform: none !important;
		stroke-dashoffset: 0 !important;
	}

	.eos-concept .trv,
	.eos-concept .st4.out5 {
		display: none;
	}
	.eos-concept .draw {
		stroke-dashoffset: 60 !important;
	}
}

/* On an area card the drawing takes the place of the icon. */
.eos-area-card .eos-concept {
	margin: 0 0 24px;
}
