/* ==========================================================================
   Telaeris Partner Summit 2026
   Editorial design system, built on the Telaeris Brand Style Guide
   ========================================================================== */

:root {
	/* Brand tokens, exact values from the Telaeris Brand Style Guide */
	--brand-dark: #122632; /* PMS 7547 - primary dark */
	--brand-blue: #006990; /* PMS 7470 - Telaeris blue */
	--brand-orange: #f78e1e; /* PMS Orange 21 - CTA orange */
	--brand-yellow: #ffde00; /* PMS 109 - highlight yellow */
	--brand-red: #e31b23; /* PMS Red 1797 */
	--brand-gray: #666666; /* PMS Cool Gray 11 */

	/* Tonal extensions for editorial layout */
	--ink-100: #f3f5f7;
	--ink-200: #e2e6ea;
	--ink-300: #adb6bd;
	--ink-500: #5d6e7a;
	--ink-700: #2a3f4d;
	--ink-900: #0a1820;

	/* Warmer accents drawn from the orange band of the palette */
	--tone-warm-soft: #fff4e7;
	--tone-warm-deep: rgba(247, 142, 30, 0.08);

	/* Type scale */
	--font-display: "Fraunces", "Playfair Display", Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Rhythm */
	--container: 1240px;
	--gutter: 2rem;

	/* Curves */
	--r-sm: 4px;
	--r-md: 10px;
	--r-lg: 18px;
	--r-xl: 28px;

	/* Shadows */
	--shadow-1: 0 1px 2px rgba(18, 38, 50, 0.08);
	--shadow-2: 0 8px 24px -8px rgba(18, 38, 50, 0.18);
	--shadow-3: 0 32px 80px -24px rgba(18, 38, 50, 0.35);
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	color: var(--brand-dark);
	background: #fdfdfd;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "cv11", "ss01", "ss03"; /* Inter stylistic refinements */
}

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

a {
	color: var(--brand-blue);
	text-decoration: none;
	transition: color 0.18s ease;
}
a:hover {
	color: var(--brand-orange);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--brand-dark);
}

h1 {
	font-size: clamp(2.6rem, 5.4vw, 4.6rem);
	font-weight: 400;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50,
		"WONK" 0;
}

h2 {
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 400;
	font-variation-settings:
		"opsz" 96,
		"SOFT" 40;
}

h3 {
	font-size: clamp(1.4rem, 2vw, 1.7rem);
	font-weight: 500;
	letter-spacing: -0.015em;
}

h4 {
	font-size: 1.05rem;
	font-weight: 600;
	font-family: var(--font-body);
	letter-spacing: -0.005em;
}

p {
	margin: 0 0 1rem;
}
p:last-child {
	margin-bottom: 0;
}

.lede {
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	line-height: 1.55;
	color: var(--ink-700);
	max-width: 56ch;
}

/* Eyebrow label, used to introduce sections */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-blue);
}
.eyebrow::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--brand-blue);
	transform: rotate(45deg);
}

/* Highlighted inline word, used in display headings */
.accent {
	color: var(--brand-orange);
	font-style: italic;
}
.accent-blue {
	color: var(--brand-blue);
}
.accent-yellow {
	color: var(--brand-yellow);
	font-style: italic;
}

/* ---------- Container ---------- */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.container-narrow {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.95rem 1.6rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		background 0.18s ease;
	white-space: nowrap;
}
.btn-primary {
	background: var(--brand-orange);
	color: #fff;
	box-shadow: 0 6px 20px -6px rgba(247, 142, 30, 0.6);
}
.btn-primary:hover {
	background: #f99830;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -6px rgba(247, 142, 30, 0.7);
	color: #fff;
}
.btn-primary:active {
	transform: translateY(0);
}

