:root {
	--color-ink: #11151b;
	--color-muted: #5f6874;
	--color-white: #ffffff;
	--color-soft: #f4f7f9;
	--color-line: #dbe4ea;
	--color-graphite: #171c22;
	--color-graphite-2: #242a31;
	--color-navy: #133857;
	--color-navy-2: #0a1b2b;
	--color-cyan: #14a8c5;
	--color-red: #e63a46;
	--color-red-dark: #a82732;
	--shadow: 0 24px 70px rgba(10, 27, 43, 0.14);
	--shadow-tight: 0 14px 35px rgba(10, 27, 43, 0.12);
	--radius: 8px;
	--container: 1180px;
	--font-body: "Instrument Variable", "Inter", "Segoe UI", Arial, sans-serif;
	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img,
video,
iframe {
	max-width: 100%;
}

img,
video {
	display: block;
	height: auto;
}

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

p {
	margin: 0 0 1rem;
	color: var(--color-muted);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	color: var(--color-navy);
	line-height: 1.05;
	font-weight: 600;
	letter-spacing: 0;
}

h1,
h2 {
	font-family: var(--font-display);
	font-weight: 500;
}

h1 {
	font-size: 4.4rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 1.35rem;
}

h4 {
	font-size: 1.15rem;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 1.1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--color-line);
}

th {
	color: var(--color-navy);
	background: rgba(20, 168, 197, 0.08);
	font-weight: 800;
}

input,
select,
textarea,
button {
	font: inherit;
}

button {
	cursor: pointer;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.content-width {
	max-width: 820px;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 999;
	padding: 0.7rem 1rem;
	background: var(--color-red);
	color: var(--color-white);
	border-radius: var(--radius);
}

.skip-link:focus {
	top: 1rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(180deg, var(--color-graphite-2), var(--color-graphite));
	backdrop-filter: blur(18px);
	box-shadow: 0 14px 36px rgba(10, 15, 20, 0.28);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	min-height: 78px;
}

.brand-lockup {
	display: inline-grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 0.32rem;
	color: var(--color-white);
	line-height: 1;
	min-width: 0;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 34px;
	border: 2px solid currentColor;
	font-weight: 900;
}

.brand-word {
	font-weight: 900;
	font-size: 1.15rem;
	text-transform: uppercase;
}

.brand-logo {
	display: block;
	width: auto;
	height: clamp(48px, 4.4vw, 58px);
	max-width: min(255px, 48vw);
	object-fit: contain;
	object-position: left center;
}

.brand-subline {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.custom-logo-link img {
	max-height: 58px;
	width: auto;
}

.nav-list,
.footer-list {
	display: flex;
	align-items: center;
	gap: 1.15rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav {
	justify-self: end;
}

.primary-nav a,
.header-link {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.92rem;
	font-weight: 700;
}

.primary-nav a:hover,
.header-link:hover {
	color: var(--color-white);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
}

.menu-toggle span {
	display: block;
	width: 21px;
	height: 2px;
	margin: 5px auto;
	background: rgba(255, 255, 255, 0.88);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1.2rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: var(--color-red);
	color: var(--color-white);
	box-shadow: 0 16px 36px rgba(230, 58, 70, 0.28);
}

.btn--secondary {
	background: var(--color-cyan);
	color: var(--color-white);
	box-shadow: 0 14px 30px rgba(20, 168, 197, 0.25);
}

.btn--glass,
.btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.32);
}

.btn--ghost {
	color: var(--color-navy);
	border-color: var(--color-line);
	background: var(--color-white);
}

.btn--ghost.dark {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.22);
}

.small {
	min-height: 38px;
	padding: 0.55rem 0.85rem;
	font-size: 0.88rem;
}

.header-cta {
	min-height: 40px;
}

.button-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.button-row--end {
	justify-content: flex-end;
}

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

.section {
	position: relative;
	padding: 6.5rem 0;
	overflow: clip;
}

.section--light {
	background: var(--color-white);
}

.section--soft {
	background: var(--color-soft);
}

