:root {
	--ink: #10120f;
	--paper: #f4efe3;
	--paper-deep: #e6d9c2;
	--moss: #1f5f4c;
	--moss-dark: #0b2c26;
	--aqua: #00c7ad;
	--aqua-soft: #7be8d3;
	--coral: #dc5d46;
	--plum: #6b245c;
	--plum-soft: #d994ca;
	--gold: #d69d2f;
	--gold-soft: #f2b84f;
	--night: #101412;
	--line: rgba(16, 18, 15, 0.16);
	--white-line: rgba(255, 255, 255, 0.18);
	--shadow: 0 24px 70px rgba(18, 21, 20, 0.18);
	--radius: 8px;
	--font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Fraunces", Georgia, serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(90deg, rgba(16, 18, 15, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
		linear-gradient(rgba(16, 18, 15, 0.03) 1px, transparent 1px) 0 0 / 44px 44px,
		var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	margin: 0;
	overflow-x: hidden;
}

body::before {
	background-image: repeating-linear-gradient(45deg, rgba(16, 18, 15, 0.026) 0 1px, transparent 1px 7px);
	content: "";
	inset: 0;
	mix-blend-mode: multiply;
	opacity: 0.48;
	pointer-events: none;
	position: fixed;
	z-index: 50;
}

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

main,
.hero > *,
.split-section > *,
.health-lead > *,
.contact-grid > *,
.logo-story > * {
	min-width: 0;
}

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

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

ul {
	margin: 0;
	padding-left: 1.1rem;
}

li + li {
	margin-top: 0.45rem;
}

.site-header {
	align-items: center;
	backdrop-filter: blur(18px);
	background: rgba(244, 239, 227, 0.82);
	border-bottom: 1px solid rgba(16, 18, 15, 0.12);
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 18px;
	left: 0;
	min-height: 74px;
	padding: 0 clamp(18px, 4vw, 56px);
	position: sticky;
	right: 0;
	top: 0;
	z-index: 40;
}

.brand-lockup {
	align-items: center;
	display: flex;
	font-size: 0.86rem;
	font-weight: 840;
	gap: 12px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.brand-lockup img {
	height: 50px;
	object-fit: contain;
	width: auto;
}

.site-nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.48);
	border: 1px solid rgba(16, 18, 15, 0.14);
	border-radius: 999px;
	display: flex;
	gap: 4px;
	padding: 5px;
}

.site-nav a,
.nav-toggle {
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 760;
	padding: 10px 13px;
}

.site-nav a:hover,
.site-nav a.is-active {
	background: var(--ink);
	color: var(--paper);
}

.nav-toggle {
	background: var(--ink);
	border: 0;
	color: var(--paper);
	cursor: pointer;
	display: none;
	font-family: inherit;
}

.section-pad {
	padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 72px);
}

.section-dark {
	background:
		linear-gradient(120deg, rgba(0, 199, 173, 0.13), transparent 42%),
		linear-gradient(300deg, rgba(107, 36, 92, 0.18), transparent 48%),
		var(--night);
	color: var(--paper);
}

.hero {
	align-items: center;
	display: grid;
	gap: clamp(34px, 5vw, 80px);
	grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
	min-height: calc(100svh - 74px);
	overflow: hidden;
	padding: clamp(72px, 8vw, 112px) clamp(18px, 4vw, 72px) 0;
	position: relative;
}

.eyebrow {
	color: var(--moss);
	font-size: 0.76rem;
	font-weight: 840;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
	color: var(--aqua-soft);
}

.hero h1,
.section-heading h2,
.section-copy h2,
.profile-panel h3,
.logo-story h3 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 7.2vw, 7.8rem);
	font-weight: 760;
	letter-spacing: 0;
	line-height: 0.9;
	max-width: 11.5ch;
}

.hero h1 > span {
	display: block;
}

.section-heading h2,
.section-copy h2,
.profile-panel h3,
.logo-story h3 {
	font-size: clamp(2.35rem, 5vw, 5.6rem);
}

.lede,
.section-heading > p:not(.eyebrow),
.section-copy > p,
.hero-copy > p:not(.eyebrow) {
	font-size: clamp(1rem, 1.35vw, 1.28rem);
	line-height: 1.62;
	margin-top: 26px;
	max-width: 700px;
}