.btn-ghost {
	background: transparent;
	color: var(--brand-dark);
	border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover {
	border-color: var(--brand-dark);
	color: var(--brand-dark);
	transform: translateY(-1px);
}

.btn-on-dark {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
}
.btn-on-dark:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.btn-large {
	padding: 1.1rem 1.9rem;
	font-size: 1rem;
}

.btn .arrow {
	display: inline-block;
	transition: transform 0.18s ease;
}
.btn:hover .arrow {
	transform: translateX(3px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 1.5rem 0;
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.site-logo img {
	height: 32px;
}
.site-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.site-nav a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	position: relative;
}
.site-nav a:not(.btn):hover {
	color: #fff;
}
.site-nav a:not(.btn)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 1px;
	background: var(--brand-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.site-nav a:not(.btn):hover::after {
	transform: scaleX(1);
}

@media (max-width: 720px) {
	.site-nav a:not(.btn) {
		display: none;
	}
}

/* ==========================================================================
   HERO - editorial, atmospheric, big photography
   ========================================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 4rem;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		url("../img/form-bg.jpg") center/cover no-repeat,
		var(--brand-blue);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(135deg, rgba(18, 38, 50, 0.85) 0%, rgba(0, 105, 144, 0.55) 50%, rgba(18, 38, 50, 0.85) 100%), radial-gradient(circle at 20% 80%, rgba(247, 142, 30, 0.15), transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 222, 0, 0.08), transparent 50%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: end;
	width: 100%;
}

.hero-main {
	max-width: 640px;
}

.hero h1 {
	color: #fff;
	margin: 1.5rem 0 1.5rem;
}
.hero .eyebrow {
	color: var(--brand-yellow);
}
.hero .eyebrow::before {
	background: var(--brand-yellow);
}

.hero-lede {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	max-width: 50ch;
	margin-bottom: 2.5rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

/* Side facts column with editorial labels */
.hero-side {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	padding-bottom: 0.5rem;
}
.hero-fact {
	border-left: 2px solid var(--brand-yellow);
	padding: 0.1rem 0 0.1rem 1.1rem;
}
.hero-fact .label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-yellow);
	margin-bottom: 0.3rem;
}
.hero-fact .value {
	display: block;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #fff;
}
.hero-fact .value-sub {
	display: block;
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.25rem;
}

/* Decorative diamond accent floating in hero */
.hero-diamond {
	position: absolute;
	top: 50%;
	right: -120px;
	transform: translateY(-50%) rotate(45deg);
	width: 380px;
	height: 380px;
	border: 1px solid rgba(255, 222, 0, 0.18);
	pointer-events: none;
	z-index: -1;
}
.hero-diamond::before {
	content: "";
	position: absolute;
	inset: 30px;
	border: 1px solid rgba(247, 142, 30, 0.12);
}

/* Scroll indicator */
.scroll-cue {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}
.scroll-cue::after {
	content: "";
	width: 1px;
	height: 36px;
	background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
	animation: scroll-fade 2.2s ease-in-out infinite;
}
@keyframes scroll-fade {
	0%,
	100% {
		opacity: 0.4;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(8px);
	}
}

@media (max-width: 880px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
		align-items: stretch;
	}
	.hero-side {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-diamond {
		display: none;
	}
	.scroll-cue {
		display: none;
	}
}
@media (max-width: 480px) {
	.hero-side {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   URGENCY BAND - between hero and content
   ========================================================================== */
.urgency-band {
	background: var(--brand-yellow);
	padding: 1.1rem 0;
	position: relative;
	overflow: hidden;
}
.urgency-band::before,
.urgency-band::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	background: var(--brand-dark);
	transform: translateY(-50%) rotate(45deg);
}
.urgency-band::before {
	left: 12%;
}
.urgency-band::after {
	right: 12%;
}
@media (max-width: 880px) {
	.urgency-band::before,
	.urgency-band::after {
		display: none;
	}
}

.urgency-band .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	flex-wrap: nowrap;
	text-align: left;
}
@media (max-width: 480px) {
	.urgency-band .container {
		gap: 0.6rem;
		padding: 0 1rem;
	}
}
.urgency-band .pulse {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--brand-red);
	border-radius: 50%;
	animation: pulse 1.6s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.3);
	}
}
.urgency-band p {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--brand-dark);
	letter-spacing: 0.005em;
}
.urgency-band strong {
	font-weight: 800;
}

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
section {
	padding: 7rem 0;
}
@media (max-width: 720px) {
	section {
		padding: 3rem 0;
	}
}

.section-head {
	margin-bottom: 4rem;
	max-width: 720px;
}
.section-head .eyebrow {
	margin-bottom: 1rem;
}

/* Wide editorial intro - eyebrow on left, headline+lede on right */
.section-head-split {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
	align-items: start;
}
.section-head-split .eyebrow {
	margin-top: 0.5rem;
	position: sticky;
	top: 100px;
}
@media (max-width: 880px) {
	.section-head-split {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2.5rem;
	}
	.section-head-split .eyebrow {
		position: static;
		top: auto;
		margin-top: 0;
		margin-bottom: 0.5rem;
	}
}

/* ==========================================================================
   ABOUT - editorial split with image
   ========================================================================== */
.about {
	background: #fff;
	position: relative;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 5rem;
	align-items: center;
}
.about-text h2 {
	margin-bottom: 1.5rem;
}
.about-text .lede {
	margin-bottom: 2rem;
}

.about-photo {
	position: relative;
	align-self: stretch;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: url("../img/bg-1.jpg") center/cover;
	box-shadow: var(--shadow-3);
}
.about-photo::after {
	/* soft gradient at bottom for caption legibility */
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(18, 38, 50, 0.55));
	pointer-events: none;
}
.about-photo .photo-tag {
	position: absolute;
	bottom: 1.25rem;
	left: 1.5rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	z-index: 2;
}

@media (max-width: 880px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ==========================================================================
   AGENDA - editorial three-day breakdown
   ========================================================================== */
.agenda {
	background:
		linear-gradient(180deg, rgba(0, 105, 144, 0.55) 0%, rgba(0, 105, 144, 0.4) 100%),
		url("../img/form-bg.jpg") center/cover no-repeat,
		var(--brand-blue);
	color: rgba(255, 255, 255, 0.92);
	position: relative;
	overflow: hidden;
}
.agenda::before {
	display: none;
}
.agenda h2 {
	color: #fff;
}
.agenda .eyebrow {
	color: var(--brand-yellow);
}
.agenda .eyebrow::before {
	background: var(--brand-yellow);
}
.agenda .lede {
	color: rgba(255, 255, 255, 0.7);
}

.agenda-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}

.day-card {
	position: relative;
	padding: 2.5rem 2rem 2.25rem;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		background 0.3s ease;
}
.day-card:hover {
	transform: translateY(-4px);
	border-color: rgba(247, 142, 30, 0.4);
	background: rgba(255, 255, 255, 0.04);
}

.day-card .day-num {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 0.95;
	color: var(--brand-yellow);
	letter-spacing: -0.025em;
	margin-bottom: 1.25rem;
	display: block;
	font-style: italic;
}
.day-card .day-date {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-yellow);
	margin-bottom: 0.85rem;
}
.day-card h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.55rem;
}
.day-card p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}
.day-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.25rem;
}
.day-card ul li {
	position: relative;
	padding: 0.4rem 0 0.4rem 1.2rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}
.day-card ul li.choose-from-label::before {
	display: none;
}
.day-card ul li.choose-from-label {
	list-style: none;
	padding: 0.4rem 0;
	margin-bottom: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
}
.day-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.82);
	transform: rotate(45deg);
}

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

/* ==========================================================================
   VENUE & HOTEL - asymmetric editorial
   ========================================================================== */
.venue {
	background: #fff;
}

.venue-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.venue-photo {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--r-lg);
	overflow: hidden;
	background:
		linear-gradient(180deg, transparent 60%, rgba(18, 38, 50, 0.6)),
		url("../img/bg-2.jpg") center/cover;
	box-shadow: var(--shadow-3);
}
.venue-photo .caption {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	color: #fff;
	z-index: 1;
}
.venue-photo .caption .num {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-style: italic;
	color: var(--brand-yellow);
	margin-bottom: 0.25rem;
}
.venue-photo .caption .ttl {
	font-size: 1.2rem;
	font-weight: 600;
}