.section--dark {
	background: var(--color-navy-2);
	color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark .eyebrow {
	color: var(--color-white);
}

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

.section-heading {
	max-width: 760px;
	margin-bottom: 2.4rem;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading p:last-child {
	font-size: 1.05rem;
}

.home-hero {
	position: relative;
	background: var(--color-navy-2);
	color: var(--color-white);
}

.hero-slider {
	position: relative;
	min-height: 780px;
	overflow: hidden;
}

.hero-video-backdrop,
.hero-video-poster,
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-video-backdrop {
	z-index: 0;
	overflow: hidden;
	background: var(--color-navy-2);
}

.hero-video-poster,
.hero-video {
	object-fit: cover;
	object-position: center;
}

.hero-video-poster {
	z-index: 0;
}

.hero-video {
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 700ms ease;
}

.hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.hero-slide__media,
.hero-slide__overlay {
	position: absolute;
	inset: 0;
}

.hero-slide__media {
	transform: translate3d(0, 0, 0);
}

.hero-slide-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slide__overlay {
	background:
		linear-gradient(90deg, rgba(4, 8, 15, 0.82), rgba(10, 27, 43, 0.62) 48%, rgba(10, 27, 43, 0.34)),
		linear-gradient(0deg, rgba(4, 8, 15, 0.48), rgba(4, 8, 15, 0.08) 52%, rgba(4, 8, 15, 0.34));
}

.hero-slide__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 760px) 280px;
	align-items: end;
	gap: 2rem;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.hero-copy h1,
.page-hero h1 {
	color: inherit;
	max-width: 850px;
}

.hero-copy .hero-lede {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.18rem;
}

.page-hero .hero-lede {
	color: var(--color-muted);
	font-size: 1.12rem;
}

.hero-signal-card {
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow-tight);
}

.hero-signal-card span {
	display: block;
	margin-bottom: 0.6rem;
	color: var(--color-cyan);
	font-weight: 900;
	text-transform: uppercase;
}

.hero-signal-card strong {
	color: var(--color-white);
	font-size: 1.35rem;
	line-height: 1.25;
}

.hero-controls {
	position: absolute;
	left: 50%;
	bottom: 2rem;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 1rem;
	transform: translateX(-50%);
}

.slider-btn,
.slider-dots button {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
	color: var(--color-white);
	border-radius: var(--radius);
}

.slider-btn {
	width: 44px;
	height: 44px;
	font-size: 1.7rem;
	line-height: 1;
}

.slider-dots {
	display: flex;
	gap: 0.45rem;
}

.slider-dots button {
	width: 32px;
	height: 8px;
	padding: 0;
}

.slider-dots button.is-active {
	background: var(--color-red);
	border-color: var(--color-red);
}

.media-slot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.media-slot--placeholder {
	position: relative;
	display: grid;
	min-height: 280px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background:
		linear-gradient(135deg, rgba(19, 56, 87, 0.95), rgba(20, 168, 197, 0.64)),
		linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.2) 48% 52%, transparent 52% 100%);
	color: var(--color-white);
}

.media-slot--placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.6;
}

.media-slot--placeholder::after {
	content: "";
	position: absolute;
	left: -40%;
	top: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(230, 58, 70, 0.34), transparent);
	animation: scanline 5s linear infinite;
}

.media-slot--placeholder span {
	position: relative;
	z-index: 1;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: var(--radius);
	font-weight: 900;
	text-transform: uppercase;
}

@keyframes scanline {
	to {
		left: 100%;
	}
}

.meeting-strip {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-line);
	box-shadow: 0 12px 30px rgba(10, 27, 43, 0.06);
}

.meeting-grid {
	display: grid;
	grid-template-columns: 1.5fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	padding: 1.2rem 0;
}

.meeting-grid h2 {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.35rem;
	font-weight: 900;
}

.meeting-copy p:last-child {
	margin: 0.35rem 0 0;
	font-size: 0.95rem;
}

.countdown-card {
	display: grid;
	place-items: center;
	min-width: 170px;
	padding: 0.9rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-soft);
}