.highlight {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.highlight::after {
	border-radius: 999px;
	bottom: 0.02em;
	content: "";
	height: 0.16em;
	left: -0.03em;
	position: absolute;
	right: -0.03em;
	z-index: -1;
}

.highlight-visible {
	color: var(--aqua-soft);
	text-shadow: 0 0 28px rgba(123, 232, 211, 0.22);
}

.highlight-visible::after {
	background: rgba(0, 199, 173, 0.36);
}

.highlight-strategic {
	color: var(--gold-soft);
	text-shadow: 0 0 28px rgba(242, 184, 79, 0.2);
}

.highlight-strategic::after {
	background: rgba(214, 157, 47, 0.38);
}

.button-row,
.portal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 840;
	justify-content: center;
	min-height: 48px;
	padding: 0 21px;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
	background: var(--aqua);
	border: 0;
	color: #071513;
}

.button.secondary {
	border: 1px solid currentColor;
}

.hero-portal {
	aspect-ratio: 1;
	border: 1px solid var(--white-line);
	border-radius: 50%;
	position: relative;
}

.hero-portal::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px) 0 0 / 34px 34px,
		linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 34px 34px;
	border-radius: 50%;
	content: "";
	inset: 11%;
	opacity: 0.32;
	position: absolute;
}

.portal-ring {
	border: 1px solid rgba(123, 232, 211, 0.38);
	border-radius: 50%;
	position: absolute;
}

.ring-one {
	animation: slow-spin 22s linear infinite;
	height: 72%;
	left: -2%;
	top: 14%;
	transform: rotate(18deg) scaleY(0.5);
	width: 104%;
}

.ring-two {
	animation: slow-spin 30s linear infinite reverse;
	border-color: rgba(214, 157, 47, 0.45);
	height: 84%;
	left: -8%;
	top: 8%;
	transform: rotate(-34deg) scaleY(0.36);
	width: 116%;
}

.portal-logo {
	background: rgba(244, 239, 227, 0.96);
	box-shadow:
		0 0 0 1px rgba(245, 239, 227, 0.5),
		0 24px 90px rgba(0, 0, 0, 0.42);
	height: 34%;
	left: 50%;
	object-fit: contain;
	padding: 10px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	z-index: 8;
}

.practice-tile {
	background: rgba(245, 239, 227, 0.92);
	border: 1px solid rgba(245, 239, 227, 0.35);
	border-radius: var(--radius);
	color: var(--ink);
	overflow: hidden;
	position: absolute;
	transition: transform 220ms ease, box-shadow 220ms ease;
	width: 40%;
	z-index: 5;
}

.practice-tile:hover {
	box-shadow: 0 22px 80px rgba(0, 0, 0, 0.24);
	transform: translateY(-3px) rotate(0deg);
}

.practice-tile img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.practice-tile span,
.service-card span,
.resource-card span,
.experience-card span,
.contact-form span {
	color: var(--moss);
	display: block;
	font-size: 0.72rem;
	font-weight: 840;
	letter-spacing: 0.12em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.practice-tile h2 {
	font-size: 1rem;
	line-height: 1.2;
	padding: 0 14px 15px;
}

.practice-tile span {
	padding: 14px 14px 0;
}

.science-tile {
	left: 0;
	top: 15%;
	transform: rotate(-5deg);
}

.health-tile {
	bottom: 12%;
	right: 0;
	transform: rotate(5deg);
}

.ticker {
	border-bottom: 1px solid var(--white-line);
	border-top: 1px solid var(--white-line);
	grid-column: 1 / -1;
	margin: clamp(34px, 5vw, 64px) calc(clamp(18px, 4vw, 72px) * -1) 0;
	overflow: hidden;
	padding: 16px 0;
	white-space: nowrap;
}

.ticker div {
	animation: ticker 28s linear infinite;
	display: inline-flex;
	gap: 28px;
}

.ticker span {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 3.3rem);
}

.ticker span:nth-child(6n+1) {
	color: var(--aqua);
}

.ticker span:nth-child(6n+2) {
	color: var(--gold-soft);
}

.ticker span:nth-child(6n+3) {
	color: var(--coral);
}

.ticker span:nth-child(6n+4) {
	color: var(--paper);
}

.ticker span:nth-child(6n+5) {
	color: var(--paper-deep);
}

.ticker span:nth-child(6n+6) {
	color: var(--plum-soft);
}