.venue-text h2 {
	margin-bottom: 1rem;
}
.venue-address {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-style: italic;
	color: var(--ink-700);
	margin-bottom: 2rem;
	line-height: 1.5;
}

.venue-features {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}
.venue-features li {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	font-size: 0.97rem;
	color: var(--ink-700);
}
.venue-features li::before {
	content: "";
	display: inline-block;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	margin-top: 0.55rem;
	background: var(--ink-700);
	transform: rotate(45deg);
}

.hotel-block-card {
	margin-top: 2rem;
	padding: 1.75rem 2rem;
	background: rgba(0, 105, 144, 0.06);
	border-radius: var(--r-md);
	border: 1px solid rgba(0, 105, 144, 0.2);
	border-left: 4px solid var(--brand-blue);
	position: relative;
}
.hotel-block-card .tag {
	display: inline-block;
	background: var(--brand-blue);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	margin-bottom: 0.75rem;
}
.hotel-block-card h4 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	color: var(--brand-dark);
}
.hotel-block-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ink-700);
	line-height: 1.55;
}

@media (max-width: 880px) {
	.venue-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.venue-photo {
		aspect-ratio: 4 / 3;
	}
}

/* ==========================================================================
   ACTIVITY DAY - magazine-style triple feature with photos
   ========================================================================== */
.activities {
	background:
		linear-gradient(180deg, rgba(0, 105, 144, 0.55) 0%, rgba(0, 105, 144, 0.4) 100%),
		url("../img/form-bg.jpg") center/cover no-repeat,
		var(--brand-blue);
	position: relative;
	overflow: hidden;
}
.activities .container {
	position: relative;
}
.activities h2 {
	color: #fff;
}
.activities .eyebrow {
	color: var(--brand-yellow);
}
.activities .eyebrow::before {
	background: var(--brand-yellow);
}
.activities .lede {
	color: rgba(255, 255, 255, 0.85);
}

.activities-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.activity-card {
	position: relative;
	background: #fff;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}
.activity-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-3);
}

.activity-photo {
	aspect-ratio: 16 / 11;
	position: relative;
	background-size: cover;
	background-position: center;
}
.activity-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(18, 38, 50, 0.35));
}
.activity-card.golf .activity-photo {
	background-image: url("../img/bg-3.jpg");
}
.activity-card.spa .activity-photo {
	background-image: url("../img/bg-4.jpg");
	background-position: center 30%;
}

.activity-body {
	padding: 1.75rem 1.85rem 1.85rem;
}
.activity-body .num {
	display: block;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.85rem;
	color: var(--brand-orange);
	letter-spacing: 0.02em;
	margin-bottom: 0.4rem;
}
.activity-body h3 {
	margin: 0 0 0.6rem;
	font-size: 1.4rem;
}
.activity-body p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ink-500);
	line-height: 1.55;
}

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

/* ==========================================================================
   EXPLORE SAN DIEGO - photographic gallery break
   ========================================================================== */
.explore {
	padding: 0;
	background: var(--brand-dark);
}
.explore-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: 460px;
}
.explore-tile {
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	color: #fff;
	overflow: hidden;
	transition: transform 0.5s ease;
}
.explore-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 38, 50, 0.05) 0%, rgba(18, 38, 50, 0.2) 50%, rgba(18, 38, 50, 0.85) 100%);
	transition: background 0.4s ease;
}
.explore-tile:hover::after {
	background: linear-gradient(180deg, rgba(18, 38, 50, 0.05) 0%, rgba(18, 38, 50, 0.2) 50%, rgba(18, 38, 50, 0.7) 100%);
}
.explore-tile .tile-content {
	position: relative;
	z-index: 1;
}
.explore-tile .num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.95rem;
	color: var(--brand-yellow);
	margin-bottom: 0.25rem;
	display: block;
}
.explore-tile h3 {
	color: #fff;
	font-size: 1.4rem;
	margin: 0 0 0.4rem;
}
.explore-tile p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 28ch;
}
.explore-tile.t1 {
	background-image: url("../img/bg-5.jpg");
}
.explore-tile.t2 {
	background-image: url("../img/bg-6.jpg");
}
.explore-tile.t3 {
	background-image: url("../img/bg-7.jpg");
}
.explore-tile.t1,
.explore-tile.t2,
.explore-tile.t3 {
	background-size: cover;
	background-position: center;
}

@media (max-width: 880px) {
	.explore-inner {
		grid-template-columns: 1fr;
	}
	.explore-tile {
		min-height: 280px;
	}
}

/* ==========================================================================
   PRICING & SPONSORSHIP - editorial split
   ========================================================================== */
.pricing {
	background: #fff;
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3rem;
	align-items: stretch;
}

/* Attendee pricing card - editorial poster */
.price-card {
	position: relative;
	padding: 3rem;
	background: var(--brand-dark);
	border-radius: var(--r-lg);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.price-card::before {
	display: none;
}
.price-card .label {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-yellow);
	margin-bottom: 1rem;
}
.price-card .price {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	margin-bottom: 0.5rem;
}
.price-card .price .amount {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 7vw, 5rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
}
.price-card .price .per {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}
.price-card .tier-note {
	display: inline-block;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--brand-dark);
	background: var(--brand-yellow);
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}
.price-card .placeholder {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	font-style: italic;
	margin-bottom: 1.75rem;
}

.price-tier-second {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.04);
	border-left: 3px solid var(--brand-orange);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	margin-bottom: 2rem;
}
.price-tier-second .lbl {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.price-tier-second .amt {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
	color: #fff;
}

.price-card .includes-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1rem;
	display: block;
}
.price-card ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.price-card ul li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}
.price-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.88);
	transform: rotate(45deg);
}