.countdown-card span {
	color: var(--color-red);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.countdown-card small {
	color: var(--color-muted);
	text-align: center;
}

.meeting-time-card span {
	font-size: 2.1rem;
}

.page-hero {
	padding: 6.5rem 0 5.5rem;
}

.page-hero--light {
	background:
		linear-gradient(135deg, rgba(20, 168, 197, 0.09), transparent 45%),
		linear-gradient(0deg, var(--color-white), var(--color-soft));
	color: var(--color-navy);
}

.page-hero--dark {
	background: var(--color-navy-2);
	color: var(--color-white);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
	align-items: center;
	gap: 3rem;
}

.hero-media-panel {
	position: relative;
	min-height: 380px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-media-panel > img.media-slot,
.hero-media-panel > video.media-slot,
.hero-media-panel > .media-slot--placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media-panel > img.media-slot,
.hero-media-panel > video.media-slot {
	display: block;
	object-fit: cover;
}

.hero-media-panel > .media-slot--placeholder {
	min-height: 0;
}

.hero-media-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(20, 168, 197, 0.28);
	border-radius: inherit;
	pointer-events: none;
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 3rem;
	align-items: center;
}

.split-layout--media {
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.split-layout--opportunity {
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
	align-items: start;
}

.signal-stack {
	display: grid;
	gap: 1rem;
}

.signal-stack--opportunity {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1.4rem;
}

.signal-tile,
.feature-card,
.content-card,
.notice-panel,
.application-panel,
.team-card,
.episode-card,
.event-card,
.metric-card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.signal-tile {
	padding: 1.2rem;
}

.signal-tile span,
.card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 30px;
	margin-bottom: 0.8rem;
	border-radius: var(--radius);
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 900;
}

.signal-tile strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--color-navy);
	font-size: 1.12rem;
}

.signal-tile--dark {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.14);
}

.signal-tile--dark strong {
	color: var(--color-white);
}

.movement-photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow);
}

.movement-photo img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center 62%;
}

.movement-photo figcaption {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: rgba(10, 27, 43, 0.86);
	backdrop-filter: blur(14px);
}

.movement-photo figcaption strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-white);
	font-size: 1.12rem;
	line-height: 1.2;
}

.movement-photo figcaption p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.division-band {
	align-items: start;
}

.division-panel,
.article-card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.division-panel {
	padding: 1.5rem;
}

.division-panel h3 {
	font-family: var(--font-body);
	font-weight: 900;
}

.division-points {
	display: grid;
	gap: 1rem;
}

.division-points > div {
	padding: 1rem;
	border-radius: var(--radius);
	background: var(--color-soft);
}

.division-points strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-navy);
	font-size: 1.05rem;
}

.division-points p {
	margin: 0;
}

.article-preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin-top: 1.5rem;
}

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

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

.article-feature-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 2rem;
	align-items: center;
}

.article-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding: 0;
	margin: 1.2rem 0 0;
	list-style: none;
}

.article-meta-list li {
	padding: 0.45rem 0.68rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-soft);
	color: var(--color-navy);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
}

.article-layout {
	display: grid;
	gap: 1.4rem;
}

.article-card {
	display: flex;
	flex-direction: column;
	padding: 1.45rem;
	min-height: 100%;
}

.article-card h2,
.article-card h3 {
	font-family: var(--font-body);
	font-weight: 900;
}

.article-card h3 {
	font-size: 1.35rem;
	line-height: 1.16;
}

.article-card p:last-child {
	margin-bottom: 0;
}

.article-card .text-link {
	margin-top: auto;
	align-self: flex-start;
}

.article-card--full {
	position: relative;
	display: block;
	padding: 2rem;
	overflow: hidden;
}

.article-card--full::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, var(--color-cyan), var(--color-red));
}

.article-card--full h2 {
	max-width: 820px;
	font-size: 2.2rem;
}

.article-body {
	display: grid;
	gap: 1rem;
	max-width: 900px;
}

.article-body p {
	margin: 0;
	font-size: 1.04rem;
}

.article-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 34px;
	margin-bottom: 1rem;
	border-radius: var(--radius);
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 900;
}

.article-shell {
	max-width: 980px;
}

