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

:root {
	--deep: #0B1628;
	--deep-2: #122240;
	--teal: #2A9D8F;
	--teal-soft: rgba(42, 157, 143, .15);
	--gold: #E5A93A;
	--gold-soft: #FDF3DC;
	--coral: #D45D3B;
	--surface: #FAF7F2;
	--paper: #FFFFFF;
	--ink: #1A1A18;
	--slate: #4D4D4A;
	--muted: #7A7A76;
	--line: #E6DFD4;
	--ok: #1B6B3A;
	--radius: 12px;
	--radius-sm: 8px;
	--max: 1120px;
	--font: 'Outfit', system-ui, sans-serif;
	--shadow: 0 24px 60px rgba(11, 22, 40, .22);
	--shadow-sm: 0 8px 24px rgba(11, 22, 40, .1);
}

html {
	scroll-behavior: smooth;
	font-family: var(--font)
}

body {
	background: var(--surface);
	color: var(--ink);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased
}

button,
input,
select,
textarea {
	font-family: inherit
}

/* ── Nav ── */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 18px 5%;
	transition: background .3s, padding .3s, box-shadow .3s
}

.topbar.scrolled {
	background: rgba(11, 22, 40, .96);
	backdrop-filter: blur(10px);
	padding: 12px 5%;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .15)
}

.topbar-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-family: var(--font);
	font-size: clamp(.9rem, 2.5vw, 1.05rem);
	font-weight: 700;
	line-height: 1.2
}

.brand-logo {
	display: block;
	flex-shrink: 0
}

.brand-logo--full {
	width: auto;
	height: clamp(34px, 7.5vw, 44px);
	max-width: min(240px, 58vw)
}

.menu {
	display: flex;
	align-items: center;
	gap: 8px
}

.menu a {
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	font-size: .875rem;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 999px;
	transition: color .2s, background .2s
}

.menu a:hover {
	color: #fff;
	background: rgba(255, 255, 255, .08)
}

.menu .btn-nav {
	background: var(--gold);
	color: var(--deep) !important;
	font-weight: 600
}

.menu .btn-nav:hover {
	background: #f0c060;
	color: var(--deep) !important
}

@media(max-width:760px) {
	.menu .hide-sm {
		display: none
	}
}

/* ── Hero shell ── */
.hero-shell {
	background: var(--deep);
	background-image:
		radial-gradient(ellipse 80% 60% at 90% 20%, rgba(229, 169, 58, .12), transparent),
		radial-gradient(ellipse 50% 40% at 10% 80%, rgba(42, 157, 143, .1), transparent);
	padding: 100px 5% 72px;
	position: relative;
	overflow: hidden;
}

.hero-shell::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.hero-wrap {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 52px;
	align-items: start
}

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

.hero-main {
	position: relative;
	z-index: 1
}

.live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(212, 93, 59, .2);
	border: 1px solid rgba(212, 93, 59, .4);
	color: #ffc9b8;
	font-size: .75rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 22px;
	text-transform: uppercase;
	letter-spacing: .06em
}

.live-dot {
	width: 7px;
	height: 7px;
	background: var(--coral);
	border-radius: 50%;
	animation: blink 1.4s ease infinite
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .5;
		transform: scale(.85)
	}
}

.hero-main h1 {
	font-family: var(--font);
	font-size: clamp(2rem, 5vw, 3.1rem);
	color: #fff;
	line-height: 1.15;
	margin-bottom: 18px;
	font-weight: 700
}

.hero-main h1 .hl {
	color: var(--gold);
	font-style: italic
}

.hero-desc {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .72);
	max-width: 520px;
	margin-bottom: 28px;
	line-height: 1.7
}

/* Countdown in hero */
.countdown-box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px
}

.cd-unit {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	min-width: 72px;
	text-align: center
}

.cd-val {
	font-family: var(--font);
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	display: block
}

.cd-lbl {
	font-size: .65rem;
	color: rgba(255, 255, 255, .5);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 4px;
	display: block
}

.countdown-live-msg {
	color: var(--gold);
	font-weight: 600;
	font-size: 1rem
}

.countdown-live-msg a {
	color: var(--gold);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px
}

.is-hidden {
	display: none !important
}

.meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 28px
}

@media(max-width:520px) {
	.meta-grid {
		grid-template-columns: 1fr
	}
}

.meta-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius-sm);
	padding: 14px 16px
}

.meta-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--teal-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--teal)
}