.price-card .travel-note {
	font-size: 0.82rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sponsor card */
.sponsor-card {
	display: flex;
	flex-direction: column;
	padding: 3rem;
	background: var(--tone-warm-soft);
	border-radius: var(--r-lg);
	position: relative;
	overflow: hidden;
}
.sponsor-card::before {
	content: "";
	position: absolute;
	top: -60px;
	left: -60px;
	width: 200px;
	height: 200px;
	background: var(--brand-yellow);
	opacity: 0.4;
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
}
.sponsor-card > * {
	position: relative;
	z-index: 1;
}
.sponsor-card .label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-orange);
	margin-bottom: 1rem;
}
.sponsor-card h3 {
	margin: 0 0 1.75rem;
	font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}
.sponsor-card .includes-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(18, 38, 50, 0.45);
	margin-bottom: 1rem;
	display: block;
}
.sponsor-card ul {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.sponsor-card ul li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.95rem;
	color: var(--ink-700);
	line-height: 1.5;
}
.sponsor-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 6px;
	height: 6px;
	background: var(--brand-orange);
	transform: rotate(45deg);
}
.partner-logo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 1.75rem;
}
.partner-logo-tile {
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 0.65rem;
	min-height: 68px;
}
.partner-logo-tile img {
	max-width: 100%;
	max-height: 44px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.partner-logo-tile--placeholder {
	background: rgba(247, 142, 30, 0.1);
	border: 1.5px dashed var(--brand-orange);
}
.partner-logo-tile--placeholder span {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--brand-orange);
	text-align: center;
	line-height: 1.4;
}
.sponsor-card .travel-note {
	font-size: 0.82rem;
	font-style: italic;
	color: var(--ink-500);
	margin-top: auto;
	margin-bottom: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(247, 142, 30, 0.25);
}
.sponsor-card .travel-note a {
	color: var(--brand-orange);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.sponsor-card .btn {
	align-self: flex-start;
}

@media (max-width: 880px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.price-card,
	.sponsor-card {
		padding: 2.25rem 1.75rem;
	}
}

/* ==========================================================================
   CLOSING CTA - editorial poster moment
   ========================================================================== */
.closing {
	position: relative;
	padding: 9rem 0;
	text-align: center;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	background: var(--brand-blue);
}
.closing::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background: url("../img/form-bg.jpg") center/cover no-repeat;
	opacity: 0.55;
}
.closing::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 25% 30%, rgba(18, 38, 50, 0.35), transparent 55%), linear-gradient(180deg, rgba(0, 105, 144, 0.15) 0%, rgba(18, 38, 50, 0.55) 100%);
}

.closing-deadline {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--brand-yellow);
	color: var(--brand-dark);
	padding: 0.45rem 1.1rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}
.closing-deadline::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--brand-orange);
	transform: rotate(45deg);
}

.closing h2 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.5rem;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
}
.closing p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1rem;
	margin: 0 auto 2.5rem;
	max-width: 50ch;
	line-height: 1.55;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: var(--brand-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 4rem 0 2rem;
	font-size: 0.9rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1.4fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
	align-items: start;
}

/* Brand column */
.footer-brand img {
	height: 36px;
	margin-bottom: 1.5rem;
}
.footer-address {
	font-style: normal;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.25rem;
}
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}
.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.footer-contact .icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--brand-orange);
}
.footer-contact a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	font-weight: 500;
}
.footer-contact a:hover {
	color: var(--brand-yellow);
}

/* Resources column */
.footer-col h5 {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brand-yellow);
	margin: 0.5rem 0 1.1rem;
}
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}
.footer-col a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}
.footer-col a:hover {
	color: var(--brand-yellow);
}

/* CTA + social column */
.footer-cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
}
.footer-cta .btn {
	padding: 0.85rem 1.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.footer-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.65rem;
}
.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--r-sm);
	color: rgba(255, 255, 255, 0.85);
	transition:
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}
.footer-social a:hover {
	background: var(--brand-orange);
	color: #fff;
	transform: translateY(-2px);
}
.footer-social svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 880px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 2rem;
	}
	.footer-cta {
		grid-column: 1 / -1;
		align-items: stretch;
	}
	.footer-cta .btn {
		align-self: flex-start;
	}
}
@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   ANIMATIONS - editorial reveals
   ========================================================================== */
@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.hero-main > *,
.hero-side > * {
	opacity: 0;
	animation: fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-main > *:nth-child(1) {
	animation-delay: 0.15s;
}
.hero-main > *:nth-child(2) {
	animation-delay: 0.28s;
}
.hero-main > *:nth-child(3) {
	animation-delay: 0.4s;
}
.hero-main > *:nth-child(4) {
	animation-delay: 0.52s;
}
.hero-side > *:nth-child(1) {
	animation-delay: 0.65s;
}
.hero-side > *:nth-child(2) {
	animation-delay: 0.75s;
}
.hero-side > *:nth-child(3) {
	animation-delay: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001s !important;
		transition-duration: 0.001s !important;
	}
	.hero-main > *,
	.hero-side > * {
		opacity: 1;
	}
}

/* ==========================================================================
   FORM PAGES - register, quote, thank-you, purchase-order
   Shared styles for the supporting pages
   ========================================================================== */

.page-header {
	background: var(--brand-dark);
	color: #fff;
	padding: 7rem 0 4rem;
	position: relative;
	overflow: hidden;
}
.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
	background-size: 60px 60px;
	pointer-events: none;
}
.page-header h1 {
	color: #fff;
}
.page-header p {
	color: rgba(255, 255, 255, 0.75);
	margin-top: 1rem;
}
.page-header .eyebrow {
	color: var(--brand-yellow);
}
.page-header .site-header {
	position: absolute;
}

