:root {
	--ink: #101820;
	--ink-soft: #1f2a33;
	--slate: #566271;
	--line: #dfe6e8;
	--paper: #ffffff;
	--cloud: #f4f8f7;
	--teal: #0f766e;
	--teal-dark: #0c514d;
	--coral: #ef5b4f;
	--gold: #d7a53f;
	--mint: #dff4ed;
	--shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
	--max: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	letter-spacing: 0;
	line-height: 1.06;
}

h1 {
	font-size: 4.45rem;
}

h2 {
	font-size: 2.65rem;
}

h3 {
	font-size: 1.2rem;
}

p {
	margin-bottom: 1rem;
	color: var(--slate);
}

.visually-hidden,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	border-radius: 6px;
	background: var(--ink);
	color: #fff;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(16, 24, 32, 0.08);
	background: rgba(255, 255, 255, 0.93);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	width: min(100% - 40px, var(--max));
	min-height: 74px;
	margin: 0 auto;
	align-items: center;
	gap: 28px;
}

.brand {
	flex: 0 0 auto;
}

.brand img {
	height: 42px;
	width: auto;
}

.primary-nav {
	flex: 1 1 auto;
}

.primary-nav ul,
.site-footer ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav ul {
	justify-content: center;
	gap: 6px;
}

.primary-nav a,
.text-link {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	padding: 0 12px;
	border-radius: 6px;
	color: var(--ink-soft);
	font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.text-link:hover {
	background: var(--mint);
	color: var(--teal-dark);
}

.portal-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.nav-toggle__icon {
	position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
	position: absolute;
	left: 0;
}

.nav-toggle__icon::before {
	top: -7px;
}

.nav-toggle__icon::after {
	top: 7px;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(16, 24, 32, 0.16);
}

.button--small {
	min-height: 42px;
	padding: 0 15px;
}

.button--dark {
	background: var(--ink);
	color: #fff;
}

.button--coral {
	background: var(--coral);
	color: #fff;
}

.button--light {
	border-color: rgba(255, 255, 255, 0.52);
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.38);
	color: #fff;
}

.button--full {
	width: 100%;
}

.hero {
	position: relative;
	display: grid;
	min-height: calc(100svh - 150px);
	overflow: hidden;
	align-items: center;
	background: var(--ink);
	color: #fff;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.68) 46%, rgba(16, 24, 32, 0.18));
	content: "";
}

.hero__content {
	position: relative;
	width: min(100% - 40px, var(--max));
	margin: 0 auto;
	padding: 82px 0 76px;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
	color: #fff;
}