.meta-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round
}

.meta-item strong {
	display: block;
	font-size: .85rem;
	color: #fff;
	font-weight: 600;
	margin-bottom: 2px
}

.meta-item span {
	font-size: .8rem;
	color: rgba(255, 255, 255, .6);
	line-height: 1.4
}

.speaker-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.speaker-pill {
	font-size: .78rem;
	color: rgba(255, 255, 255, .85);
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 6px 12px 6px 6px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 8px
}

.speaker-pill .av {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--deep);
	font-size: .6rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center
}

/* Form card */
.form-panel {
	background: var(--paper);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 2;
}

@media(min-width:961px) {
	.form-panel {
		position: sticky;
		top: 88px
	}
}

.form-tag {
	display: inline-block;
	background: var(--gold-soft);
	color: #8B6914;
	font-size: .7rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: .05em
}

.form-panel h2 {
	font-family: var(--font);
	font-size: 1.5rem;
	color: var(--deep);
	margin-bottom: 6px
}

.form-lead {
	font-size: .875rem;
	color: var(--muted);
	margin-bottom: 18px;
	line-height: 1.55
}

.spots-alert {
	background: linear-gradient(90deg, #FEF3F2, #FFF8F0);
	border: 1px solid #FECACA;
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	font-size: .8rem;
	color: #9B2C2C;
	text-align: center;
	margin-bottom: 18px;
	font-weight: 500
}

.spots-alert strong {
	color: var(--coral)
}

.form-panel .field {
	margin-bottom: 14px
}

.form-panel label {
	display: block;
	font-size: .72rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 6px
}

.form-panel input,
.form-panel select {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: .95rem;
	color: var(--ink);
	background: var(--surface);
	outline: none;
	transition: border-color .2s, box-shadow .2s
}

.form-panel input:focus,
.form-panel select:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px var(--teal-soft)
}

.row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

@media(max-width:480px) {
	.row-2 {
		grid-template-columns: 1fr
	}
}

.btn-submit {
	width: 100%;
	margin-top: 6px;
	padding: 15px;
	border: none;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform .15s, box-shadow .2s
}

.btn-submit:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm)
}

.btn-submit:disabled {
	opacity: .9;
	cursor: not-allowed;
	transform: none
}

.btn-submit.success {
	background: var(--ok)
}

.form-note {
	font-size: .75rem;
	color: var(--muted);
	text-align: center;
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px
}

.form-note svg {
	width: 14px;
	height: 14px;
	stroke: var(--muted);
	fill: none;
	stroke-width: 2
}

.form-done {
	display: none;
	text-align: center;
	padding: 20px 0
}

.form-done.show {
	display: block
}

.form-done h3 {
	font-family: var(--font);
	font-size: 1.35rem;
	color: var(--deep);
	margin-bottom: 8px
}

.form-done p {
	color: var(--slate);
	font-size: .95rem
}

/* Stats strip */
.stats-strip {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: 28px 5%
}

.stats-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center
}

@media(max-width:700px) {
	.stats-inner {
		grid-template-columns: repeat(2, 1fr)
	}
}

.stat-num {
	font-family: var(--font);
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--deep);
	font-weight: 700;
	line-height: 1
}

.stat-num em {
	font-style: normal;
	color: var(--teal)
}

.stat-lbl {
	font-size: .8rem;
	color: var(--muted);
	margin-top: 4px
}

/* Sections */
.block {
	padding: 72px 5%
}

.block--paper {
	background: var(--paper)
}

.block-inner {
	max-width: var(--max);
	margin: 0 auto
}

.eyebrow {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 10px
}

.block-title {
	font-family: var(--font);
	font-size: clamp(1.6rem, 3.5vw, 2.25rem);
	color: var(--deep);
	line-height: 1.2;
	margin-bottom: 12px;
	font-weight: 700
}

.block-intro {
	color: var(--slate);
	max-width: 560px;
	font-size: 1rem;
	margin-bottom: 40px;
	line-height: 1.7
}

/* Topics grid — 3×2 equal cards (no orphan row) */
.bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-items: stretch
}

@media(max-width:900px) {
	.bento {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:560px) {
	.bento {
		grid-template-columns: 1fr
	}
}

.bento-card {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 22px;
	position: relative;
	overflow: hidden;
	transition: box-shadow .2s, border-color .2s;
	min-height: 100%
}

.bento-card:hover {
	box-shadow: var(--shadow-sm);
	border-color: var(--teal)
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--teal), var(--gold))
}