.form-section {
	padding: 5rem 0;
	background:
		linear-gradient(180deg, rgba(0, 105, 144, 0.65) 0%, rgba(0, 105, 144, 0.5) 100%),
		url("../img/form-bg.jpg") center/cover no-repeat,
		var(--brand-blue);
	position: relative;
}

.form-wrap {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-2);
	overflow: hidden;
}
.fs-header {
	padding: 2.25rem 2.75rem 1.5rem;
	border-bottom: 1px solid var(--ink-200);
}
.fs-header h2 {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}
.fs-header p {
	font-size: 0.92rem;
	color: var(--ink-500);
}
.form-body {
	padding: 2rem 2.75rem 2.75rem;
}
@media (max-width: 600px) {
	.fs-header,
	.form-body {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
	.field-row {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

.field-group {
	margin-bottom: 1.5rem;
}
.field-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--brand-dark);
	margin-bottom: 0.5rem;
	letter-spacing: 0.005em;
}
.field-group .req {
	color: var(--brand-red);
	margin-left: 0.15rem;
}
.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group input[type="date"],
.field-group textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--brand-dark);
	background: #fff;
	border: 1.5px solid var(--ink-200);
	border-radius: var(--r-sm);
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}
.field-group input:focus,
.field-group textarea:focus {
	outline: none;
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px rgba(0, 105, 144, 0.12);
}
.field-group input.error,
.field-group textarea.error {
	border-color: var(--brand-red);
	box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}
.field-group textarea {
	resize: vertical;
	min-height: 70px;
}

.radio-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}
.radio-group.inline {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.radio-group.size-radio {
	grid-template-columns: repeat(7, 1fr);
	gap: 0.5rem;
}
@media (max-width: 680px) {
	.radio-group.size-radio {
		grid-template-columns: repeat(4, 1fr);
	}
}

.radio-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	background: #fff;
	border: 1.5px solid var(--ink-200);
	border-radius: var(--r-sm);
	cursor: pointer;
	transition:
		border-color 0.18s ease,
		background 0.18s ease;
}
.radio-card:hover {
	border-color: var(--brand-blue);
}
.radio-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.radio-card.selected,
.radio-card:has(input:checked) {
	border-color: var(--brand-orange);
	background: var(--tone-warm-soft);
}
.radio-card-body {
	flex: 1;
}
.radio-card-title {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--brand-dark);
}
.radio-card-desc {
	display: block;
	font-size: 0.82rem;
	color: var(--ink-500);
	margin-top: 0.15rem;
}
.radio-card.size-card {
	justify-content: center;
	padding: 0.6rem 0.4rem;
}
.radio-card.size-card .radio-card-title {
	text-align: center;
	font-size: 0.95rem;
}

.consent-check {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1.1rem 1.25rem;
	background: var(--ink-100);
	border: 1.5px solid var(--ink-200);
	border-radius: var(--r-sm);
	cursor: pointer;
	transition: border-color 0.18s ease;
}
.consent-check:hover {
	border-color: var(--brand-blue);
}
.consent-check-header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.consent-check-body {
	display: block;
	font-size: 0.9rem;
	color: var(--ink-500);
	margin-left: calc(25px + 0.6rem);
	line-height: 1.55;
}
.consent-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--brand-orange);
	flex-shrink: 0;
}
.consent-check input.error {
	outline: 2px solid var(--brand-red);
}

.sponsor-callout,
.hint-callout {
	margin-top: 0.85rem;
	padding: 1rem 1.15rem;
	background: var(--tone-warm-soft);
	border-left: 3px solid var(--brand-orange);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	font-size: 0.9rem;
	color: var(--ink-700);
	line-height: 1.55;
}

.billing-group {
	display: none;
	margin: 1.5rem 0;
	padding: 1.75rem 1.85rem;
	background: var(--ink-100);
	border-radius: var(--r-md);
}
.billing-group.active {
	display: block;
}
.billing-group legend {
	font-weight: 700;
	color: var(--brand-dark);
	font-size: 0.95rem;
	padding: 0 0.5rem;
	margin-left: -0.5rem;
}
.billing-group .hint-top {
	font-size: 0.86rem;
	color: var(--ink-500);
	margin: 0 0 1.25rem;
}

.total-box {
	margin: 2.5rem 0 1.5rem;
	padding: 1.75rem 2rem;
	background: var(--brand-dark);
	color: #fff;
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.total-box .total-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.total-box .total-value {
	font-family: var(--font-display);
	font-size: 2.2rem;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.total-box .limited {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand-yellow);
}

.payment-zone {
	display: none;
	margin-top: 1.5rem;
	padding: 1.5rem 1.75rem;
	background: var(--ink-100);
	border-radius: var(--r-md);
}
.payment-zone.active {
	display: block;
}
.payment-zone h4 {
	margin-bottom: 0.6rem;
	font-size: 1rem;
}
.payment-zone p {
	font-size: 0.92rem;
	color: var(--ink-500);
	line-height: 1.55;
	margin-bottom: 1rem;
}

.paypal-placeholder {
	padding: 2rem;
	background: #fff;
	border: 1.5px dashed var(--ink-300);
	border-radius: var(--r-sm);
	text-align: center;
}
.paypal-placeholder-mark {
	display: inline-block;
	font-family: "Verdana", sans-serif;
	font-style: italic;
	font-weight: 700;
	font-size: 1.6rem;
	background: linear-gradient(90deg, #003087, #009cde);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
}
.paypal-placeholder small {
	display: block;
	color: var(--ink-500);
	font-size: 0.82rem;
}

.sender-disclosure {
	display: flex;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	background: rgba(0, 105, 144, 0.05);
	border: 1px solid rgba(0, 105, 144, 0.18);
	border-radius: var(--r-sm);
	font-size: 0.9rem;
	color: var(--ink-700);
	line-height: 1.55;
	margin: 1.25rem 0 1.5rem;
	align-items: flex-start;
}
.sender-disclosure .icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--brand-blue);
	margin-top: 2px;
}
.sender-disclosure strong {
	color: var(--brand-dark);
}