.hero__intro {
	max-width: 650px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.3rem;
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.home-search {
	display: grid;
	grid-template-columns: minmax(190px, 1.25fr) minmax(160px, 0.9fr) minmax(130px, 0.65fr) auto;
	max-width: 900px;
	margin: 0 0 24px;
	padding: 10px;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 48px rgba(16, 24, 32, 0.24);
}

.home-search label {
	display: grid;
	align-items: center;
	gap: 3px;
	padding: 0 12px;
	border-right: 1px solid var(--line);
}

.home-search label:nth-of-type(3) {
	border-right: 0;
}

.home-search span {
	color: var(--teal-dark);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-search input,
.home-search select {
	width: 100%;
	min-height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-weight: 800;
	outline: 0;
}

.home-search input::placeholder {
	color: #7a858d;
	font-weight: 700;
}

.home-search .button {
	min-height: 58px;
}

.search-status {
	grid-column: 1 / -1;
	min-height: 20px;
	margin: -2px 8px 2px;
	color: var(--teal-dark);
	font-size: 0.9rem;
	font-weight: 900;
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--teal);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow {
	color: #8de1d3;
}

.payment-row {
	display: flex;
	flex-wrap: wrap;
	max-width: 640px;
	margin: 0;
	padding: 0;
	gap: 10px;
	list-style: none;
}

.payment-row li {
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
}

.section,
.page-hero,
.portal-page,
.site-footer {
	padding-right: 20px;
	padding-left: 20px;
}

.section {
	padding-top: 86px;
	padding-bottom: 86px;
}

.section > *,
.page-hero > *,
.portal-page,
.footer-grid,
.footer-bottom {
	width: min(100%, var(--max));
	margin-right: auto;
	margin-left: auto;
}

.section--compact {
	padding-top: 38px;
	padding-bottom: 38px;
}

.section--tint {
	background: var(--cloud);
}

.section--dark {
	background: var(--ink);
	color: #fff;
}

.section--dark p {
	color: rgba(255, 255, 255, 0.75);
}

.section-heading {
	max-width: 780px;
	margin-bottom: 40px;
}

.section-heading h2,
.page-hero h1 {
	margin-bottom: 16px;
}

.section-heading p {
	font-size: 1.12rem;
}

.metric-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
}

.metric-strip div {
	padding: 24px;
	border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
	border-right: 0;
}

.metric-strip strong,
.metric-strip span {
	display: block;
}

.metric-strip strong {
	margin-bottom: 4px;
	font-size: 1.08rem;
}

.metric-strip span {
	color: var(--slate);
	font-size: 0.95rem;
}

.feature-grid,
.audience-grid,
.promotion-grid {
	display: grid;
	gap: 18px;
}

.feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.audience-card,
.promotion-card,
.portal-form,
.event-preview,
.scale-panel,
.values-list,
.price-placeholder,
.faq-list article {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(16, 24, 32, 0.07);
}

.feature-card,
.audience-card,
.promotion-card {
	min-height: 218px;
	padding: 26px;
}

.feature-card h3,
.audience-card h2,
.audience-card h3,
.promotion-card h3,
.faq-list h3 {
	margin-bottom: 12px;
}

.feature-card p,
.audience-card p,
.promotion-card p {
	margin-bottom: 0;
}

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

.promotion-card {
	position: relative;
	overflow: hidden;
	min-height: 230px;
}

.promotion-card::before {
	display: block;
	width: 42px;
	height: 5px;
	margin-bottom: 24px;
	border-radius: 999px;
	background: var(--coral);
	content: "";
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	gap: 56px;
	align-items: center;
}

.split-section > * {
	width: auto;
}

.check-list {
	display: grid;
	margin: 22px 0 26px;
	padding: 0;
	gap: 10px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--ink-soft);
}

.check-list li::before {
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	content: "✓";
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
}

.text-cta {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	color: var(--teal-dark);
	font-weight: 900;
}

.text-cta::after {
	margin-left: 8px;
	content: "→";
}

.event-preview {
	overflow: hidden;
	max-width: 500px;
	justify-self: end;
}

.event-preview__image {
	min-height: 210px;
	background:
		linear-gradient(135deg, rgba(239, 91, 79, 0.82), rgba(15, 118, 110, 0.82)),
		url("/assets/images/local-tickets-hero.webp") center / cover;
}

.event-preview__body {
	padding: 26px;
}

.event-preview__label {
	margin-bottom: 4px;
	color: var(--coral);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.video-preview,
.media-card {
	display: flex;
	min-height: 66px;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--cloud);
	color: var(--ink);
	font-weight: 800;
}

.play-icon {
	position: relative;
	display: inline-flex;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--coral);
}

.play-icon::before {
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid #fff;
	content: "";
}

.ticket-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.ticket-row + .button {
	margin-top: 18px;
}

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

.audience-grid--large .audience-card {
	min-height: 250px;
}

.cta-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 36px;
	align-items: center;
}

.cta-band > * {
	width: auto;
}

.cta-band h2 {
	max-width: 760px;
	color: #fff;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.page-hero {
	padding-top: 88px;
	padding-bottom: 56px;
	background: linear-gradient(180deg, #f8fbfa, #fff);
}

.page-hero > * {
	max-width: 860px;
	text-align: center;
}

.page-hero p:last-child {
	font-size: 1.18rem;
}

.process-grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
	gap: 50px;
}