.longform-article {
	position: relative;
	padding: clamp(1.4rem, 4vw, 3rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.longform-article__header {
	padding-bottom: 1.6rem;
	margin-bottom: 1.8rem;
	border-bottom: 1px solid var(--color-line);
}

.longform-article__header h2 {
	max-width: 880px;
	font-size: clamp(2.25rem, 4.8vw, 4.1rem);
}

.longform-article__dek {
	max-width: 820px;
	color: var(--color-ink);
	font-size: 1.22rem;
	line-height: 1.6;
}

.longform-article__body {
	display: grid;
	gap: 1rem;
}

.longform-article__body h3 {
	margin: 2.2rem 0 0.2rem;
	color: var(--color-navy);
	font-size: 1.55rem;
}

.longform-article__body p {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.82;
}

.longform-pullquote {
	padding: 1.35rem;
	margin: 1.2rem 0;
	border-left: 5px solid var(--color-red);
	border-radius: var(--radius);
	background: var(--color-navy-2);
}

.longform-pullquote p {
	color: var(--color-white);
	font-size: 1.22rem;
	font-weight: 800;
	line-height: 1.45;
}

.card-grid {
	display: grid;
	gap: 1.2rem;
}

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

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

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

.feature-card {
	padding: 1.4rem;
}

.feature-card h2,
.feature-card h3 {
	font-family: var(--font-body);
	font-weight: 900;
}

.feature-card--dark {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.14);
}

.feature-card--dark h3,
.feature-card--dark p {
	color: var(--color-white);
}

.parallax-band {
	background:
		linear-gradient(135deg, rgba(20, 168, 197, 0.12), transparent 40%),
		linear-gradient(90deg, var(--color-navy-2), var(--color-navy));
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.metric-grid--light .metric-card {
	background: var(--color-white);
}

.metric-card {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--color-white);
}

.metric-card span {
	display: block;
	margin-bottom: 0.9rem;
	color: var(--color-cyan);
	font-family: var(--font-display);
	font-size: 3.4rem;
	line-height: 1;
}

.metric-grid--light .metric-card span,
.metric-grid--light .metric-card p {
	color: var(--color-navy);
}

.metric-card--red span {
	color: var(--color-red);
}

.platform-section .section-heading {
	max-width: 920px;
}

.platform-section {
	background-image:
		linear-gradient(135deg, rgba(20, 168, 197, 0.18), transparent 42%),
		linear-gradient(90deg, rgba(3, 28, 45, 0.82), rgba(8, 52, 80, 0.74)),
		url("../images/platform-technology-city-skyline-str8up-gfi.jpg");
	background-position: center;
	background-size: auto, auto, cover;
	background-attachment: scroll, scroll, fixed;
}

.platform-copy {
	display: grid;
	gap: 1rem;
	max-width: 980px;
	margin: 0 auto 2rem;
	text-align: center;
}

.platform-copy p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.75;
}

.platform-support-line {
	color: var(--color-white);
	font-weight: 900;
}

.platform-copy--light .platform-support-line {
	color: var(--color-navy);
}

.platform-card-grid {
	margin-top: 2rem;
}

@media (max-width: 900px) {
	.platform-section {
		background-attachment: scroll;
		background-position: center top;
	}
}

.table-layout {
	display: grid;
	gap: 2rem;
}

.responsive-table {
	overflow-x: auto;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.responsive-table--dark {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
}

.responsive-table--dark th {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.1);
}

.responsive-table--dark td,
.responsive-table--dark th {
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.82);
}

.core-solutions-section {
	padding-block: clamp(4.6rem, 6vw, 5.8rem);
}

.core-solutions-heading {
	max-width: 860px;
	margin-bottom: 1.35rem;
}

.core-solutions-intro {
	display: grid;
	gap: 0.75rem;
	max-width: 920px;
	margin: 0 auto 2rem;
	text-align: center;
}

.core-solutions-intro p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.core-solutions-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 1rem;
	align-items: stretch;
}

.core-solution-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 1.2rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 12px 28px rgba(10, 27, 43, 0.07);
}

.core-solution-accent {
	width: 42px;
	height: 3px;
	margin-bottom: 0.9rem;
	border-radius: 999px;
	background: var(--color-cyan);
}