.form-error-summary {
	display: none;
	padding: 1rem 1.25rem;
	background: #fef2f2;
	border-left: 3px solid var(--brand-red);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	color: #7d1015;
	margin-bottom: 1.5rem;
	font-size: 0.92rem;
}
.form-error-summary.show {
	display: block;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ink-200);
}
@media (max-width: 600px) {
	.form-actions {
		flex-direction: column-reverse;
	}
	.form-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

/* ---------- Thank you page ---------- */
.thank-you-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 6rem 2rem;
	text-align: center;
}
.thank-you-diamond {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	background: var(--brand-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transform: rotate(45deg);
	border-radius: 8px;
}
.thank-you-diamond svg {
	width: 36px;
	height: 36px;
	transform: rotate(-45deg);
}
.thank-you-wrap h1 {
	margin-bottom: 1.25rem;
}

.summary-box {
	margin: 2.5rem 0;
	padding: 2rem;
	background: var(--ink-100);
	border-radius: var(--r-md);
	text-align: left;
}
.summary-box h3 {
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
}
.summary-box dl {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 0.5rem 1.5rem;
	margin: 0;
}
.summary-box dt {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ink-500);
}
.summary-box dd {
	margin: 0;
	font-size: 0.95rem;
	color: var(--brand-dark);
}

/* ---------- PO instructions ---------- */
.po-wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 4rem 2rem 6rem;
}
.po-box {
	margin-bottom: 1.5rem;
	padding: 2rem 2.25rem;
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--r-md);
}
.po-box h3 {
	font-size: 1.2rem;
	margin-bottom: 0.85rem;
	color: var(--brand-dark);
}
.po-details {
	background: var(--ink-100);
	padding: 1.25rem 1.5rem;
	border-radius: var(--r-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--brand-dark);
}
.po-steps li {
	margin-bottom: 0.65rem;
}

/* ---------- Quote page ---------- */
.quote-page-wrap {
	max-width: 880px;
	margin: 3rem auto 6rem;
	padding: 0 2rem;
}
.quote-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	justify-content: flex-end;
}

.quote-doc {
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-2);
	padding: 3.5rem;
	color: var(--brand-dark);
}
@media (max-width: 600px) {
	.quote-doc {
		padding: 2rem 1.5rem;
	}
}

.quote-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	padding-bottom: 1.75rem;
	border-bottom: 2px solid var(--brand-dark);
	margin-bottom: 2.25rem;
}
@media (max-width: 600px) {
	.quote-head {
		flex-direction: column;
		gap: 1rem;
	}
}

.quote-head .from {
	font-size: 0.9rem;
	line-height: 1.65;
}
.quote-head .from strong {
	font-size: 1rem;
	color: var(--brand-dark);
	display: block;
	margin-bottom: 0.25rem;
}
.quote-head .from-logo {
	margin-bottom: 1rem;
}
.quote-head .from-logo img {
	height: 32px;
	filter: brightness(0);
}
.quote-head .title {
	text-align: right;
}
.quote-head .title .word {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 400;
	font-style: italic;
	color: var(--brand-dark);
	letter-spacing: 0.02em;
	line-height: 1;
}
.quote-head .title .meta {
	margin-top: 0.85rem;
	font-size: 0.85rem;
	color: var(--ink-500);
	line-height: 1.7;
}
.quote-head .title .meta dt,
.quote-head .title .meta dd {
	display: inline;
	margin: 0;
}
.quote-head .title .meta dt {
	color: var(--ink-500);
}
.quote-head .title .meta dd {
	color: var(--brand-dark);
	font-weight: 600;
	margin-left: 0.25rem;
}
.quote-head .title .meta-row {
	display: block;
}

.quote-billto {
	margin-bottom: 2.25rem;
}
.quote-billto .section-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-500);
	margin-bottom: 0.6rem;
	display: block;
}
.quote-billto .name {
	font-weight: 700;
	font-size: 1.05rem;
	display: block;
	margin-bottom: 0.1rem;
}
.quote-billto .details {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--ink-700);
}

.quote-lines {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}
.quote-lines th {
	background: var(--brand-dark);
	color: #fff;
	text-align: left;
	padding: 0.85rem 1rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.quote-lines th:last-child,
.quote-lines td:last-child {
	text-align: right;
}
.quote-lines td {
	padding: 1.1rem 1rem;
	border-bottom: 1px solid var(--ink-200);
	vertical-align: top;
	font-size: 0.95rem;
}
.quote-lines .desc-main {
	font-weight: 700;
	display: block;
	margin-bottom: 0.25rem;
}
.quote-lines .desc-sub {
	font-size: 0.85rem;
	color: var(--ink-500);
	display: block;
}
.quote-lines .amount {
	font-weight: 600;
	white-space: nowrap;
}

.quote-totals {
	margin-left: auto;
	width: 280px;
	max-width: 100%;
	margin-top: 1rem;
}
.quote-totals .row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	font-size: 0.95rem;
}
.quote-totals .row.total {
	border-top: 2px solid var(--brand-dark);
	margin-top: 0.5rem;
	padding-top: 0.85rem;
	font-size: 1.2rem;
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--brand-dark);
}

.quote-terms {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ink-200);
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--ink-500);
}
.quote-terms .section-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brand-dark);
	margin-bottom: 0.6rem;
	display: block;
}
.quote-terms p {
	margin: 0 0 0.75rem;
}

.quote-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ink-200);
	text-align: center;
	font-size: 0.82rem;
	color: var(--ink-500);
}

.quote-instructions {
	margin-top: 2rem;
	padding: 1.75rem 2rem;
	background: var(--ink-100);
	border-radius: var(--r-md);
	border-left: 3px solid var(--brand-orange);
}
.quote-instructions h3 {
	margin-top: 0;
	font-size: 1.1rem;
}
.quote-instructions ol {
	margin: 0 0 0 1.25rem;
	padding: 0;
	color: var(--ink-700);
}
.quote-instructions ol li {
	margin-bottom: 0.5rem;
}