.timeline {
	display: grid;
	gap: 16px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 18px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.timeline-item > span {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-weight: 900;
}

.timeline-item h3 {
	margin-bottom: 6px;
}

.timeline-item p {
	margin-bottom: 0;
}

.media-stack {
	display: grid;
	gap: 16px;
}

.media-card {
	min-height: 96px;
	font-size: 1.05rem;
}

.media-card--image {
	background: linear-gradient(135deg, var(--mint), #fff);
}

.media-card--video {
	background: var(--ink);
	color: #fff;
}

.media-card--link {
	background: linear-gradient(135deg, #fff4ee, #fff);
}

.room-designer-preview {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
}

.room-designer-preview__bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px;
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.room-designer-preview__bar span {
	padding: 7px 10px;
	border-radius: 6px;
	background: var(--cloud);
	color: var(--ink);
	font-size: 0.82rem;
	font-weight: 900;
}

.room-designer-preview__bar span:first-child {
	background: var(--mint);
	color: var(--teal-dark);
}

.room-designer-preview__canvas {
	position: relative;
	min-height: 430px;
	padding: 28px 44px 34px;
	background:
		linear-gradient(rgba(16, 24, 32, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 24, 32, 0.06) 1px, transparent 1px),
		#f8fbfa;
	background-size: 28px 28px;
}

.room-stage,
.room-balcony {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: 900;
}

.room-stage {
	width: min(74%, 360px);
	min-height: 58px;
	margin: 0 auto 30px;
	background: var(--ink);
	color: #fff;
}

.room-balcony {
	width: min(58%, 280px);
	min-height: 44px;
	margin: 30px auto 0;
	border: 2px dashed rgba(15, 118, 110, 0.45);
	background: rgba(223, 244, 237, 0.72);
	color: var(--teal-dark);
}

.room-aisle {
	position: absolute;
	top: 116px;
	bottom: 92px;
	width: 14px;
	border-radius: 999px;
	background: rgba(239, 91, 79, 0.16);
}

.room-aisle--left {
	left: 28px;
}

.room-aisle--right {
	right: 28px;
}

.seat-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(30px, 1fr));
	max-width: 420px;
	margin: 0 auto;
	gap: 10px;
}

.seat {
	display: inline-flex;
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	border-radius: 6px 6px 12px 12px;
	background: var(--teal);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 900;
}

.seat--held {
	background: var(--coral);
}

.seat--restricted {
	background:
		repeating-linear-gradient(45deg, rgba(16, 24, 32, 0.18) 0 4px, transparent 4px 8px),
		var(--gold);
	color: var(--ink);
}

.room-designer-preview__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 15px 18px;
	border-top: 1px solid var(--line);
}

.room-designer-preview__legend span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--slate);
	font-size: 0.9rem;
	font-weight: 800;
}

.legend-seat {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 4px 4px 8px 8px;
	background: var(--teal);
}

.legend-seat--held {
	background: var(--coral);
}

.legend-seat--restricted {
	background:
		repeating-linear-gradient(45deg, rgba(16, 24, 32, 0.18) 0 3px, transparent 3px 6px),
		var(--gold);
}

.scale-panel,
.values-list,
.price-placeholder {
	display: grid;
	gap: 0;
	overflow: hidden;
}

.scale-panel div,
.values-list div,
.price-placeholder div {
	padding: 24px;
	border-bottom: 1px solid var(--line);
}

.scale-panel div:last-child,
.values-list div:last-child,
.price-placeholder div:last-child {
	border-bottom: 0;
}

.scale-panel strong,
.scale-panel span,
.values-list strong,
.values-list span,
.price-placeholder span,
.price-placeholder strong {
	display: block;
}

.scale-panel strong,
.values-list strong,
.price-placeholder strong {
	margin-bottom: 4px;
	color: var(--ink);
	font-size: 1.08rem;
}

.scale-panel span,
.values-list span,
.price-placeholder span {
	color: var(--slate);
}

.pricing-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
	gap: 44px;
	align-items: center;
}

.pricing-band > * {
	width: auto;
}

.faq-list {
	display: grid;
	gap: 14px;
}

.faq-list article {
	padding: 26px;
}

.faq-list p {
	margin-bottom: 0;
}

.portal-page {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 430px);
	min-height: calc(100svh - 74px);
	padding-top: 76px;
	padding-bottom: 76px;
	gap: 56px;
	align-items: center;
}

.portal-page--creator {
	background: var(--cloud);
}

.portal-copy h1 {
	margin-bottom: 18px;
}

.portal-copy p {
	max-width: 630px;
	font-size: 1.12rem;
}

.portal-form {
	display: grid;
	padding: 30px;
	gap: 18px;
}

.portal-stack {
	display: grid;
	gap: 16px;
}

.portal-form h2 {
	margin-bottom: 4px;
	font-size: 1.6rem;
}

.portal-form label {
	display: grid;
	gap: 7px;
	color: var(--ink);
	font-weight: 800;
}

.portal-form input {
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid #cbd6d9;
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
}

.portal-form input:focus {
	outline: 3px solid rgba(15, 118, 110, 0.18);
	border-color: var(--teal);
}

.form-status {
	min-height: 24px;
	margin-bottom: 0;
	color: var(--teal-dark);
	font-weight: 800;
}