.core-solution-card h3 {
	margin-bottom: 0.65rem;
	color: var(--color-navy);
	font-family: var(--font-body);
	font-size: 1.04rem;
	font-weight: 900;
}

.core-solution-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.9rem;
}

.solution-pill {
	display: grid;
	min-height: 96px;
	place-items: center;
	padding: 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: 900;
	text-align: center;
	box-shadow: var(--shadow-tight);
}

.process-list {
	display: grid;
	gap: 1rem;
}

.process-list > div {
	padding: 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
}

.process-list--light > div {
	border-color: var(--color-line);
	background: var(--color-soft);
}

.process-list span {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--color-cyan);
	font-weight: 900;
	text-transform: uppercase;
}

.process-list strong {
	display: block;
	color: var(--color-white);
	font-size: 1.12rem;
}

.process-list--light strong {
	color: var(--color-navy);
}

.notice-panel {
	padding: 2rem;
	border-left: 5px solid var(--color-red);
}

.accordion {
	display: grid;
	gap: 0.8rem;
}

.accordion-item {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.accordion-item summary {
	padding: 1.2rem 1.4rem;
	color: var(--color-navy);
	font-weight: 900;
	cursor: pointer;
}

.accordion-item p {
	padding: 0 1.4rem 1.2rem;
}

.media-collage {
	min-height: 420px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.video-feature {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow);
}

.video-feature__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--color-navy-2);
}

.video-feature__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-feature__body {
	padding: 1.25rem;
}

.video-feature__body h3 {
	font-family: var(--font-body);
	font-weight: 900;
}

.video-feature__body p:last-of-type {
	margin-bottom: 0.8rem;
}

.text-link {
	color: var(--color-red);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.text-link:hover {
	color: var(--color-red-dark);
}

.video-feature + .episode-grid {
	margin-top: 1.5rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
}

.team-card {
	display: grid;
	grid-template-columns: 230px 1fr;
	overflow: hidden;
}

.team-card__media {
	min-height: 310px;
	background: var(--color-navy);
	overflow: hidden;
}

.team-card__media img,
.team-card__media .media-slot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	border-radius: 0;
}

.team-card--manuel .team-card__media img,
.team-card--manuel .team-card__media .media-slot {
	object-position: center 12%;
	transform: scale(1.9);
	transform-origin: center 20%;
}

.team-card__body {
	padding: 1.4rem;
}

.team-card blockquote {
	margin: 1rem 0 0;
	padding-left: 1rem;
	border-left: 3px solid var(--color-red);
	color: var(--color-navy);
	font-weight: 800;
}

.event-list {
	display: grid;
	gap: 1rem;
}

.event-card {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 1.2rem;
	align-items: center;
	padding: 1rem;
}

.event-card__date {
	display: grid;
	place-items: center;
	min-height: 110px;
	border-radius: var(--radius);
	background: var(--color-navy);
	color: var(--color-white);
	text-align: center;
}

.event-card__date span {
	max-width: 100%;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.78rem;
	line-height: 1.15;
}

.event-card__date strong {
	font-size: 2.2rem;
	line-height: 1;
}

.event-card__date--recurring strong {
	font-size: 1.9rem;
}

.meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.meta-list li {
	padding: 0.35rem 0.55rem;
	border-radius: var(--radius);
	background: var(--color-soft);
	color: var(--color-navy);
	font-size: 0.88rem;
	font-weight: 800;
}

.media-category-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 2rem;
}

.media-category-row span {
	padding: 0.55rem 0.85rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: 800;
}

.episode-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.episode-card {
	overflow: hidden;
}

.episode-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-navy);
}

.episode-card__media img,
.episode-card__media .media-slot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.episode-card__media span {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.6rem 0.85rem;
	border-radius: var(--radius);
	background: var(--color-red);
	color: var(--color-white);
	font-weight: 900;
}

.episode-card__body {
	padding: 1.25rem;
}

.portal-dashboard {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
}

.portal-login-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
}

.portal-login-section {
	padding-top: clamp(4.5rem, 7vw, 6.8rem);
}