@media print {
	body {
		background: #fff;
	}
	.site-header,
	.site-footer,
	.quote-actions,
	.quote-instructions {
		display: none !important;
	}
	.quote-page-wrap {
		margin: 0;
		padding: 0;
		max-width: 100%;
	}
	.quote-doc {
		border: none;
		box-shadow: none;
		padding: 0;
		border-radius: 0;
	}
	.quote-head,
	.quote-lines,
	.quote-totals {
		break-inside: avoid;
	}
	a {
		color: inherit;
		text-decoration: none;
	}
	@page {
		margin: 0.5in;
		size: letter;
	}
}

/* ==========================================================================
   REGISTER PAGE - editorial layout
   ========================================================================== */
.register-hero {
	position: relative;
	padding: 9rem 0 5rem;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	background: var(--brand-blue);
}
.register-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		url("../img/form-bg.jpg") center/cover no-repeat,
		var(--brand-blue);
}
.register-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(135deg, rgba(18, 38, 50, 0.85) 0%, rgba(0, 105, 144, 0.5) 50%, rgba(18, 38, 50, 0.85) 100%);
}
.register-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
}
@media (max-width: 880px) {
	.register-hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.register-hero {
		padding: 7rem 0 3.5rem;
	}
}
.register-hero-text {
	max-width: 560px;
}
.register-hero h1 {
	color: #fff;
	margin: 1.25rem 0 1.5rem;
}
.register-hero .eyebrow {
	color: var(--brand-yellow);
}
.register-hero .eyebrow::before {
	background: var(--brand-yellow);
}
.register-hero-lede {
	font-size: 1.1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	max-width: 50ch;
	margin: 0;
}

/* Side card showing what's included */
.register-hero-card {
	padding: 2.25rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--r-lg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	position: relative;
	overflow: hidden;
}
.register-hero-card::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(247, 142, 30, 0.25);
	transform: rotate(45deg);
}
.register-hero-card .card-label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-yellow);
	margin-bottom: 1.25rem;
}
.register-hero-card ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.register-hero-card ul li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.4;
}
.register-hero-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 6px;
	height: 6px;
	background: var(--brand-orange);
	transform: rotate(45deg);
}
.register-hero-card .card-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
	margin: 1.25rem 0;
}
.register-hero-card .card-pricing {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.register-hero-card .card-pricing > div {
	display: flex;
	flex-direction: column;
}
.register-hero-card .card-tier-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.3rem;
}
.register-hero-card .card-tier-amount {
	font-family: var(--font-display);
	font-size: 1.85rem;
	line-height: 1;
	font-weight: 400;
	color: #fff;
}
.register-hero-card .card-tier-amount.muted {
	color: rgba(255, 255, 255, 0.55);
}
.register-hero-card .card-tier-note {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0.3rem;
	font-style: italic;
	font-family: var(--font-display);
}

/* Form section header */
.fs-header {
	padding: 2.75rem 2.75rem 2rem;
	border-bottom: 1px solid var(--ink-200);
	background: #fff;
}
.fs-header h2 {
	font-size: clamp(1.7rem, 2.4vw, 2.1rem);
	margin: 0 0 0.75rem;
}
.fs-header .eyebrow {
	margin: 0;
}
.fs-header p {
	font-size: 0.95rem;
	color: var(--ink-500);
	margin: 0;
}
@media (max-width: 600px) {
	.fs-header {
		padding: 2rem 1.5rem 1.5rem;
	}
}

/* Form blocks - section dividers within the form */
.form-block {
	border-bottom: 1px solid var(--ink-200);
}
.form-block:first-child {
	padding-top: 0.5rem;
}
.form-block:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.form-block-head {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px dashed var(--ink-200);
}
.form-block-head .block-num {
	flex-shrink: 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: 400;
	color: var(--brand-orange);
	letter-spacing: -0.01em;
	white-space: nowrap;
	padding-top: 0.15rem;
}
.form-block-head h3 {
	margin: 0 0 0.3rem;
	font-size: clamp(1.4rem, 2vw, 1.65rem);
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.015em;
	color: var(--brand-dark);
}
.form-block-head p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ink-500);
	line-height: 1.5;
}

/* Field hint text */
.field-hint {
	font-size: 0.82rem;
	color: var(--ink-500);
	margin: 0.45rem 0 0;
	line-height: 1.5;
}

/* Optional label tag */
.optional {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--ink-500);
	font-style: italic;
}

/* Total tier note */
.total-tier-note {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.35rem;
	line-height: 1.5;
	max-width: 38ch;
}

/* ==========================================================================
   Form density + inline-label improvements
   ========================================================================== */

/* Tighter vertical rhythm */
.field-group {
	margin-bottom: 0.85rem;
}
.field-row {
	gap: 1rem;
	margin-bottom: 0.85rem;
}
.form-block-head {
	margin-bottom: 1.25rem;
	padding-bottom: 0.85rem;
}

/* Inline label layout: label left, options right */
.field-inline {
	display: grid;
	grid-template-columns: 9rem 1fr;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.85rem;
}
.field-inline > label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--brand-dark);
	letter-spacing: 0.005em;
}
@media (max-width: 640px) {
	.field-inline {
		grid-template-columns: 1fr;
	}
}

/* Compact pill chips for short option sets */
.chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}
.chip-group .radio-card {
	padding: 0.38rem 0.9rem;
	border-radius: 2rem;
	gap: 0.4rem;
	flex: 0 0 auto;
}
.chip-group .radio-card-title {
	font-size: 0.84rem;
	font-weight: 500;
}
.chip-group.error .radio-card,
.radio-group.error .radio-card {
	border-color: var(--brand-red);
	box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.08);
}

/* ==========================================================================
   Register page — B+C redesign (dark hero + floating step cards)
   ========================================================================== */