.hero-ticker {
	background: rgba(16, 20, 18, 0.86);
	left: calc(clamp(18px, 4vw, 72px) * -1);
	margin: 0;
	position: absolute;
	right: calc(clamp(18px, 4vw, 72px) * -1);
	top: 0;
	z-index: 9;
}

.intro-band {
	background:
		linear-gradient(90deg, rgba(214, 157, 47, 0.12), transparent 34%),
		linear-gradient(270deg, rgba(0, 199, 173, 0.12), transparent 42%),
		var(--paper);
}

.section-heading {
	margin-bottom: clamp(28px, 5vw, 58px);
	max-width: 980px;
}

.audience-grid,
.service-grid,
.resource-grid,
.experience-grid,
.accordion-grid {
	display: grid;
	gap: 16px;
}

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

.audience-card,
.experience-card,
.info-panel,
.profile-panel,
.logo-story,
.contact-aside {
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(22px, 3vw, 34px);
}

.audience-card {
	min-height: 280px;
}

.audience-card span,
.health-summary span {
	color: var(--moss);
	font-size: 0.74rem;
	font-weight: 840;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.audience-card h3,
.health-summary h3,
.contact-aside h3 {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3vw, 3.1rem);
	line-height: 0.98;
	margin-top: 14px;
}

.audience-card p,
.service-card p,
.resource-card p,
.experience-card p,
.info-panel p,
.profile-panel p,
.logo-story p,
.contact-aside p {
	font-size: 1rem;
	line-height: 1.6;
	margin-top: 16px;
}

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

.service-card,
.resource-card {
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.resource-card:hover {
	border-color: rgba(0, 199, 173, 0.55);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.service-card img,
.resource-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.service-card > div,
.resource-card {
	padding: 20px;
}

.service-card h3,
.resource-card h3,
.experience-card h3,
.info-panel summary {
	font-size: 1.16rem;
	line-height: 1.22;
}

.service-card ul {
	font-size: 0.9rem;
	line-height: 1.45;
	margin-top: 16px;
}

.split-section {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 76px);
	grid-template-columns: minmax(420px, 1fr) minmax(0, 0.8fr);
}

.media-frame {
	aspect-ratio: 1;
	border: 1px solid var(--white-line);
	border-radius: var(--radius);
	overflow: hidden;
}

.media-frame video {
	aspect-ratio: 1;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.compact-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.compact-list article {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid var(--white-line);
	border-radius: var(--radius);
	padding: 18px;
}

.compact-list h3 {
	color: var(--aqua-soft);
	font-size: 1rem;
	margin-bottom: 7px;
}

.compact-list p {
	line-height: 1.55;
}

.sphere-embed {
	background: var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-top: 18px;
	overflow: hidden;
}

.sphere-embed iframe {
	aspect-ratio: 16 / 9;
	border: 0;
	min-height: 420px;
	width: 100%;
}

.vr-feature {
	align-items: stretch;
	background: var(--ink);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--paper);
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
	margin-bottom: 18px;
	padding: clamp(22px, 3vw, 34px);
}

.vr-feature .eyebrow {
	color: var(--aqua-soft);
}

.vr-feature h3 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 3.8rem);
	line-height: 0.96;
	max-width: 12ch;
}

.vr-card-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vr-card-grid article {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--white-line);
	border-radius: var(--radius);
	overflow: hidden;
	padding: 18px;
	transition: transform 180ms ease, border-color 180ms ease;
}

.vr-card-grid article:hover {
	border-color: rgba(0, 199, 173, 0.55);
	transform: translateY(-3px);
}

.vr-card-grid span {
	color: var(--gold-soft);
	display: block;
	font-size: 0.72rem;
	font-weight: 840;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.vr-card-grid img {
	aspect-ratio: 16 / 10;
	border-radius: calc(var(--radius) - 2px);
	margin: 0 0 16px;
	object-fit: cover;
	width: 100%;
}

.vr-card-grid h4 {
	font-size: 1.05rem;
	line-height: 1.2;
	margin: 0;
}

.vr-card-grid p {
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 12px 0 0;
}

.resource-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 18px;
}

.resource-card {
	color: var(--ink);
	padding: 0;
}

.resource-card span,
.resource-card h3,
.resource-card p {
	margin-left: 20px;
	margin-right: 20px;
}

.resource-card span {
	margin-top: 20px;
}

.resource-card p {
	margin-bottom: 20px;
}