.portal-login-panel {
	padding: clamp(1.6rem, 3vw, 2.6rem);
}

.portal-login-panel h1,
.portal-login-panel h2 {
	font-size: clamp(2.35rem, 4vw, 3.35rem);
}

.portal-login-panel > p {
	max-width: 760px;
}

.portal-login-form {
	margin-top: 1.35rem;
	gap: 1rem;
}

.portal-login-form .form-two {
	gap: 1rem;
}

.portal-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 0.25rem;
}

.portal-form-footer .check-row {
	margin: 0;
}

.portal-form-footer .btn {
	flex: 0 0 auto;
}

.portal-instructions {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.portal-instructions > div {
	padding: 0.9rem;
}

.portal-instructions span {
	margin-bottom: 0.25rem;
	font-size: 0.74rem;
}

.portal-instructions strong {
	font-size: 0.98rem;
}

.portal-instructions p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
}

.portal-join-hero {
	padding-top: clamp(4.5rem, 7vw, 6rem);
}

.portal-join-hero h2 {
	max-width: 780px;
	font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.portal-join-hero .hero-media-panel {
	min-height: clamp(340px, 36vw, 480px);
}

.portal-team-image {
	object-position: center;
}

.portal-welcome {
	padding: 1.6rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-tight);
}

.portal-quicklinks {
	display: grid;
	gap: 0.65rem;
	min-width: 240px;
}

.portal-quicklinks a {
	padding: 0.9rem 1rem;
	border-radius: var(--radius);
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 900;
}

.form-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
	gap: 3rem;
	align-items: start;
}

.application-panel {
	padding: 1.4rem;
}

.application-form {
	display: grid;
	gap: 0.8rem;
}

.form-field {
	display: grid;
	gap: 0.45rem;
}

.application-form label {
	color: var(--color-navy);
	font-weight: 900;
}

.application-form input,
.application-form select,
.application-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	color: var(--color-ink);
}

.application-form input[readonly] {
	background: var(--color-soft);
	color: var(--color-muted);
}

.application-form textarea {
	min-height: 130px;
	resize: vertical;
}

.form-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}

.check-row {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 0.6rem;
	align-items: start;
	font-size: 0.95rem;
}

.check-row input {
	min-height: auto;
	margin-top: 0.25rem;
}

.form-honey {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.turnstile-field,
.turnstile-placeholder {
	margin: 0.35rem 0 0.45rem;
}

.turnstile-placeholder {
	padding: 0.9rem 1rem;
	border: 1px dashed rgba(20, 168, 197, 0.45);
	border-radius: var(--radius);
	background: rgba(20, 168, 197, 0.08);
}

.turnstile-placeholder strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--color-navy);
}

.turnstile-placeholder p {
	margin: 0;
	font-size: 0.92rem;
}

.form-message {
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	font-weight: 800;
}

.form-message--success {
	background: rgba(20, 168, 197, 0.12);
	color: var(--color-navy);
}

.form-message--error {
	background: rgba(230, 58, 70, 0.12);
	color: var(--color-red-dark);
}

.credential-cta {
	padding: clamp(4.5rem, 7vw, 6.4rem) 0;
	background: var(--color-navy-2);
}

.credential-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
}

.credential-cta .eyebrow {
	margin-bottom: 1rem;
	color: var(--color-cyan);
	font-size: 1.04rem;
}

.credential-cta h2 {
	max-width: 760px;
	color: var(--color-white);
	font-size: clamp(2.5rem, 5vw, 4.25rem);
}

.credential-cta p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
}

.credential-cta .button-row {
	justify-content: flex-end;
	margin-top: 0;
}

.credential-cta .btn--ghost {
	border-color: rgba(255, 255, 255, 0.26);
	background: transparent;
	color: var(--color-white);
}

.embed-panel {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-tight);
}

.embed-panel iframe {
	display: block;
	width: 100%;
	min-height: 720px;
	border: 0;
}

.page-content-section {
	min-height: 50vh;
}

.entry-content a {
	color: var(--color-red);
	font-weight: 800;
}