.rg-page-bg {
	min-height: 100vh;
	background: linear-gradient(170deg, rgba(0, 105, 144, 0.75) 0%, rgba(18, 38, 50, 0.95) 55%), #0e2130;
	padding: 0 0 5rem;
}

/* Hero header */
.rg-hero {
	padding: 3.5rem 2rem 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	max-width: 940px;
	margin: 0 auto;
}
.rg-hero::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -60px;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(247, 142, 30, 0.15) 0%, transparent 70%);
	pointer-events: none;
}
.rg-hero .eyebrow {
	color: var(--brand-orange);
	margin-bottom: 0.65rem;
}
.rg-hero-title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 2.7rem);
	font-weight: 400;
	color: #fff;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 0.65rem;
}
.rg-hero-title em {
	color: var(--brand-yellow);
	font-style: italic;
}
.rg-hero-sub {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 440px;
	margin: 0 auto;
}

/* Urgency band inside dark bg */
.rg-page-bg .urgency-band {
	margin-bottom: 1.75rem;
}

/* Cards form container */
.rg-form {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Step card */
.rg-card {
	background: #fff;
	border-radius: var(--r-lg);
	box-shadow: 0 8px 32px -8px rgba(18, 38, 50, 0.22);
	overflow: hidden;
}
.rg-card-head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.15rem 2.5rem;
	background: var(--ink-100);
	border-bottom: 1px solid var(--ink-200);
}
.rg-step-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1.5px solid var(--ink-200);
	border-radius: 20px;
	padding: 0.2rem 0.85rem 0.2rem 0.3rem;
	flex-shrink: 0;
}
.rg-step-num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--brand-orange);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rg-step-lbl {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--brand-dark);
	letter-spacing: 0.02em;
}
.rg-card-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--brand-dark);
	letter-spacing: -0.015em;
}
.rg-card-title em {
	color: var(--brand-blue);
	font-style: italic;
}
.rg-card-body {
	padding: 2rem 2.5rem 2.5rem;
}
.rg-divider {
	border: none;
	border-top: 1px dashed var(--ink-200);
	margin: 1.5rem 0;
}

/* Activity cards */
.rg-activity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.85rem;
	margin-top: 0.5rem;
}
.rg-activity-card {
	border: 1.5px solid var(--ink-200);
	border-radius: var(--r-md);
	padding: 1.1rem 1rem 0.9rem;
	cursor: pointer;
	transition:
		border-color 0.15s,
		background 0.15s;
	position: relative;
}
.rg-activity-card:has(input:checked),
.rg-activity-card.checked {
	border-color: var(--brand-orange);
	background: rgba(247, 142, 30, 0.06);
}
.rg-activity-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.rg-activity-icon {
	font-size: 1.5rem;
	margin-bottom: 0.45rem;
	display: block;
}
.rg-activity-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand-dark);
	display: block;
	margin-bottom: 0.15rem;
}
.rg-activity-sub {
	font-size: 0.75rem;
	color: var(--ink-500);
	line-height: 1.35;
}

/* Payment cards */
.rg-pay-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	margin-top: 0.5rem;
}
.rg-pay-card {
	border: 1.5px solid var(--ink-200);
	border-radius: var(--r-md);
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	transition:
		border-color 0.15s,
		background 0.15s;
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	position: relative;
}
.rg-pay-card:has(input:checked),
.rg-pay-card.checked {
	border-color: var(--brand-orange);
	background: rgba(247, 142, 30, 0.05);
}
.rg-pay-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.rg-pay-icon {
	width: 36px;
	height: 36px;
	background: var(--ink-100);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.rg-pay-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand-dark);
	margin-bottom: 0.2rem;
}
.rg-pay-desc {
	font-size: 0.75rem;
	color: var(--ink-500);
	line-height: 1.4;
}

/* Submit card */
.rg-submit-card {
	background: var(--brand-dark);
	border-radius: var(--r-lg);
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	box-shadow: 0 8px 32px -8px rgba(18, 38, 50, 0.4);
}
.rg-submit-info {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
	max-width: 360px;
	line-height: 1.55;
}
.rg-submit-info strong {
	color: rgba(255, 255, 255, 0.8);
}
.rg-submit-right {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-shrink: 0;
}
.rg-price-block {
	text-align: right;
}
.rg-price-tier {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-orange);
	display: block;
	margin-bottom: 0.15rem;
}
.rg-price-amount {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	display: block;
}
.rg-price-note {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.35);
	display: block;
	margin-top: 0.2rem;
}
.rg-submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--brand-orange);
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	padding: 0.9rem 2rem;
	border-radius: var(--r-md);
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition:
		background 0.18s,
		transform 0.12s;
}
.rg-submit-btn:hover {
	background: #e07c10;
}
.rg-submit-btn:active {
	transform: scale(0.98);
}

/* Error area */
.rg-errors {
	background: #fee2e2;
	border: 1.5px solid #fca5a5;
	padding: 1rem 1.25rem;
	border-radius: var(--r-md);
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 720px) {
	.price-card .tier-note {
		padding: 0.3rem 1.85rem;
	}
	.rg-card-head {
		padding: 1rem 1.25rem;
	}
	.rg-card-body {
		padding: 1.5rem 1.25rem 2rem;
	}
	.rg-activity-grid {
		grid-template-columns: 1fr;
	}
	.rg-pay-grid {
		grid-template-columns: 1fr;
	}
	.rg-submit-card {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
	.rg-submit-right {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}
	.rg-submit-btn {
		width: 100%;
		justify-content: center;
	}
	.rg-price-block {
		text-align: center;
	}
	.rg-form {
		padding: 0 1rem;
	}
	.rg-hero {
		padding: 2.5rem 1.25rem 2rem;
	}
}

/* Tighten gap between urgency band and form cards */
.urgency-band + .rg-page-bg,
.rg-page-bg {
	padding-top: 2.5rem;
}