.health-section {
	background:
		linear-gradient(120deg, rgba(107, 36, 92, 0.08), transparent 44%),
		linear-gradient(300deg, rgba(0, 199, 173, 0.1), transparent 45%),
		#f3ede1;
}

.about-section {
	background:
		linear-gradient(120deg, rgba(31, 95, 76, 0.1), transparent 42%),
		linear-gradient(300deg, rgba(214, 157, 47, 0.1), transparent 45%),
		var(--paper);
}

.health-lead {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
	margin-bottom: 20px;
}

.health-visual,
.portrait-card {
	border-radius: var(--radius);
	overflow: hidden;
}

.health-visual img,
.portrait-card img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.health-summary {
	background: var(--ink);
	border-radius: var(--radius);
	color: var(--paper);
	padding: clamp(24px, 4vw, 48px);
}

.health-summary h3 {
	max-width: 14ch;
}

.health-summary h3 + p {
	margin-top: 1.6rem;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.tag-row span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--white-line);
	border-radius: 999px;
	padding: 8px 11px;
}

.tag-row span:nth-child(6n+1) {
	color: var(--aqua);
}

.tag-row span:nth-child(6n+2) {
	color: var(--gold-soft);
}

.tag-row span:nth-child(6n+3) {
	color: var(--coral);
}

.tag-row span:nth-child(6n+4) {
	color: var(--paper);
}

.tag-row span:nth-child(6n+5) {
	color: var(--paper-deep);
}

.tag-row span:nth-child(6n+6) {
	color: var(--plum-soft);
}

.accordion-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 20px;
}

.info-panel {
	padding: 0;
}

.info-panel summary {
	cursor: pointer;
	font-weight: 840;
	list-style: none;
	padding: 22px;
}

.info-panel summary::-webkit-details-marker {
	display: none;
}

.info-panel summary::after {
	color: var(--aqua);
	content: "+";
	float: right;
	font-size: 1.2rem;
}

.info-panel[open] summary::after {
	content: "-";
}

.info-panel p {
	border-top: 1px solid var(--line);
	margin: 0;
	padding: 20px 22px 22px;
}

.experience-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 16px;
}

.profile-panel {
	margin-top: 16px;
}

.profile-panel h3 {
	max-width: 13ch;
}

.profile-panel .button {
	margin-top: 24px;
}

.logo-story {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
	margin-top: 22px;
}

.logo-story img {
	background: var(--paper);
	height: 360px;
	justify-self: end;
	object-fit: contain;
	width: auto;
}

.contact-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.contact-form {
	display: grid;
	gap: 14px;
}

.contact-form label {
	display: grid;
	gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	color: var(--ink);
	font: inherit;
	min-height: 50px;
	padding: 12px 14px;
	width: 100%;
}

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

.form-status {
	font-size: 0.9rem;
	min-height: 1.4rem;
}

.form-status[data-state="success"] {
	color: var(--aqua-soft);
}

.form-status[data-state="error"] {
	color: #ffb4c2;
}

.contact-aside {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--white-line);
	color: var(--paper);
}

.contact-aside img {
	background: var(--paper);
	height: 190px;
	object-fit: contain;
	padding: 10px;
	width: auto;
}

.contact-links {
	display: grid;
	gap: 9px;
	margin-top: 22px;
}

.contact-links a {
	border-bottom: 1px solid var(--white-line);
	padding-bottom: 9px;
}

.contact-links a:hover {
	color: var(--aqua-soft);
}

.site-footer {
	align-items: center;
	background: var(--ink);
	color: var(--paper);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	padding: 28px clamp(18px, 4vw, 72px);
}

.site-footer img {
	height: 60px;
	object-fit: contain;
	width: auto;
}

.site-footer p,
.site-footer a {
	font-size: 0.9rem;
	font-weight: 640;
}

.chatbot-fab {
	background: var(--aqua);
	border: 0;
	border-radius: 999px;
	bottom: 20px;
	box-shadow: var(--shadow);
	color: var(--ink);
	cursor: pointer;
	font: 840 0.9rem var(--font-body);
	min-height: 48px;
	padding: 0 18px;
	position: fixed;
	right: 20px;
	z-index: 60;
}

.chatbot-window {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	bottom: 82px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	height: 520px;
	max-height: 72vh;
	max-width: calc(100vw - 36px);
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	right: 20px;
	transform: translateY(18px);
	transition: opacity 180ms ease, transform 180ms ease;
	width: 370px;
	z-index: 61;
}