.site-footer {
	padding: 4.5rem 0 2rem;
	background: var(--color-navy-2);
	color: var(--color-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.6fr) minmax(260px, 0.8fr);
	gap: 2rem;
	align-items: start;
}

.footer-brand p,
.footer-legal p {
	color: rgba(255, 255, 255, 0.68);
}

.brand-lockup--footer {
	margin-bottom: 1rem;
	color: var(--color-white);
}

.brand-lockup--footer .brand-logo {
	height: 64px;
	max-width: min(100%, 270px);
}

.brand-lockup--footer .brand-subline {
	color: rgba(255, 255, 255, 0.72);
}

.footer-list {
	display: grid;
	gap: 0.55rem;
}

.footer-list a {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 800;
}

.footer-cta {
	padding: 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.07);
}

.footer-cta h2 {
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 1.4rem;
	font-weight: 900;
}

.footer-legal {
	margin-top: 3rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.86rem;
}

.reveal-up {
	animation: reveal-up 700ms ease both;
}

@keyframes reveal-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	h2 {
		font-size: 2.55rem;
	}

	.header-inner {
		grid-template-columns: auto auto;
	}

	.brand-logo {
		height: 52px;
	}

	.menu-toggle {
		display: block;
		justify-self: end;
	}

	.primary-nav,
	.header-actions {
		display: none;
	}

	.site-header.is-open .primary-nav,
	.site-header.is-open .header-actions {
		display: flex;
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.site-header.is-open .primary-nav {
		padding-top: 1rem;
	}

	.site-header.is-open .nav-list,
	.site-header.is-open .header-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.site-header.is-open .nav-list a,
	.site-header.is-open .header-actions a {
		display: block;
		padding: 0.85rem 0;
	}

	.hero-slide__content,
	.hero-grid,
	.split-layout,
	.article-feature-layout,
	.form-layout {
		grid-template-columns: 1fr;
	}

	.hero-signal-card {
		max-width: 360px;
	}

	.meeting-grid,
	.portal-dashboard,
	.portal-login-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.credential-cta__inner {
		grid-template-columns: 1fr;
	}

	.button-row--end {
		justify-content: flex-start;
	}

	.credential-cta .button-row {
		justify-content: flex-start;
	}

	.card-grid--four,
	.core-solutions-grid,
	.signal-stack--opportunity,
	.article-preview-grid,
	.solution-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.team-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 2.7rem;
	}

	h2 {
		font-size: 2.05rem;
	}

	.container {
		width: min(100% - 28px, var(--container));
	}

	.brand-logo {
		height: 44px;
	}

	.brand-subline {
		font-size: 0.56rem;
		white-space: normal;
	}

	.section,
	.page-hero {
		padding: 4.4rem 0;
	}

	.hero-slider {
		min-height: 720px;
	}

	.hero-slide__content {
		padding-top: 4rem;
		padding-bottom: 5.5rem;
	}

	.hero-media-panel {
		min-height: 280px;
	}

	.card-grid--two,
	.card-grid--three,
	.card-grid--four,
	.core-solutions-grid,
	.metric-grid,
	.signal-stack--opportunity,
	.article-preview-grid,
	.article-preview-grid--featured,
	.solution-grid,
	.episode-grid {
		grid-template-columns: 1fr;
	}

	.article-card--full {
		padding: 1.45rem;
	}

	.article-card--full h2 {
		font-size: 1.75rem;
	}

	.longform-article__dek {
		font-size: 1.08rem;
	}

	.longform-article__body p {
		font-size: 1rem;
	}

	.movement-photo img {
		aspect-ratio: 4 / 5;
	}

	.movement-photo figcaption {
		position: static;
		border-color: var(--color-line);
		background: var(--color-navy-2);
	}

	.team-card,
	.event-card {
		grid-template-columns: 1fr;
	}

	.event-card__action {
		justify-self: start;
	}

	.form-two {
		grid-template-columns: 1fr;
	}

	.portal-instructions {
		grid-template-columns: 1fr;
	}

	.portal-form-footer {
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}

	.button-row {
		align-items: stretch;
	}

	.slider-dots button {
		width: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-video {
		display: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