.text-link--standalone {
	justify-content: center;
}

.review-preview {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(16, 24, 32, 0.07);
}

.review-preview h2 {
	margin-bottom: 14px;
	font-size: 1.35rem;
}

.review-preview p:last-child {
	margin-bottom: 0;
}

.star-scale {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 7px;
	margin-bottom: 16px;
}

.star-scale span {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--cloud);
	color: var(--ink);
	font-weight: 900;
}

.star-scale span::after {
	margin-left: 3px;
	color: var(--gold);
	content: "★";
	font-size: 0.78rem;
}

.site-footer {
	padding-top: 56px;
	background: var(--ink);
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr;
	gap: 34px;
	padding-bottom: 38px;
}

.footer-brand img {
	width: 188px;
	height: auto;
	margin-bottom: 16px;
}

.site-footer h2 {
	margin-bottom: 12px;
	color: #fff;
	font-size: 1rem;
}

.site-footer p,
.site-footer a,
.footer-pills li,
.footer-note {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
	color: #fff;
}

.site-footer ul {
	flex-direction: column;
	gap: 8px;
}

.footer-pills {
	flex-direction: row !important;
	flex-wrap: wrap;
	gap: 8px !important;
}

.footer-pills li {
	padding: 6px 9px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	font-size: 0.88rem;
}

.footer-note {
	margin-top: 14px;
	margin-bottom: 0;
	font-size: 0.9rem;
}

.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.92rem;
}

@media (max-width: 1080px) {
	h1 {
		font-size: 3.65rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.site-header__inner {
		gap: 16px;
	}

	.portal-actions .text-link {
		display: none;
	}

	.feature-grid,
	.feature-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.audience-grid,
	.feature-grid--three,
	.promotion-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.site-header__inner {
		min-height: 66px;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 12px 0;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		display: none;
		flex-basis: 100%;
		order: 4;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-direction: column;
		align-items: stretch;
		padding: 10px 0 6px;
	}

	.primary-nav a {
		width: 100%;
		justify-content: flex-start;
	}

	.portal-actions {
		margin-left: auto;
	}

	.hero {
		min-height: auto;
	}

	.hero__content {
		padding-top: 70px;
		padding-bottom: 64px;
	}

	.hero__media::after {
		background: linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.72));
	}

	.split-section,
	.process-grid,
	.pricing-band,
	.portal-page,
	.cta-band {
		grid-template-columns: 1fr;
	}

	.event-preview {
		justify-self: stretch;
		max-width: none;
	}

	.portal-page {
		min-height: auto;
	}

	.home-search {
		grid-template-columns: 1fr 1fr;
	}

	.home-search label:nth-of-type(2) {
		border-right: 0;
	}

	.home-search .button {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	h1 {
		font-size: 2.7rem;
	}

	h2 {
		font-size: 1.95rem;
	}

	.site-header__inner,
	.hero__content {
		width: min(100% - 28px, var(--max));
	}

	.brand img {
		height: 36px;
	}

	.portal-actions .button {
		min-height: 40px;
		padding-right: 12px;
		padding-left: 12px;
		font-size: 0.9rem;
	}

	.hero__intro,
	.page-hero p:last-child,
	.portal-copy p {
		font-size: 1.04rem;
	}

	.hero__actions .button {
		width: 100%;
	}

	.section {
		padding-top: 62px;
		padding-bottom: 62px;
	}

	.page-hero {
		padding-top: 62px;
		padding-bottom: 42px;
	}

	.metric-strip,
	.feature-grid,
	.feature-grid--three,
	.feature-grid--four,
	.audience-grid,
	.promotion-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.home-search {
		grid-template-columns: 1fr;
	}

	.home-search label {
		min-height: 58px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.home-search label:nth-of-type(3) {
		border-bottom: 0;
	}

	.metric-strip div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.metric-strip div:last-child {
		border-bottom: 0;
	}

	.feature-card,
	.audience-card {
		min-height: 0;
	}

	.star-scale {
		grid-template-columns: repeat(3, 1fr);
	}

	.portal-page {
		padding-top: 52px;
		padding-bottom: 58px;
		gap: 34px;
	}

	.portal-form {
		padding: 24px;
	}
}

@media (max-width: 420px) {
	h1 {
		font-size: 2.25rem;
	}

	.portal-actions {
		display: none;
	}

	.payment-row li {
		width: calc(50% - 5px);
		text-align: center;
	}
}
