:root {
	--bvi-navy: #042b4d;
	--bvi-navy-deep: #021b33;
	--bvi-blue: #f2c728;
	--bvi-red: #205432;
	--bvi-white: #ffffff;
	--bvi-muted: #d8e8f8;
	--bvi-ink: #101828;
	--bvi-line: #d0d5dd;
	--bvi-bg: #f7f8fb;
	--bvi-radius: 8px;
	--bvi-shadow: 0 18px 50px rgba(16, 24, 40, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--bvi-ink);
	background: var(--bvi-bg);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}
body.home,
body.page-template-page-home { background: var(--bvi-navy-deep); }
a { color: inherit; }

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: 132px 1fr 132px;
	align-items: center;
	width: 100%;
	min-height: 108px;
	padding: 18px clamp(28px, 12vw, 220px);
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: min-height .28s ease, padding .28s ease, background .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled,
body:not(.home):not(.page-template-page-home) .site-header {
	min-height: 78px;
	padding-top: 14px;
	padding-bottom: 14px;
	background: rgba(32, 84, 50, .96);
	box-shadow: 0 12px 36px rgba(0, 0, 0, .24);
	backdrop-filter: blur(12px);
}
.site-brand {
	display: inline-flex;
	align-items: center;
	width: 132px;
	text-decoration: none;
}
.site-brand img {
	display: block;
	width: 220px;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}
.site-header.is-scrolled .site-brand img { max-height: 54px; }
.site-nav {
	display: flex;
	grid-column: 2;
	align-items: center;
	justify-content: center;
}
.site-nav {
	gap: clamp(34px, 5vw, 92px);
}
.site-menu {
	display: flex;
	align-items: center;
	gap: clamp(24px, 2.2vw, 40px);
	padding: 0;
	margin: 0;
	list-style: none;
}
.site-menu a {
	color: var(--bvi-white);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 20px rgba(0, 20, 40, .32);
}
.site-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-left: 0;
	padding: 14px 18px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border-radius: 5px 5px 22px 5px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.site-menu a:hover,
.site-menu a:focus { color: #b9e1ff; }
.site-menu-toggle {
	display: none;
	grid-column: 3;
	justify-self: end;
	width: 44px;
	height: 44px;
	padding: 0;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: var(--bvi-radius);
}
.site-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--bvi-white);
}

.site-main { min-height: calc(100vh - 156px); }
.hero-section {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: 100vh;
	padding: 146px clamp(24px, 10.6vw, 185px) 50px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--hero-bg) center / cover no-repeat, var(--bvi-navy);
}
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(32, 84, 50, .22);
	pointer-events: none;
}
.hero-section__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas: "copy" "patronage";
	align-items: center;
	justify-items: center;
	align-content: space-between;
	column-gap: clamp(38px, 5vw, 92px);
	row-gap: clamp(118px, 14vh, 158px);
	width: 100%;
	min-height: calc(100vh - 196px);
	max-width: 1410px;
	margin: 0 auto;
}
.hero-copy {
	grid-area: copy;
	padding-top: 72px;
	text-align: center;
}
.hero-copy h1,
.hero-title {
	max-width: 850px;
	margin: 0;
	color: var(--bvi-white);
	font-size: clamp(38px, 3.0vw, 45px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: uppercase;
}
.hero-title img {
	display: block;
	width: min(100%, 760px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}
.hero-subtitle {
	max-width: 760px;
	margin: 22px 0 0;
	color: var(--bvi-white);
	font-size: clamp(18px, 1.25vw, 20px);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0;
	/* text-transform: uppercase; */
}
.hero-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: clamp(10px, 1.2vw, 18px);
	margin-top: 34px;
	color: var(--bvi-white);
	font-size: clamp(17px, 1.25vw, 22px);
	font-weight: 500;
	line-height: 1.12;
}
.hero-meta__item {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: max-content;
	text-align: left;
}
.hero-meta__line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.hero-meta__divider {
	width: 2px;
	height: 58px;
	flex: 0 0 auto;
	background: rgba(255, 255, 255, .78);
}
.hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}
.hero-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--bvi-white);
}
.hero-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 52px;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 250px;
	min-height: 52px;
	padding: 15px 28px;
	color: var(--bvi-white);
	border: 0;
	border-radius: 5px 5px 24px 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.button:hover,
.button:focus {
	transform: translateY(-2px) scale(1.015);
	filter: brightness(1.08);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .2);
}
.button--red,
.button--primary { background: var(--bvi-red); }
.button--blue {
	color: #000000;
	background: var(--bvi-blue);
}
.button--red:hover,
.button--red:focus,
.button--primary:hover,
.button--primary:focus {
	color: #000000;
	background: var(--bvi-blue);
}
.button--blue:hover,
.button--blue:focus { background: var(--bvi-red); }
.button--ghost {
	color: var(--bvi-ink);
	background: var(--bvi-white);
	border: 1px solid var(--bvi-line);
}
.hero-logo-wrap {
	grid-area: logo;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 46px;
}
.hero-event-logo {
	display: block;
	width: min(100%, 540px);
	max-height: 370px;
	object-fit: contain;
	filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .22));
	transition: transform .22s ease, filter .22s ease;
}

.hero-logo-wrap:hover .hero-event-logo,
.hero-logo-wrap:focus-within .hero-event-logo {
	transform: translateY(-2px) scale(1.015);
	filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .28));
}
.patronage {
	grid-area: patronage;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 18px;
	max-width: 1180px;
	color: var(--bvi-white);
	margin-bottom: 0;
	text-align: center;
}
.patronage p {
	max-width: none;
	margin: 0;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.18;
	text-transform: uppercase;
}
.patronage__people {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
}
.patronage__person {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}
.patronage__copy {
	padding-top: 17px;
	text-align: left;
}
.patronage__photo {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 50%;
	background: var(--bvi-white);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}
.patronage__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.patronage strong {
	display: block;
	font-size: 21px;
	line-height: 1.15;
	text-transform: uppercase;
}
.patronage span {
	display: block;
	max-width: 520px;
	font-size: 16px;
	line-height: 1.35;
}

@media (min-width: 1441px) {
	.hero-section {
		min-height: 900px;
		padding-top: 146px;
		padding-bottom: 50px;
		background-position: center center;
	}

	.hero-section__inner {
		min-height: 704px;
		align-content: space-between;
	}
}

.ideas-section {
	padding: 58px clamp(24px, 5vw, 95px) 75px;
	background: #f5f0e8;
}

.ideas-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
}

.ideas-heading {
	max-width: 1180px;
	margin: 0 auto 56px;
	text-align: center;
}

.ideas-heading h2 {
	margin: 0;
	color: #000000;
	font-size: clamp(36px, 3.1vw, 50px);
	font-weight: 500;
	line-height: 1.14;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.ideas-heading p {
	margin: 20px 0 0;
	color: #17202e;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.35;
}

.ideas-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.idea-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 450px;
	padding: 33px 29px 31px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--card-bg) center / cover no-repeat, #003e78;
	border-radius: 18px 18px 40px 18px;
	will-change: transform, box-shadow;
}