.bento-card.featured {
	background: var(--deep);
	border-color: transparent;
	color: #fff
}

.bento-card.featured::before {
	background: var(--gold)
}

.bento-card.featured .b-num {
	color: rgba(255, 255, 255, .2)
}

.bento-card.featured h3 {
	color: #fff
}

.bento-card.featured p {
	color: rgba(255, 255, 255, .7);
	flex-grow: 1
}

.bento-card p {
	flex-grow: 1
}

.b-num {
	font-family: var(--font);
	font-size: 2rem;
	color: var(--line);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 12px
}

.bento-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--deep);
	margin-bottom: 8px
}

.bento-card p {
	font-size: .875rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.55
}

/* Speakers */
.block-speakers {
	background: var(--paper)
}

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

@media(max-width:800px) {
	.speakers {
		grid-template-columns: 1fr
	}
}

.sp-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	text-align: center;
	background: var(--surface);
	transition: transform .2s
}

.sp-card:hover {
	transform: translateY(-4px)
}

.sp-ava {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(145deg, var(--deep), var(--deep-2));
	color: var(--gold);
	font-family: var(--font);
	font-size: 1.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center
}

.sp-name {
	font-family: var(--font);
	font-size: 1.15rem;
	color: var(--deep);
	margin-bottom: 4px
}

.sp-role {
	font-size: .8rem;
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 12px
}

.sp-bio {
	font-size: .875rem;
	color: var(--slate);
	line-height: 1.55
}

/* Audience */
.audience {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

@media(max-width:640px) {
	.audience {
		grid-template-columns: 1fr
	}
}

.aud-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 20px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm)
}

.aud-check {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--teal-soft);
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: .85rem
}

.aud-item p {
	font-size: .9rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.5
}

/* Timeline */
.timeline {
	display: flex;
	gap: 0;
	position: relative;
	margin-top: 8px
}

@media(max-width:700px) {
	.timeline {
		flex-direction: column;
		gap: 16px
	}
}

.tl-step {
	flex: 1;
	padding: 0 24px 0 0;
	position: relative
}

@media(min-width:701px) {
	.tl-step:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 0;
		width: calc(100% - 40px);
		height: 2px;
		background: linear-gradient(90deg, var(--teal), var(--line));
		margin-left: 40px;
		pointer-events: none
	}
}

.tl-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--deep);
	color: var(--gold);
	font-family: var(--font);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px
}

.tl-step h3 {
	font-size: 1rem;
	color: var(--deep);
	margin-bottom: 6px;
	font-weight: 600
}

.tl-step p {
	font-size: .875rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.55
}

/* FAQ */
.faq {
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 0
}

.faq details {
	border-bottom: 1px solid var(--line);
	padding: 0
}

.faq summary {
	padding: 20px 36px 20px 0;
	cursor: pointer;
	font-weight: 600;
	color: var(--deep);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .975rem
}

.faq summary::-webkit-details-marker {
	display: none
}

.faq summary::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--teal);
	font-weight: 400;
	flex-shrink: 0;
	margin-left: 16px
}

.faq details[open] summary::after {
	content: '−'
}

.faq details p {
	padding: 0 0 20px;
	font-size: .9rem;
	color: var(--slate);
	line-height: 1.65;
	margin: 0
}

/* CTA band */
.cta-band {
	background: linear-gradient(135deg, var(--deep) 0%, #1a3358 50%, var(--deep-2) 100%);
	padding: 72px 5%;
	text-align: center;
	position: relative;
	overflow: hidden
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, rgba(42, 157, 143, .2), transparent 50%);
	pointer-events: none
}

.cta-inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}

.cta-band h2 {
	font-family: var(--font);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: #fff;
	margin-bottom: 12px
}

.cta-band p {
	color: rgba(255, 255, 255, .7);
	margin-bottom: 28px;
	font-size: 1.05rem;
	line-height: 1.65
}

.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold);
	color: var(--deep);
	font-weight: 700;
	font-size: 1rem;
	padding: 16px 32px;
	border-radius: 999px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: transform .15s, box-shadow .2s
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(229, 169, 58, .35)
}

.cta-meta {
	font-size: .8rem;
	color: rgba(255, 255, 255, .45);
	margin-top: 16px
}

/* Footer — horizontal bar layout (not 3-column) */
.site-foot {
	background: var(--deep);
	padding: 0 5% 28px;
	color: rgba(255, 255, 255, .55);
	border-top: 3px solid var(--gold);
}