.chatbot-window.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.chatbot-window header {
	align-items: center;
	background: var(--ink);
	color: var(--paper);
	display: flex;
	font-weight: 840;
	justify-content: space-between;
	padding: 14px;
}

.chatbot-window header button,
.chatbot-input-form button {
	background: var(--aqua);
	border: 0;
	border-radius: 999px;
	color: var(--ink);
	cursor: pointer;
	font: 840 0.8rem var(--font-body);
	padding: 8px 12px;
}

.chatbot-messages {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	overflow-y: auto;
	padding: 14px;
}

.chat-message {
	border-radius: var(--radius);
	font-size: 0.92rem;
	line-height: 1.45;
	max-width: 86%;
	padding: 10px 12px;
}

.bot-message {
	align-self: flex-start;
	background: rgba(16, 18, 15, 0.08);
}

.user-message {
	align-self: flex-end;
	background: var(--ink);
	color: var(--paper);
}

.thinking {
	opacity: 0.7;
}

.chatbot-input-form {
	border-top: 1px solid var(--line);
	display: flex;
	gap: 8px;
	padding: 10px;
}

.chatbot-input-form input {
	border: 1px solid var(--line);
	border-radius: 999px;
	flex: 1;
	font: inherit;
	min-width: 0;
	padding: 10px 12px;
}

.reveal {
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready .reveal {
	opacity: 0;
	transform: translateY(22px);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes slow-spin {
	to {
		rotate: 360deg;
	}
}

@keyframes ticker {
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 1120px) {
	.service-grid,
	.resource-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero,
	.split-section,
	.health-lead,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-portal {
		margin: 0 auto;
		max-width: 680px;
		width: 100%;
	}

}

@media (max-width: 820px) {
	.site-header {
		grid-template-columns: 1fr;
		max-width: 100vw;
		overflow: visible;
		padding-bottom: 12px;
		padding-top: 12px;
		position: sticky;
		width: 100vw;
	}

	.nav-toggle {
		display: none;
	}

	.site-nav {
		display: flex;
		flex-wrap: wrap;
		grid-column: 1 / -1;
		justify-content: center;
		max-width: 100%;
		width: 100%;
	}

	.site-nav a {
		font-size: 0.62rem;
		padding: 7px 6px;
	}

	.site-nav a:last-child {
		display: none;
	}

	.site-nav.is-open {
		display: flex;
		flex-wrap: wrap;
	}

	.audience-grid,
	.service-grid,
	.resource-grid,
	.vr-feature,
	.accordion-grid,
	.experience-grid,
	.logo-story {
		grid-template-columns: 1fr;
	}

	.vr-card-grid {
		grid-template-columns: 1fr;
	}

	.logo-story img {
		justify-self: start;
	}
}

@media (max-width: 680px) {
	.section-pad {
		padding: 58px 16px;
	}

	.site-header {
		gap: 8px;
	}

	.brand-lockup {
		gap: 8px;
		min-width: 0;
	}

	.brand-lockup span {
		font-size: 0.76rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.brand-lockup img {
		height: 44px;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 58px 16px 0;
	}

	.hero h1,
	.section-heading h2,
	.section-copy h2,
	.profile-panel h3,
	.logo-story h3 {
		font-size: clamp(2.35rem, 11vw, 3.25rem);
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.hero h1 {
		max-width: 9.4ch;
	}

	.hero-copy > p:not(.eyebrow) {
		max-width: 31ch;
	}

	.hero-portal {
		aspect-ratio: auto;
		border-radius: var(--radius);
		display: grid;
		gap: 12px;
		padding: 18px;
	}

	.hero-portal::before,
	.portal-ring {
		display: none;
	}

	.portal-logo,
	.practice-tile,
	.science-tile,
	.health-tile {
		position: relative;
		inset: auto;
		transform: none;
		width: 100%;
	}

	.portal-logo {
		height: 190px;
		justify-self: center;
	}

	.practice-tile h2 {
		font-size: 1.15rem;
	}

	.ticker {
		margin-left: -16px;
		margin-right: -16px;
	}

	.hero-ticker {
		left: -16px;
		right: -16px;
	}

	.sphere-embed iframe {
		min-height: 300px;
	}

	.logo-story img,
	.contact-aside img {
		height: 260px;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}