.bvi-js .idea-card {
	opacity: 0;
	transform: translate3d(0, 96px, 0) rotateX(8deg) scale(.965);
	transform-origin: 50% 100%;
	box-shadow: 0 34px 60px rgba(0, 0, 0, .18);
	transition:
		opacity .75s ease,
		transform .95s cubic-bezier(.16, 1, .3, 1),
		box-shadow .95s cubic-bezier(.16, 1, .3, 1);
	transition-delay: var(--idea-delay, 0ms);
}

.bvi-js .idea-card.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotateX(0) scale(1);
	box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
}

.bvi-js .idea-card:nth-child(1) { --idea-delay: 0ms; }
.bvi-js .idea-card:nth-child(2) { --idea-delay: 160ms; }
.bvi-js .idea-card:nth-child(3) { --idea-delay: 320ms; }
.bvi-js .idea-card:nth-child(4) { --idea-delay: 480ms; }

.idea-card__number {
	display: block;
	color: transparent;
	font-size: 58px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	-webkit-text-stroke: 2px var(--bvi-blue);
	text-stroke: 2px var(--bvi-blue);
}

.idea-card__copy {
	max-width: 282px;
}

.idea-card__copy h3 {
	margin: 0 0 8px;
	color: #fff7d6;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.14;
	text-transform: uppercase;
}

.idea-card__copy p {
	margin: 0;
	color: #fff7d6;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
}

.why-section {
	position: relative;
	padding: 64px clamp(24px, 5vw, 95px);
	color: var(--bvi-white);
	background: var(--bvi-red);
}

.why-inner {
	display: grid;
	grid-template-columns: minmax(330px, 410px) minmax(560px, 810px);
	gap: clamp(72px, 7.5vw, 160px);
	align-items: start;
	width: min(1400px, 100%);
	margin: 0 auto;
}

.why-copy {
	position: relative;
	min-height: 100%;
}

.why-copy__sticky {
	position: sticky;
	top: 120px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: calc(100vh - 150px);
}

.why-copy h2 {
	max-width: 410px;
	margin: 0;
	color: var(--bvi-white);
	font-size: clamp(30px, 2.45vw, 36px);
	font-weight: 700;
	line-height: 1.17;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .26);
}

.bvi-js .scroll-rise {
	opacity: 0;
	transform: translate3d(0, 54px, 0);
	transition: opacity .8s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

.bvi-js .scroll-rise.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.bvi-js .scroll-scale {
	opacity: 0;
	transform: translate3d(0, 46px, 0) scale(.86);
	transition: opacity .75s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
	transition-delay: var(--scale-delay, 0ms);
}

.bvi-js .scroll-scale.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.bvi-js .scroll-left,
.bvi-js .scroll-right,
.bvi-js .scroll-fade {
	opacity: 0;
	transition: opacity .8s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
	transition-delay: var(--scroll-delay, 0ms);
	will-change: opacity, transform;
}

.bvi-js .scroll-left { transform: translate3d(-54px, 0, 0); }
.bvi-js .scroll-right { transform: translate3d(54px, 0, 0); }
.bvi-js .scroll-fade { transform: translate3d(0, 36px, 0); }

.bvi-js .scroll-left.is-visible,
.bvi-js .scroll-right.is-visible,
.bvi-js .scroll-fade.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.why-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	min-height: 50px;
	margin-top: 28px;
	padding: 9px 16px;
	color: #000000;
	background: var(--bvi-blue);
	border-radius: 4px 4px 16px 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.site-nav-cta:hover,
.site-nav-cta:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.why-button:hover,
.why-button:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.why-copy__line {
	display: block;
	width: 180px;
	height: 3px;
	margin-top: auto;
	margin-bottom: 48px;
	background: var(--bvi-red);
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}

.why-list {
	display: grid;
	gap: 40px;
	padding-bottom: 0;
}

.why-card {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 20px;
	align-items: start;
	min-height: 225px;
	padding: 40px 42px 32px;
	color: #0b5598;
	background: #fff7d6;
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 17px 17px 50px 17px;
	box-shadow: 0 4px 12px rgba(0, 20, 50, .12);
}

.why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	color: var(--bvi-red);
	border: 3px solid var(--bvi-red);
	border-radius: 50%;
}

.why-card__icon svg {
	width: 38px;
	height: 38px;
	fill: currentColor;
}

.why-card h3 {
	margin: 0 0 8px;
	color: black;
	font-size: clamp(24px, 1.5vw, 30px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(7, 87, 157, .18);
}

.why-card p {
	max-width: 650px;
	margin: 0;
	color: #17202e;
	font-size: clamp(16px, 1.1vw, 21px);
	font-weight: 400;
	line-height: 1.32;
}

body.home .why-copy__sticky,
body.page-template-page-home .why-copy__sticky {
	position: sticky;
	top: clamp(120px, 28vh, 220px);
	min-height: 0;
	transform: none;
}

body.home .why-list,
body.page-template-page-home .why-list {
	gap: 16px;
}

body.home .why-card,
body.page-template-page-home .why-card {
	grid-template-columns: 1fr;
	min-height: 132px;
	padding: 22px 46px 20px;
	border-radius: 14px 14px 38px 14px;
}

body.home .why-card__icon,
body.page-template-page-home .why-card__icon {
	display: none;
}

body.home .why-card h3,
body.page-template-page-home .why-card h3 {
	font-size: clamp(19px, 1.15vw, 23px);
	line-height: 1.14;
}

body.home .why-card p,
body.page-template-page-home .why-card p {
	max-width: 100%;
	font-size: clamp(15px, .95vw, 18px);
	line-height: 1.38;
}

.experience-section {
	position: relative;
	min-height: 700px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--experience-bg) center / cover no-repeat, #003b70;
}

.experience-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.experience-overlay {
	position: absolute;
	inset: 0;
	display: none;
}

.experience-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 700px;
	margin: 0 auto;
	padding: 150px 0 70px;
}

.experience-copy {
	width: 635px;
	margin-left: 50.8vw;
	margin-right: 0;
}

.experience-copy h2 {
	margin: 0 0 18px;
	color: var(--bvi-white);
	font-size: clamp(38px, 3vw, 48px);
	font-weight: 700;
	line-height: 1.14;
	text-transform: uppercase;
}

.experience-copy p {
	margin: 0 0 23px;
	color: var(--bvi-white);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.42;
}

.experience-copy .experience-lead {
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.25;
}

.experience-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 14px;
	padding: 14px 26px;
	color: #000000;
	background: var(--bvi-blue);
	border-radius: 5px 5px 22px 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, filter .22s ease;
}

.experience-button:hover,
.experience-button:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	filter: brightness(1.06);
}

.featured-speakers-section {
	padding: 34px clamp(24px, 5vw, 95px) 46px;
	background: var(--bvi-white);
}

.featured-speakers-inner {
	width: min(1520px, 100%);
	margin: 0 auto;
	text-align: center;
}