.foot-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding-top: 40px
}

.foot-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-brand-block .brand {
	color: #fff
}

.foot-tagline {
	font-size: .85rem;
	color: rgba(255, 255, 255, .45);
	margin-top: 8px;
	max-width: 340px;
	line-height: 1.5
}

.foot-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 6px;
	align-items: center
}

.foot-nav a {
	font-size: .875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .12);
	transition: background .2s, color .2s, border-color .2s
}

.foot-nav a:hover {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-color: rgba(255, 255, 255, .25)
}

@media(max-width:640px) {
	.foot-top {
		flex-direction: column;
		align-items: flex-start
	}

	.foot-nav {
		width: 100%
	}
}

.foot-event {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin: 24px 0;
	padding: 18px 20px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius-sm)
}

.foot-event-badge {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	background: var(--teal-soft);
	color: var(--teal);
	padding: 5px 10px;
	border-radius: 4px;
	border: 1px solid rgba(42, 157, 143, .35)
}

.foot-event-date {
	font-size: .9rem;
	color: rgba(255, 255, 255, .75);
	flex: 1;
	min-width: 200px
}

.foot-event-cta {
	font-size: .875rem;
	font-weight: 600;
	color: var(--gold);
	text-decoration: none;
	white-space: nowrap
}

.foot-event-cta:hover {
	color: var(--gold-light);
	text-decoration: underline;
	text-underline-offset: 3px
}

.foot-contact {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 32px;
	width: 100%;
	margin-bottom: 24px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08)
}

@media(max-width:560px) {
	.foot-contact {
		grid-template-columns: 1fr;
		gap: 16px
	}
}

.foot-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0
}

.foot-contact-value,
.foot-contact-link {
	word-break: break-word
}

.foot-contact-label {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .35)
}

.foot-contact-value {
	font-size: .85rem;
	color: rgba(255, 255, 255, .72);
	line-height: 1.5
}

.foot-contact-link {
	color: var(--gold-light);
	text-decoration: none;
	font-weight: 500
}

.foot-contact-link:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px
}

.foot-disclaimer {
	font-size: .8rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, .38);
	margin-bottom: 20px;
	max-width: 720px
}

.foot-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .08)
}

.foot-copy {
	font-size: .75rem;
	color: rgba(255, 255, 255, .32)
}

.foot-legal-links {
	display: flex;
	gap: 20px
}

.foot-legal-links a {
	font-size: .75rem;
	color: rgba(255, 255, 255, .45);
	text-decoration: none
}

.foot-legal-links a:hover {
	color: var(--gold-light)
}

@media(max-width:520px) {
	.foot-bottom {
		flex-direction: column;
		align-items: flex-start
	}

	.foot-event {
		flex-direction: column;
		align-items: flex-start
	}
}

/* Mobile sticky CTA */
.mobile-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 150;
	padding: 12px 16px;
	background: var(--paper);
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, .1)
}

.mobile-cta a {
	display: block;
	text-align: center;
	background: var(--deep);
	color: #fff;
	font-weight: 600;
	padding: 14px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	font-size: .95rem
}

@media(max-width:960px) {
	.mobile-cta {
		display: block
	}

	body {
		padding-bottom: 72px
	}
}

/* ── Inner pages (About, etc.) ── */
.topbar--solid {
	background: rgba(11, 22, 40, .98);
	padding: 14px 5%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
}

.menu a.is-active {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .15)
}

.page-hero {
	background: var(--paper);
	padding: 108px 5% 48px;
	border-bottom: 1px solid var(--line)
}

.page-hero-inner {
	max-width: 720px;
	margin: 0 auto
}

.page-hero .eyebrow {
	margin-bottom: 10px
}

.page-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	color: var(--deep);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 14px;
}

.page-hero-lead {
	font-size: 1.05rem;
	color: var(--slate);
	line-height: 1.7;
	max-width: 600px;
}

.page-main {
	padding: 48px 5% 72px;
}

.page-layout {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start;
}

@media(max-width:860px) {
	.page-layout {
		grid-template-columns: 1fr
	}
}

.page-article {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 36px 32px
}

@media(max-width:560px) {
	.page-article {
		padding: 28px 22px
	}
}

.page-article h2 {
	font-size: 1.15rem;
	color: var(--deep);
	font-weight: 700;
	margin: 28px 0 10px;
	line-height: 1.3
}

.page-article h2:first-child {
	margin-top: 0
}

.page-article p {
	font-size: .95rem;
	color: var(--slate);
	line-height: 1.7;
	margin-bottom: 14px
}

.page-article ul {
	margin: 0 0 16px 1.1rem;
	padding: 0
}

.page-article li {
	font-size: .95rem;
	color: var(--slate);
	line-height: 1.65;
	margin-bottom: 8px
}

.page-article a {
	color: var(--teal);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px
}

.page-article a:hover {
	color: var(--deep)
}

.page-legal-inner {
	max-width: var(--max);
	margin: 0 auto
}

.legal-updated {
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line)
}

.page-article h2 + h2 {
	margin-top: 20px
}

.page-callout {
	background: var(--gold-soft);
	border-left: 4px solid var(--gold);
	padding: 16px 18px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	margin: 20px 0
}

.page-callout p {
	margin: 0;
	font-size: .9rem;
	color: var(--ink)
}

.page-aside {
	position: sticky;
	top: 88px
}

.aside-card {
	background: var(--deep);
	color: #fff;
	border-radius: var(--radius);
	padding: 26px 24px
}

.aside-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 700
}

.aside-card p {
	font-size: .875rem;
	color: rgba(255, 255, 255, .7);
	line-height: 1.55;
	margin-bottom: 18px
}

.aside-card .btn-gold {
	width: 100%;
	justify-content: center;
	font-size: .9rem;
	padding: 14px 20px
}

.aside-meta {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .8rem;
	color: rgba(255, 255, 255, .5);
	line-height: 1.55
}

.aside-meta a {
	color: var(--gold-light);
	text-decoration: none
}

.aside-meta a:hover {
	text-decoration: underline
}

body.page-inner .mobile-cta {
	display: block
}

body.page-inner {
	padding-bottom: 72px
}

/* ── Contact page ── */
.contact-layout {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 32px;
	align-items: start
}

@media(max-width:860px) {
	.contact-layout {
		grid-template-columns: 1fr
	}
}

.contact-info {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px
}

.contact-info h2 {
	font-size: 1.2rem;
	color: var(--deep);
	font-weight: 700;
	margin-bottom: 10px
}

.contact-info-lead {
	font-size: .9rem;
	color: var(--slate);
	line-height: 1.65;
	margin-bottom: 24px
}

.contact-info-lead a {
	color: var(--teal);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px
}

.contact-details {
	list-style: none;
	margin: 0 0 20px;
	padding: 0
}

.contact-details li {
	padding: 16px 0;
	border-bottom: 1px solid var(--line)
}

.contact-details li:last-child {
	border-bottom: none;
	padding-bottom: 0
}

.contact-details-label {
	display: block;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted);
	margin-bottom: 4px
}

.contact-details a,
.contact-details span {
	font-size: .95rem;
	color: var(--deep);
	line-height: 1.5;
	text-decoration: none
}

.contact-details a {
	color: var(--teal);
	font-weight: 600
}

.contact-details a:hover {
	text-decoration: underline
}

.contact-form-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm)
}

.contact-form-card h2 {
	font-size: 1.2rem;
	color: var(--deep);
	font-weight: 700;
	margin-bottom: 8px
}

.contact-form-lead {
	font-size: .875rem;
	color: var(--muted);
	margin-bottom: 22px;
	line-height: 1.55
}

.contact-form .field {
	margin-bottom: 14px
}

.contact-form label {
	display: block;
	font-size: .72rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 6px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: .95rem;
	color: var(--ink);
	background: var(--surface);
	outline: none;
	transition: border-color .2s, box-shadow .2s
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px var(--teal-soft)
}

.contact-form .row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

@media(max-width:480px) {
	.contact-form .row-2 {
		grid-template-columns: 1fr
	}
}

.field-checkbox {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 18px 0 16px
}

.field-checkbox input {
	width: auto;
	margin-top: 4px;
	flex-shrink: 0
}

.field-checkbox label {
	text-transform: none;
	font-size: .8rem;
	font-weight: 400;
	color: var(--slate);
	letter-spacing: 0;
	line-height: 1.5
}

.contact-form .btn-submit {
	width: 100%;
	margin-top: 0;
	background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer
}

.contact-form .btn-submit:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm)
}

.contact-form .btn-submit.success {
	background: var(--ok)
}

.contact-form-card .form-done {
	padding-top: 8px
}