.featured-speakers-inner h2 {
	margin: 20px 0 18px;
	color: #000000;
	font-size: clamp(32px, 2.35vw, 42px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.featured-speakers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px 22px;
}

.featured-speaker-card {
	margin: 0;
	overflow: hidden;
	background: #fffaf5;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(16, 24, 40, .08);
}

.featured-speaker-card:nth-child(1) { --scale-delay: 0ms; }
.featured-speaker-card:nth-child(2) { --scale-delay: 90ms; }
.featured-speaker-card:nth-child(3) { --scale-delay: 180ms; }
.featured-speaker-card:nth-child(4) { --scale-delay: 270ms; }
.featured-speaker-card:nth-child(5) { --scale-delay: 360ms; }
.featured-speaker-card:nth-child(6) { --scale-delay: 450ms; }

.featured-speaker-card img {
	display: block;
	width: 100%;
	height: auto;
}

.featured-speakers-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 45px;
	margin-top: 40px;
	padding: 10px 24px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border-radius: 4px 4px 16px 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.featured-speakers-button:hover,
.featured-speakers-button:focus,
.footer-form button:hover,
.footer-form button:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

.opportunity-section {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 600px;
	padding: 80px clamp(24px, 5vw, 95px);
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--opportunity-bg) center / cover fixed no-repeat, #07579d;
}

.opportunity-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(32, 84, 50, .72), rgba(32, 84, 50, .52)),
		linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .36));
}

.opportunity-inner {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	margin: 0 auto;
	text-align: center;
}

.opportunity-inner h2 {
	margin: 0;
	color: #fff7d6;
	font-size: clamp(34px, 3vw, 52px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
}

.opportunity-inner p {
	max-width: 1100px;
	margin: 28px auto 0;
	color: #fff7d6;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
}

.opportunity-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 250px;
	min-height: 49px;
	margin-top: 58px;
	padding: 14px 28px;
	color: #000000;
	background: var(--bvi-blue);
	border-radius: 5px 5px 22px 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.opportunity-button:hover,
.opportunity-button:focus {
	color: var(--bvi-blue);
	background: var(--bvi-white);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.sponsors-section {
	padding: 28px clamp(24px, 5vw, 95px) 70px;
	background: #f8f3ea;
}

.sponsors-section--continued,
.sponsors-section--partners {
	padding-top: 0;
}

.sponsors-inner {
	width: min(1160px, 100%);
	margin: 0 auto;
	text-align: center;
}

.sponsors-inner > h2 {
	margin: 0 0 30px;
	color: #000000;
	font-size: clamp(38px, 2.8vw, 50px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sponsor-group {
	margin-top: 36px;
}

.sponsor-group:first-of-type {
	margin-top: 0;
}

.sponsor-group h3 {
	margin: 0 0 17px;
	color: var(--bvi-red);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sponsor-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.sponsor-card {
	display: flex;
	flex: 0 1 210px;
	align-items: center;
	justify-content: center;
	min-height: 113px;
	padding: 20px 24px;
	overflow: hidden;
	background: #f8f3ea;
	border: 1.5px solid #07579d;
	border-radius: 7px 7px 29px 7px;
}

.sponsor-card img {
	display: block;
	max-width: 100%;
	max-height: 72px;
	object-fit: contain;
	transition: transform .24s ease, filter .24s ease;
}

.sponsor-card:hover img,
.sponsor-card:focus-within img {
	transform: scale(1.08);
	filter: drop-shadow(0 8px 14px rgba(0, 33, 76, .14));
}

.glimpse-section {
	padding: 56px clamp(24px, 5vw, 95px) 46px;
	background: var(--bvi-white);
}

.glimpse-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
	text-align: center;
}

.glimpse-inner h2 {
	margin: 0 0 34px;
	color: #000000;
	font-size: clamp(36px, 2.75vw, 50px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.glimpse-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px 18px;
}

.glimpse-card {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}

.glimpse-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1.52 / 1;
	object-fit: cover;
	transition: transform .28s ease;
}

.glimpse-card:hover img,
.glimpse-card:focus-within img {
	transform: scale(1.04);
}

.glimpse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 248px;
	min-height: 48px;
	margin-top: 30px;
	padding: 14px 28px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border-radius: 5px 5px 18px 5px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.glimpse-button:hover,
.glimpse-button:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

.recap-video-section {
	padding: 34px clamp(24px, 5vw, 95px) 70px;
	background: var(--bvi-white);
}

.recap-video-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
}

.recap-video-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

.recap-video-trigger img {
	display: block;
	width: 100%;
	height: auto;
}

.recap-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 86px;
	height: 86px;
	background: rgba(255, 255, 255, .94);
	border-radius: 50%;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
	transform: translate(-50%, -50%);
	transition: transform .22s ease, background .22s ease;
}

.recap-video-play::before {
	position: absolute;
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	content: "";
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-left: 25px solid var(--bvi-red);
	transform: translate(-50%, -50%);
}

.recap-video-trigger:hover .recap-video-play,
.recap-video-trigger:focus .recap-video-play {
	background: var(--bvi-red);
	transform: translate(-50%, -50%) scale(1.05);
}

.recap-video-trigger:hover .recap-video-play::before,
.recap-video-trigger:focus .recap-video-play::before {
	border-left-color: var(--bvi-white);
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 18, 34, .82);
}

.video-modal.is-open {
	display: flex;
}

.video-modal__dialog {
	width: min(1100px, 100%);
	background: #000;
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

.video-modal__dialog video {
	display: block;
	width: 100%;
	max-height: 82vh;
	border-radius: 8px;
}

.video-modal__close {
	position: absolute;
	top: 22px;
	right: 24px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border: 0;
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: background .22s ease, transform .22s ease;
}

.video-modal__close:hover,
.video-modal__close:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: scale(1.04);
}

.content-band,
.page-shell,
.dashboard-shell {
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}
.home-placeholder {
	color: var(--bvi-white);
	background: var(--bvi-navy-deep);
}
.section-heading { max-width: 720px; margin-bottom: 28px; }
.eyebrow {
	margin: 0 0 12px;
	color: #7cc8ff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { font-size: clamp(42px, 7vw, 76px); }
h2 { font-size: 34px; }
h3 { font-size: 21px; }
.feature-grid,
.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.feature-card,
.dashboard-card,
.auth-panel {
	background: var(--bvi-white);
	border: 1px solid rgba(208, 213, 221, .8);
	border-radius: var(--bvi-radius);
	box-shadow: var(--bvi-shadow);
}
.feature-card,
.dashboard-card { padding: 26px; }
.feature-card p,
.dashboard-card p,
.auth-panel p { color: #667085; }
.auth-shell {
	display: grid;
	place-items: center;
	min-height: calc(100vh - 156px);
	padding: 148px 20px 56px;
}
.auth-panel {
	width: min(460px, 100%);
	padding: 32px;
}
.auth-form {
	display: grid;
	gap: 16px;
}
.auth-form label {
	display: grid;
	gap: 7px;
	font-weight: 700;
}
.auth-form input[type="text"],
.auth-form input[type="password"] {
	width: 100%;
	height: 48px;
	padding: 10px 12px;
	border: 1px solid var(--bvi-line);
	border-radius: var(--bvi-radius);
	font: inherit;
}
.checkbox-line {
	display: flex !important;
	grid-template-columns: none;
	align-items: center;
	gap: 9px !important;
	font-weight: 400 !important;
}
.notice {
	padding: 12px 14px;
	border-radius: var(--bvi-radius);
}
.notice--error {
	color: #7a271a !important;
	background: #ffebe7;
}
.dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
.dashboard-header h1 { font-size: clamp(34px, 5vw, 52px); }

body.page-template-page-about,
body.page-template-page-schedule,
body.page-template-page-speakers,
body.page-template-page-partners-sponsors {
	background: var(--bvi-white);
}

body.page-template-page-about .site-header,
body.page-template-page-schedule .site-header,
body.page-template-page-speakers .site-header,
body.page-template-page-partners-sponsors .site-header {
	display: none;
}

.page-breadcrumb {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 400px;
	margin: 10px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--breadcrumb-bg) center / cover fixed no-repeat, #073b66;
	border-radius: 24px 24px 92px 24px;
}

.page-breadcrumb::before {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(3, 34, 61, .08);
}

.breadcrumb-header {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	display: grid;
	grid-template-columns: 156px 1fr 186px;
	gap: 32px;
	align-items: center;
	width: min(1380px, calc(100% - 80px));
	min-height: 108px;
	transform: translateX(-50%);
}

.breadcrumb-brand {
	display: inline-flex;
	align-items: center;
	width: 126px;
	text-decoration: none;
}

.breadcrumb-brand img {
	display: block;
	width: 220px;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	min-width: 0;
}

.breadcrumb-nav a {
	color: var(--bvi-white);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 18px rgba(0, 0, 0, .18);
}

.breadcrumb-nav a:hover,
.breadcrumb-nav a:focus {
	color: #dbeeff;
}

.breadcrumb-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 16px;
	color: #000000;
	background: var(--bvi-blue);
	border-radius: 5px 5px 22px 5px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.breadcrumb-nav-cta:hover,
.breadcrumb-nav-cta:focus {
	background: var(--bvi-red);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.breadcrumb-nav-mobile-cta {
	display: none;
}

.breadcrumb-menu-toggle {
	display: none;
}

.page-breadcrumb__inner {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 150px 24px 72px;
	text-align: center;
}

.page-breadcrumb h1 {
	margin: 0;
	color: var(--bvi-white);
	font-size: clamp(48px, 3vw, 66px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.about-intro-section {
	padding: 64px 24px 90px;
	background: var(--bvi-white);
}

.about-intro-inner {
	width: min(1250px, 100%);
	margin: 0 auto;
	text-align: center;
}

.about-intro-inner h2 {
	margin: 0 0 24px;
	color: #000000;
	font-size: clamp(38px, 2vw, 54px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}
.about-intro-inner h3{
	margin: 0 0 24px;
	color: #000000;
	font-size: clamp(25px, 1.5vw, 40px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
}

.about-intro-inner p {
	margin: 0 auto 16px;
	color: #020b1c;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
}

.about-intro-inner p:last-child {
	margin-bottom: 0;
}

.themes-section {
	padding: 58px clamp(24px, 5vw, 95px) 76px;
	background: #f8f3ea;
}

.themes-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
}

.themes-inner h2 {
	margin: 0 0 30px;
	color: #000000;
	font-size: clamp(40px, 3vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
}

.themes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.theme-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 450px;
	padding: 36px 30px 31px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--theme-bg) center / cover no-repeat, #07579d;
	border-radius: 18px 18px 42px 18px;
}

.theme-card__number {
	display: block;
	color: transparent;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	-webkit-text-stroke: 2px var(--bvi-blue);
	text-stroke: 2px var(--bvi-blue);
}

.theme-card__copy {
	max-width: 390px;
}

.theme-card__copy h3 {
	margin: 0 0 8px;
	color: #fff7d6;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.15;
	text-transform: uppercase;
}

.theme-card__copy p {
	margin: 0;
	color: #fff7d6;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
}

.schedule-intro-section {
	padding: 66px clamp(24px, 5vw, 95px) 74px;
	background: var(--bvi-white);
}

.schedule-intro-inner {
	width: min(1260px, 100%);
	margin: 0 auto;
	text-align: center;
}

.schedule-intro-inner h2 {
	margin: 0 0 22px;
	color: #000000;
	font-size: clamp(38px, 3vw, 54px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.schedule-intro-inner > p {
	max-width: 1110px;
	margin: 0 auto 42px;
	color: #020b1c;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.45;
}

.schedule-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	text-align: left;
}

.schedule-card {
	min-height: 385px;
	padding: 32px 26px 28px;
}

.schedule-card .theme-card__copy {
	max-width: 260px;
}

.schedule-card .theme-card__number {
	font-size: 58px;
}

.schedule-tabs-section {
	padding: 62px clamp(24px, 5vw, 95px) 70px;
	background: #fff7d6;
	color: var(--bvi-red);
}

.schedule-tabs-inner {
	width: min(1260px, 100%);
	margin: 0 auto;
}

.schedule-tabs-inner h2 {
	margin: 0 0 22px;
	color: var(--bvi-red);
	font-size: clamp(38px, 3vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.schedule-tab-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 auto 28px;
}

.schedule-tab-button {
	min-height: 54px;
	padding: 10px 12px;
	border: 2px solid transparent;
	border-radius: 5px;
	color: #07579d;
	background: var(--bvi-white);
	font: inherit;
	font-size: clamp(17px, 1.35vw, 22px);
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.schedule-tab-button:hover,
.schedule-tab-button:focus-visible {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-1px);
}

.schedule-tab-button.is-active {
	color: #000000;
	background: var(--bvi-blue);
	border-color: #020b1c;
	box-shadow: 0 0 0 2px #fff7d6;
}

.schedule-tab-panel {
	display: none;
}

.schedule-tab-panel.is-active {
	display: block;
}

.schedule-agenda-row {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 12px 10px;
	border-bottom: 1px solid rgba(32, 84, 50, .28);
}

.schedule-agenda-row:last-of-type {
	border-bottom: 0;
}

.schedule-agenda-row img {
	width: 96px;
	height: 96px;
	padding: 0;
	border-radius: 50%;
	background: var(--bvi-white);
	object-fit: cover;
}
.schedule-agenda-row img.schedule-agenda-image--contain {
	padding: 10px;
	object-fit: contain;
}

.schedule-agenda-copy {
	min-width: 0;
}

.schedule-agenda-heading {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.schedule-agenda-time {
	flex: 0 0 auto;
	min-width: 82px;
	margin: 1px 0 0;
	padding: 8px 10px;
	color: #000000;
	background: var(--bvi-blue);
	border-radius: 5px 5px 16px 5px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.schedule-agenda-copy h3 {
	margin: 0;
	color: var(--bvi-red);
	font-size: clamp(18px, 1.45vw, 22px);
	font-weight: 600;
	line-height: 1.24;
	text-transform: uppercase;
}

/*.schedule-agenda-speaker {*/
/*	margin: 9px 0 0;*/
/*	color: var(--bvi-blue);*/
/*	font-size: 20px;*/
/*	font-weight: 400;*/
/*	line-height: 1.3;*/
/*}*/

.schedule-agenda-register {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 16px;
	padding: 12px 18px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border-radius: 5px 5px 18px 5px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.schedule-agenda-cta {
	display: flex;
	justify-content: center;
	padding-top: 26px;
}

.schedule-agenda-register:hover,
.schedule-agenda-register:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}

.speakers-listing-section {
	padding: 64px clamp(24px, 5vw, 95px) 72px;
	background: var(--bvi-white);
}

.speakers-listing-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
	text-align: center;
}

.speakers-listing-inner h2 {
	margin: 0 0 22px;
	color: #000000;
	font-size: clamp(38px, 3vw, 54px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.speakers-listing-inner > p {
	max-width: 1230px;
	margin: 0 auto 36px;
	color: #020b1c;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
}

.speakers-listing-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 20px;
	text-align: left;
}

.speakers-listing-card {
	overflow: hidden;
	border-radius: 14px;
}

.speakers-listing-card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}

.speakers-listing-more {
	max-width: 760px;
	margin: 48px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(32, 84, 50, .22);
	color: var(--bvi-red);
	font-size: clamp(19px, 1.55vw, 24px);
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.partner-intro-section {
	padding: 64px clamp(24px, 5vw, 95px) 78px;
	background: var(--bvi-white);
	overflow: hidden;
}

.partner-intro-inner {
	width: min(1400px, 100%);
	margin: 0 auto;
	text-align: center;
}

.partner-intro-inner h2 {
	margin: 0 0 22px;
	color: #000000;
	font-size: clamp(38px, 3vw, 54px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.partner-intro-inner > p {
	max-width: 1250px;
	margin: 0 auto 34px;
	color: #020b1c;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.38;
}

.partner-intro-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 49px;
	margin-bottom: 28px;
	padding: 15px 22px;
	color: var(--bvi-white);
	background: var(--bvi-red);
	border-radius: 5px 5px 20px 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.partner-intro-button:hover,
.partner-intro-button:focus {
	color: #000000;
	background: var(--bvi-blue);
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

.partner-photo-marquee {
	display: grid;
	gap: 24px;
	margin-top: 0;
	overflow: hidden;
}

.partner-photo-row {
	overflow: hidden;
}

.partner-photo-track {
	display: flex;
	width: max-content;
	gap: 20px;
	will-change: transform;
}

.partner-photo-row--left .partner-photo-track {
	animation: partner-scroll-left 34s linear infinite;
}

.partner-photo-row--right .partner-photo-track {
	animation: partner-scroll-right 34s linear infinite;
}

.partner-photo-row:hover .partner-photo-track {
	animation-play-state: paused;
}

.partner-photo-card {
	flex: 0 0 clamp(270px, 24vw, 454px);
	overflow: hidden;
	border-radius: 8px 8px 24px 8px;
}

.partner-photo-card img {
	display: block;
	width: 100%;
	aspect-ratio: 454 / 303;
	object-fit: cover;
	border-radius: 8px 8px 24px 8px;
}

.sponsor-benefits-section .why-card {
	min-height: 190px;
	padding-bottom: 24px;
}

@keyframes partner-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 10px));
	}
}

@keyframes partner-scroll-right {
	from {
		transform: translateX(calc(-50% - 10px));
	}
	to {
		transform: translateX(0);
	}
}
.site-footer {
	position: relative;
	padding: 72px clamp(24px, 5vw, 95px) 54px;
	overflow: hidden;
	color: var(--bvi-white);
	background: var(--footer-bg) center / cover no-repeat, #073b66;
}
.site-footer::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background: rgba(3, 34, 61, .08);
}
.footer-inner {
	position: relative;
	z-index: 1;
	width: min(1380px, 100%);
	margin: 0 auto;
}
.footer-subscribe {
	display: grid;
	grid-template-columns: minmax(380px, 610px) minmax(430px, 1fr);
	gap: clamp(56px, 8vw, 118px);
	align-items: start;
	padding: 0 168px 46px;
}
.footer-subscribe h2 {
	margin: 0 0 22px;
	color: var(--bvi-white);
	font-size: clamp(34px, 2.8vw, 48px);
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}
.footer-subscribe p {
	max-width: 610px;
	margin: 0;
	color: var(--bvi-white);
	font-size: 19px;
	font-weight: 500;
	line-height: 1.45;
}
.footer-form {
	display: grid;
	gap: 28px;
	padding-top: 2px;
}
.footer-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.footer-form label {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
}
.footer-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.footer-form input {
	width: 100%;
	height: 32px;
	color: var(--bvi-white);
	background: transparent;
	border: 0;
	border-bottom: 2px solid rgba(255, 255, 255, .78);
	border-radius: 0;
	outline: none;
}
.footer-form input:focus {
	border-bottom-color: var(--bvi-white);
}
.footer-form button {
	justify-self: start;
	min-height: 40px;
	padding: 10px 24px;
	color: #000000;
	background: var(--bvi-blue);
	border: 0;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.footer-form button:hover,
.footer-form button:focus {
	color: #000000;
	background: var(--bvi-blue);
}
.footer-form__message {
	margin: 2px 0 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}
.footer-form__message--success {
	color: #b9f6ca;
}
.footer-form__message--error {
	color: #ffd2d2;
}
.footer-rule {
	height: 1px;
	background: rgba(255, 255, 255, .28);
}
.footer-links {
	display: grid;
	grid-template-columns: minmax(320px, 470px) repeat(3, minmax(150px, 1fr));
	gap: clamp(48px, 6vw, 86px);
	padding: 58px 168px 76px;
}
.footer-about img {
	display: block;
	width: 160px;
	height: auto;
	margin-bottom: 18px;
}
.footer-about p {
	max-width: 460px;
	margin: 0;
	color: var(--bvi-white);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.42;
}
.footer-links nav {
	display: grid;
	align-content: start;
	gap: 16px;
}
.footer-links h3 {
	margin: 0 0 8px;
	color: var(--bvi-white);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}
.footer-links a,
.footer-bottom a {
	color: var(--bvi-white);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.15;
	text-decoration: none;
}
.footer-links a:hover,
.footer-bottom a:hover {
	text-decoration: underline;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px 158px 0;
}
.footer-bottom p {
	margin: 0;
	color: var(--bvi-white);
	font-size: 18px;
	font-weight: 500;
}

.reveal {
	opacity: 0;
	animation-duration: .9s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.2, .7, .2, 1);
}
.reveal-left { animation-name: revealLeft; }
.reveal-right { animation-name: revealRight; }
.reveal-up { animation-name: revealUp; }
.reveal-delay-1 { animation-delay: .18s; }
.reveal-delay-2 { animation-delay: .34s; }
.reveal-delay-3 { animation-delay: .52s; }
@keyframes revealLeft {
	from { opacity: 0; transform: translateX(-42px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
	from { opacity: 0; transform: translateX(48px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes revealUp {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceLogo {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	35% { transform: translate3d(0, -24px, 0) scale(1.018); }
	55% { transform: translate3d(0, 4px, 0) scale(.998); }
	72% { transform: translate3d(0, -10px, 0) scale(1.008); }
}
@keyframes floatLogoFast {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -10px, 0); }
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.bvi-js .idea-card {
		opacity: 1;
		transform: none;
	}
	.bvi-js .scroll-rise {
		opacity: 1;
		transform: none;
	}
	.bvi-js .scroll-scale {
		opacity: 1;
		transform: none;
	}
	.bvi-js .scroll-left,
	.bvi-js .scroll-right,
	.bvi-js .scroll-fade {
		opacity: 1;
		transform: none;
	}
}
@media (max-width: 1280px) {
	.site-header,
	.hero-section {
		padding-left: clamp(22px, 6vw, 96px);
		padding-right: clamp(22px, 6vw, 96px);
	}
	body.page-template-page-about .site-header {
		padding-left: clamp(22px, 6vw, 96px);
		padding-right: clamp(22px, 6vw, 96px);
	}
	body.page-template-page-about .site-menu {
		gap: 18px;
	}
	.breadcrumb-header {
		grid-template-columns: 132px 1fr 174px;
		gap: 22px;
		width: min(1280px, calc(100% - 56px));
	}
	.breadcrumb-brand {
		width: 112px;
	}
	.breadcrumb-nav {
		gap: 16px;
	}
	.breadcrumb-nav a,
	.breadcrumb-nav-cta {
		font-size: 12px;
	}
	.site-brand { width: 118px; }
	.site-menu { gap: 18px; }
	.site-menu a,
	.site-nav-cta { font-size: 13px; }
	.site-nav-cta {
		min-height: 46px;
		margin-left: 22px;
		padding-inline: 15px;
	}
	.hero-section__inner {
		grid-template-columns: minmax(0, 1fr);
	}
	.hero-copy h1 { font-size: clamp(42px, 4.35vw, 50px); }
	.hero-event-logo { width: min(100%, 430px); }
	.ideas-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 760px;
		margin: 0 auto;
	}
}
@media (max-width: 1280px) {
	.footer-subscribe,
	.footer-links,
	.footer-bottom {
		padding-left: 64px;
		padding-right: 64px;
	}
}
@media (max-width: 980px) {
	.site-header {
		min-height: 82px;
		padding: 14px 22px;
	}
	body.page-template-page-about .site-header {
		position: absolute;
		min-height: 82px;
		padding: 14px 22px;
	}
	body.page-template-page-about .site-header.is-scrolled {
		position: fixed;
	}
	body.page-template-page-about .site-nav {
		background: rgba(118, 8, 15, .98);
	}
	.breadcrumb-header {
		display: grid;
		grid-template-columns: auto auto;
		justify-content: space-between;
		gap: 14px;
		width: calc(100% - 44px);
		min-height: 82px;
	}
	.breadcrumb-brand {
		width: 110px;
	}
	.breadcrumb-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		padding: 18px 22px 22px;
		background: rgba(118, 8, 15, .98);
		border-radius: 0 0 16px 16px;
	}
	.breadcrumb-menu-toggle {
		display: block;
		justify-self: end;
	}
	.breadcrumb-header.is-menu-open .breadcrumb-nav {
		display: flex;
	}
	.breadcrumb-nav-cta {
		display: none;
	}
	.breadcrumb-nav .breadcrumb-nav-mobile-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: fit-content;
		min-height: 44px;
		padding: 13px 16px;
		color: #000000;
		background: var(--bvi-blue);
		border-radius: 5px 5px 18px 5px;
	}
	.site-brand { width: 124px; }
	.site-menu-toggle { display: block; }
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		display: none;
		width: 100%;
		padding: 16px 22px 22px;
		background: rgba(3, 39, 70, .98);
	}
	.site-header.is-menu-open .site-nav { display: block; }
	.site-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
	.site-nav-cta {
		width: fit-content;
		margin: 20px 0 0;
	}
	.hero-section {
		min-height: auto;
		padding: 118px 22px 50px;
	}
	.hero-section__inner {
		grid-template-columns: 1fr;
		grid-template-areas: "copy" "patronage";
		row-gap: 52px;
	}
	.hero-copy,
	.hero-logo-wrap { padding-top: 0; }
	.hero-copy h1,
	.hero-title {
		max-width: 760px;
		font-size: clamp(36px, 8vw, 40px);
	}
	.hero-title img {
		width: min(100%, 620px);
	}
	.hero-subtitle {
		max-width: 680px;
		margin-top: 18px;
		font-size: clamp(17px, 2.8vw, 20px);
	}
	.hero-meta {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-items: start;
		justify-items: center;
		gap: 18px 20px;
		width: min(760px, 100%);
		margin-left: auto;
		margin-right: auto;
		font-size: clamp(14px, 2.2vw, 18px);
	}
	.hero-meta__item {
		align-items: center;
		text-align: center;
	}
	.hero-meta__divider { display: none; }
	.hero-logo-wrap { display: none; }
	.patronage {
		align-items: center;
		flex-direction: column;
		gap: 18px;
	}
	.patronage__people {
		align-items: center;
		flex-direction: column;
		gap: 18px;
	}
	.patronage p {
		max-width: none;
		font-size: 22px;
	}
	.feature-grid,
	.dashboard-grid { grid-template-columns: 1fr; }
	.page-breadcrumb {
		min-height: 360px;
		border-radius: 20px 20px 64px 20px;
		background-attachment: scroll;
	}
	.page-breadcrumb__inner {
		padding: 100px 24px 44px;
	}
	.about-intro-section {
		padding-top: 52px;
	}
	.about-intro-inner p {
		font-size: 18px;
	}
	.themes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.theme-card {
		min-height: 410px;
	}
	.schedule-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.schedule-card {
		min-height: 380px;
	}
	.schedule-tab-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}
	.schedule-agenda-row {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 18px;
		padding: 12px 0;
	}
	.schedule-agenda-row img {
		width: 84px;
		height: 84px;
	}
	.schedule-agenda-row img.schedule-agenda-image--contain {
		padding: 8px;
	}
	.schedule-agenda-time {
		font-size: 16px;
	}
	/*.schedule-agenda-speaker {*/
	/*	font-size: 20px;*/
	/*}*/
	.speakers-listing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.partner-intro-inner > p {
		font-size: 19px;
	}
	.partner-photo-card {
		flex-basis: 340px;
	}
	.footer-subscribe,
	.footer-links {
		grid-template-columns: 1fr;
		padding-left: 0;
		padding-right: 0;
	}
	.footer-bottom {
		padding-left: 0;
		padding-right: 0;
	}
	.footer-links {
		gap: 34px;
	}
	.ideas-section {
		padding-top: 50px;
		padding-bottom: 62px;
	}
	.ideas-heading {
		margin-bottom: 38px;
	}
	.ideas-heading h2 {
		font-size: clamp(30px, 6vw, 42px);
	}
	.ideas-heading p {
		font-size: 19px;
	}
	.idea-card {
		min-height: 410px;
	}
	.why-section {
		padding-top: 54px;
		padding-bottom: 56px;
	}
	.why-inner {
		grid-template-columns: 1fr;
		gap: 34px;
		width: min(680px, 100%);
	}
	.why-copy {
		min-height: 0;
	}
	.why-copy__sticky {
		position: static;
		min-height: 0;
	}
	body.home .why-copy__sticky,
	body.page-template-page-home .why-copy__sticky {
		position: sticky;
		top: 96px;
		transform: none;
	}
	.why-copy h2 {
		max-width: 620px;
		font-size: clamp(27px, 5vw, 38px);
	}
	.why-copy__line {
		display: none;
	}
	.why-button {
		width: 180px;
		min-height: 42px;
		font-size: 12px;
	}
	.why-card {
		min-height: 0;
	}
	body.home .why-card,
	body.page-template-page-home .why-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.featured-speakers-inner {
		width: min(760px, 100%);
	}
	.featured-speakers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.opportunity-section {
		background-attachment: scroll;
	}
	.opportunity-inner h2 {
		font-size: clamp(30px, 6vw, 42px);
	}
	.opportunity-inner p {
		font-size: 18px;
	}
	.sponsors-inner {
		width: min(760px, 100%);
	}
	.sponsor-card {
		flex-basis: calc((100% - 16px) / 2);
	}
	.glimpse-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {
	body.page-template-page-about .site-brand {
		width: 98px;
	}
	.breadcrumb-header {
		grid-template-columns: auto auto;
		gap: 10px;
		width: calc(100% - 28px);
		min-height: 72px;
	}
	.breadcrumb-brand {
		width: 92px;
	}
	.breadcrumb-menu-toggle {
		width: 38px;
		height: 38px;
	}
	.page-breadcrumb {
		min-height: 300px;
		margin: 8px;
		border-radius: 16px 16px 44px 16px;
	}
	.page-breadcrumb__inner {
		padding: 90px 18px 36px;
	}
	.page-breadcrumb h1 {
		font-size: 36px;
	}
	.about-intro-section {
		padding: 42px 20px 58px;
	}
	.about-intro-inner h2 {
		font-size: 25px;
	}
	.about-intro-inner p {
		font-size: 16px;
		line-height: 1.55;
	}
	.themes-section {
		padding: 38px 20px 52px;
	}
	.themes-inner h2 {
		margin-bottom: 24px;
		font-size: 30px;
	}
	.themes-grid {
		grid-template-columns: 1fr;
	}
	.theme-card {
		min-height: 360px;
		padding: 28px 24px;
	}
	.theme-card__number {
		font-size: 50px;
	}
	.theme-card__copy h3 {
		font-size: 17px;
	}
	.theme-card__copy p {
		font-size: 15px;
	}
	.schedule-intro-section {
		padding: 44px 20px 54px;
	}
	.schedule-intro-inner h2 {
		font-size: 30px;
	}
	.schedule-intro-inner > p {
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 1.55;
	}
	.schedule-card-grid {
		grid-template-columns: 1fr;
	}
	.schedule-tabs-section {
		padding: 46px 20px 52px;
	}
	.schedule-tabs-inner h2 {
		font-size: 34px;
	}
	.schedule-tab-button {
		min-height: 48px;
		padding: 8px 5px;
		font-size: clamp(12px, 3.2vw, 18px);
	}
	.schedule-agenda-row {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 12px;
		padding: 12px 0;
	}
	.schedule-agenda-row img {
		width: 64px;
		height: 64px;
	}
	.schedule-agenda-row img.schedule-agenda-image--contain {
		padding: 6px;
	}
	.schedule-agenda-heading {
		gap: 10px;
	}
	.schedule-agenda-time {
		min-width: 66px;
		padding: 7px 8px;
		font-size: 14px;
	}
	.schedule-agenda-copy h3 {
		font-size: 16px;
		line-height: 1.25;
	}
	/*.schedule-agenda-speaker {*/
	/*	font-size: 16px;*/
	/*}*/
	.schedule-agenda-cta {
		padding-top: 20px;
	}
	.speakers-listing-section {
		padding: 44px 20px 54px;
	}
	.speakers-listing-inner h2 {
		font-size: 32px;
	}
	.speakers-listing-inner > p {
		margin-bottom: 28px;
		font-size: 16px;
		line-height: 1.55;
	}
	.speakers-listing-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.partner-intro-section {
		padding: 44px 20px 54px;
	}
	.partner-intro-inner h2 {
		font-size: 32px;
	}
	.partner-intro-inner > p {
		margin-bottom: 26px;
		font-size: 16px;
		line-height: 1.55;
	}
	.partner-intro-button {
		width: 100%;
		margin-bottom: 24px;
	}
	.partner-photo-marquee {
		gap: 18px;
	}
	.partner-photo-track {
		gap: 14px;
	}
	.partner-photo-card {
		flex-basis: 260px;
	}
	.hero-copy h1,
	.hero-title {
		font-size: clamp(24px, 5.8vw, 38px);
		line-height: 1.2;
	}
	.hero-subtitle {
		margin-top: 16px;
		font-size: clamp(16px, 4vw, 18px);
	}
	.hero-meta {
		margin-top: 26px;
	}
	.hero-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
		justify-items: center;
		font-size: clamp(14px, 4.1vw, 17px);
	}
	.hero-meta__item {
		align-items: center;
		min-width: 0;
		text-align: center;
	}
	.hero-meta__line {
		justify-content: center;
		white-space: normal;
	}
	.hero-icon {
		width: 18px;
		height: 18px;
	}
	.hero-meta__divider { display: none; }
	.button {
		width: 100%;
		min-width: 0;
	}
	.hero-actions {
		justify-content: center;
		flex-wrap: nowrap;
		gap: 10px;
		width: 100%;
	}
	.hero-actions .button {
		width: auto;
		min-width: 0;
		flex: 1 1 0;
		min-height: 46px;
		padding: 12px 10px;
		font-size: clamp(11px, 3vw, 13px);
		white-space: nowrap;
	}
	.patronage__person { align-items: flex-start; }
	.patronage__photo {
		width: 72px;
		height: 72px;
	}
	.patronage strong { font-size: 17px; }
	.patronage span { font-size: 14px; }
	.site-footer {
		padding: 50px 20px 36px;
	}
	.footer-subscribe {
		gap: 30px;
		padding-bottom: 36px;
	}
	.footer-subscribe h2 {
		font-size: 32px;
	}
	.footer-subscribe p,
	.footer-about p,
	.footer-links a,
	.footer-bottom a,
	.footer-bottom p {
		font-size: 16px;
	}
	.footer-form__row {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.footer-links {
		padding-top: 42px;
		padding-bottom: 44px;
	}
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		padding-top: 24px;
	}
	.ideas-section {
		padding: 42px 20px 52px;
	}
	.ideas-heading h2 {
		font-size: 28px;
		line-height: 1.2;
	}
	.ideas-heading p {
		font-size: 16px;
	}
	.ideas-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.idea-card {
		min-height: 360px;
		padding: 26px 24px 28px;
	}
	.idea-card__number {
		font-size: 50px;
	}
	.idea-card__copy h3 {
		font-size: 17px;
	}
	.idea-card__copy p {
		font-size: 15px;
	}
	.why-section {
		padding: 44px 20px 48px;
	}
	.why-inner {
		gap: 28px;
	}
	.why-copy h2 {
		font-size: 25px;
		line-height: 1.22;
	}
	.why-list {
		gap: 18px;
	}
	.why-card {
		grid-template-columns: 44px 1fr;
		gap: 14px;
		padding: 22px 18px 20px;
		border-radius: 10px 10px 24px 10px;
	}
	body.home .why-card,
	body.page-template-page-home .why-card {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 24px 20px;
	}
	body.home .why-card__icon,
	body.page-template-page-home .why-card__icon {
		display: none;
	}
	.why-card__icon {
		width: 44px;
		height: 44px;
	}
	.why-card__icon svg {
		width: 23px;
		height: 23px;
	}
	.why-card h3 {
		font-size: 15px;
		line-height: 1.18;
	}
	.why-card p {
		font-size: 12px;
		line-height: 1.5;
	}
	.featured-speakers-section {
		padding: 36px 20px 42px;
	}
	.featured-speakers-inner h2 {
		margin-bottom: 18px;
		font-size: 28px;
	}
	.featured-speakers-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.featured-speakers-button {
		width: 100%;
		min-height: 44px;
		font-size: 12px;
	}
	.opportunity-section {
		min-height: 600px;
		padding: 64px 20px;
	}
	.opportunity-inner h2 {
		font-size: 32px;
		line-height: 1.14;
	}
	.opportunity-inner p {
		margin-top: 22px;
		font-size: 18px;
		line-height: 1.48;
	}
	.opportunity-button {
		width: 100%;
		min-height: 48px;
		margin-top: 38px;
		font-size: 14px;
	}
	.sponsors-section {
		padding: 34px 20px 48px;
	}
	.sponsors-inner > h2 {
		margin-bottom: 26px;
		font-size: 34px;
	}
	.sponsor-group {
		margin-top: 30px;
	}
	.sponsor-group h3 {
		font-size: 19px;
	}
	.sponsor-card {
		flex-basis: 100%;
		min-height: 108px;
	}
	.glimpse-section {
		padding: 42px 20px 38px;
	}
	.glimpse-inner h2 {
		margin-bottom: 24px;
		font-size: 30px;
	}
	.glimpse-grid {
		grid-template-columns: 1fr;
	}
	.glimpse-button {
		width: 100%;
		min-height: 46px;
		font-size: 12px;
	}
	.recap-video-section {
		padding: 24px 20px 50px;
	}
	.recap-video-play {
		width: 64px;
		height: 64px;
	}
	.recap-video-play::before {
		border-top-width: 13px;
		border-bottom-width: 13px;
		border-left-width: 20px;
	}
}

/* Footer screenshot match */
.site-footer {
	padding: 70px clamp(24px, 4.95vw, 95px) 46px;
	background-position: center center;
}

.site-footer::before {
	display: none;
}

.footer-inner {
	width: min(1715px, 100%);
}

.footer-subscribe {
	grid-template-columns: 650px 663px;
	justify-content: center;
	gap: 60px;
	padding: 0 0 47px;
}

.footer-subscribe h2 {
	margin-bottom: 24px;
	font-size: clamp(34px, 2.8vw, 48px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.footer-subscribe p {
	max-width: 650px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.48;
}

.footer-form {
	gap: 26px;
	padding-top: 0;
}

.footer-form__row {
	gap: 40px;
}

.footer-form label {
	gap: 3px;
	font-size: 16px;
	font-weight: 400;
}

.footer-form input {
	height: 30px;
	border-bottom-width: 2px;
}

.footer-form button {
	min-height: 40px;
	margin-top: 0;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 700;
}

.footer-rule {
	background: rgba(255, 255, 255, .3);
}

.footer-links {
	grid-template-columns: 470px 190px 235px 230px;
	justify-content: center;
	gap: 68px;
	padding: 62px 0 77px;
}

.footer-about img {
	width: 200px;
	margin-bottom: 10px;
}

.footer-about p {
	max-width: 470px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.footer-links nav {
	gap: 17px;
}

.footer-links h3 {
	margin-bottom: 7px;
	font-size: 21px;
	font-weight: 700;
}

.footer-links a,
.footer-bottom a {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
}

.footer-bottom {
	padding: 30px 110px 0;
}

.footer-bottom p {
	font-size: 18px;
	font-weight: 500;
}

@media (max-width: 1440px) {
	.footer-subscribe {
		grid-template-columns: minmax(420px, 650px) minmax(420px, 663px);
	}

	.footer-links {
		grid-template-columns: minmax(360px, 470px) 180px 220px 220px;
		gap: 44px;
	}

	.footer-bottom {
		padding-left: 80px;
		padding-right: 80px;
	}
}

@media (max-width: 1180px) {
	.experience-section,
	.experience-inner {
		min-height: 760px;
	}

	.experience-inner {
		padding: 70px 48px;
	}

	.experience-copy {
		width: min(600px, 100%);
		margin-left: auto;
		margin-right: 0;
	}

	.experience-copy h2 {
		font-size: clamp(34px, 4.5vw, 44px);
	}

	.experience-copy p {
		font-size: 20px;
	}

	.experience-copy .experience-lead {
		font-size: 23px;
	}

	.footer-subscribe,
	.footer-links {
		justify-content: stretch;
		grid-template-columns: 1fr;
	}

	.footer-subscribe {
		gap: 38px;
	}

	.footer-links {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 780px) {
	.experience-section,
	.experience-inner {
		min-height: auto;
	}

	.experience-inner {
		justify-content: start;
		padding: 92px 24px;
	}

	.experience-copy {
		width: 100%;
		margin-left: 0;
	}

	.experience-copy h2 {
		font-size: 32px;
		line-height: 1.16;
	}

	.experience-copy p {
		margin-bottom: 18px;
		font-size: 20px;
		line-height: 1.55;
	}

	.experience-copy .experience-lead {
		font-size: 20px;
	}
}

@media (max-width: 680px) {
	.site-footer {
		padding: 48px 20px 34px;
	}

	.footer-subscribe h2 {
		font-size: 32px;
	}

	.footer-subscribe p {
		font-size: 16px;
	}

	.footer-form__row,
	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-links {
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.experience-inner {
		padding: 72px 20px;
	}

	.experience-copy h2 {
		font-size: 28px;
	}

	.experience-copy p,
	.experience-copy .experience-lead {
		font-size: 16px;
	}

	.experience-button {
		width: 100%;
		min-height: 48px;
	}
}

.ideas-heading h2,
.featured-speakers-inner h2,
.opportunity-inner h2,
.sponsors-inner > h2,
.glimpse-inner h2,
.about-intro-inner h2,
.themes-inner h2,
.schedule-intro-inner h2,
.schedule-tabs-inner h2,
.speakers-listing-inner h2,
.partner-intro-inner h2,
.experience-copy h2 {
	font-size: clamp(38px, 3vw, 50px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ideas-heading p,
.opportunity-inner p,
.schedule-intro-inner > p,
.speakers-listing-inner > p,
.partner-intro-inner > p,
.experience-copy p,
.footer-subscribe p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.45;
}

.about-intro-inner h3,
.experience-copy .experience-lead {
	font-size: clamp(24px, 1.8vw, 30px);
	font-weight: 600;
	line-height: 1.18;
}

@media (max-width: 780px) {
	.ideas-heading h2,
	.featured-speakers-inner h2,
	.opportunity-inner h2,
	.sponsors-inner > h2,
	.glimpse-inner h2,
	.about-intro-inner h2,
	.themes-inner h2,
	.schedule-intro-inner h2,
	.schedule-tabs-inner h2,
	.speakers-listing-inner h2,
	.partner-intro-inner h2,
	.experience-copy h2 {
		font-size: 32px;
		line-height: 1.14;
	}

	.ideas-heading p,
	.opportunity-inner p,
	.schedule-intro-inner > p,
	.speakers-listing-inner > p,
	.partner-intro-inner > p,
	.experience-copy p,
	.footer-subscribe p {
		font-size: 16px;
		line-height: 1.5;
	}

	.about-intro-inner h3,
	.experience-copy .experience-lead {
		font-size: 22px;
	}
}
