@import url("fonts.css");

/* Harsher website styles */

:root {
	--harsher-gray: #464446;
	--harsher-navy: #1c2738;
	--harsher-navy-deep: #141b26;
	--harsher-navy-mid: #243044;
	--harsher-turquoise: #29af7f;
	--harsher-turquoise-dark: #229a6f;
	--harsher-lime: #bddf26;
	--harsher-purple: #9060c5;
	--harsher-purple-dark: #7a4fad;
	--harsher-white: #ffffff;
	--header-height: 3.25em;
	--section-padding-y: 6em;
	--section-padding-x: 0;
	--inner-width: 60em;
	--font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

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

html {
	scroll-padding-top: var(--header-height);
}

body {
	background-color: var(--harsher-navy-deep);
	color: rgba(255, 255, 255, 0.88);
	font-family: var(--font-family);
	font-size: 14pt;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.7;
	margin: 0;
	min-width: 320px;
}

body.is-menu-visible {
	overflow: hidden;
}

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

a {
	color: inherit;
	transition: color 0.2s ease;
}

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

h1, h2, h3, h4, h5, h6 {
	color: var(--harsher-white);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0 0 0.5em;
	text-transform: none;
}

p {
	margin: 0 0 1em;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Page */

#page-wrapper {
	opacity: 1;
	transition: opacity 0.5s ease;
}

body.landing #page-wrapper {
	padding-top: 0;
}

body.is-menu-visible #page-wrapper {
	opacity: 0.35;
}

body.is-menu-visible #page-wrapper::before {
	background: rgba(0, 0, 0, 0.25);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10001;
}

/* Header */

#header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

#header .header-floating {
	align-items: center;
	display: none;
	justify-content: space-between;
	left: 0;
	padding: 1.25em 1.5em 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 10001;
}

#header .header-floating > * {
	pointer-events: auto;
}

body.on-banner #header .header-floating {
	display: flex;
}

body.on-banner #header .header-bar {
	display: none;
}

#header .header-bar {
	align-items: center;
	background: rgba(20, 27, 38, 0.92);
	display: flex;
	height: var(--header-height);
	justify-content: space-between;
	padding: 0 1.5em;
	width: 100%;
}

#header .header-floating .menuToggle {
	align-items: center;
	color: var(--harsher-white);
	display: flex;
	font-size: 0.75em;
	font-weight: 500;
	gap: 0.65em;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

#header .header-floating .menuToggle::after {
	background: currentColor;
	box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 2px;
	width: 1.25em;
}

#header nav li.special {
	position: static;
}

#header .header-left {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 1.1em;
	min-width: 0;
}

#header h1,
#header .header-logo-wrap {
	align-items: center;
	display: flex;
	line-height: 0;
	margin: 0;
	transition: opacity 0.25s ease, visibility 0.25s ease, width 0.25s ease;
}

#header h1 a {
	border: 0;
	display: block;
	line-height: 0;
	text-decoration: none;
}

#header .header-logo {
	display: block;
	height: 1.35em;
	max-height: calc(var(--header-height) - 1em);
	max-width: min(12em, 40vw);
	object-fit: contain;
	width: auto;
}

#header .lang-switcher {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 0.35em;
	margin: 0.15em 0;
	padding: 0.45em 0.55em;
}

#header .lang-switcher-btn {
	background: none;
	border: 0;
	border-radius: 0.3em;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	font-size: 0.72em;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.2;
	min-width: 2.85em;
	padding: 0.55em 1.15em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

#header .lang-switcher-btn:hover,
#header .lang-switcher-btn.is-active {
	color: var(--harsher-turquoise);
}

#header .lang-switcher-btn.is-active {
	font-weight: 600;
}

#header .lang-switcher-divider {
	color: rgba(255, 255, 255, 0.22);
	font-size: 0.7em;
	padding: 0 0.2em;
	user-select: none;
}

#header nav {
	flex: 0 0 auto;
	margin-left: auto;
}

#header nav > ul > li > a {
	align-items: center;
	border: 0;
	color: var(--harsher-white);
	display: flex;
	font-size: 0.75em;
	font-weight: 500;
	height: var(--header-height);
	letter-spacing: 0.06em;
	padding: 0 0 0 1.5em;
	text-decoration: none;
	text-transform: uppercase;
}

#header nav > ul > li > a:hover {
	color: var(--harsher-turquoise);
}

#header nav > ul > li > a.menuToggle {
	outline: 0;
}

#header nav > ul > li > a.menuToggle::after {
	background: currentColor;
	box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
	content: "";
	display: inline-block;
	height: 2px;
	margin-left: 0.65em;
	vertical-align: middle;
	width: 1.25em;
}

/* Slide-out menu */

#menu {
	background: var(--harsher-navy-deep);
	color: var(--harsher-white);
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3em 2em;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.5s ease;
	width: 20em;
	z-index: 10002;
}

body.is-menu-visible #menu {
	transform: translateX(0);
}

#menu ul > li {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0.5em 0 0;
	padding: 0.5em 0 0;
}

#menu ul > li:first-child {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

#menu ul > li > a {
	color: inherit;
	display: block;
	font-size: 0.95em;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.35em 0;
	text-decoration: none;
}

#menu ul > li > a:hover {
	color: var(--harsher-turquoise);
}

#menu .close {
	background: none;
	border: 0;
	color: var(--harsher-white);
	cursor: pointer;
	font-size: 2rem;
	height: 3em;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 0.75em;
	top: 0;
	width: 3em;
}

#menu .close::before {
	content: "×";
}

/* Banner */

#banner {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: center;
	min-height: 35em;
	overflow: hidden;
	position: relative;
	text-align: center;
}

#banner .banner-video {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

#banner .banner-overlay {
	background: rgba(20, 27, 38, 0.55);
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

#banner .banner-content {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 2;
}

#banner .banner-logo {
	aspect-ratio: 1914 / 961;
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.5s ease;
	width: min(80vw, 42em);
}

#banner .banner-logo.is-visible {
	opacity: 1;
}

#banner .more {
	bottom: 0;
	color: var(--harsher-white);
	font-size: 0.8em;
	height: 8.5em;
	left: 50%;
	letter-spacing: 0.225em;
	margin-left: -8.5em;
	opacity: 1;
	position: absolute;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateY(0);
	transition: transform 0.75s ease 1.2s, opacity 0.75s ease 1.2s, color 0.2s ease;
	width: 16em;
	z-index: 2;
}

#banner .more:hover {
	color: rgba(255, 255, 255, 0.75);
}

#banner .more::after {
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	bottom: 4em;
	content: "";
	display: block;
	height: 0.85em;
	left: 50%;
	margin-left: -0.45em;
	position: absolute;
	transform: rotate(45deg);
	width: 0.85em;
}

#banner::after {
	background: var(--harsher-navy-deep);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.8s ease 0.2s;
	width: 100%;
	z-index: 3;
}

body.is-preload #banner .more {
	opacity: 0;
	transform: translateY(8.5em);
}

body.is-preload #banner::after {
	opacity: 1;
}

/* Sections */

.wrapper {
	padding: var(--section-padding-y) var(--section-padding-x) 4em;
}

.wrapper > .inner {
	margin: 0 auto;
	max-width: var(--inner-width);
	width: 90%;
}

.wrapper.alt {
	padding: 0;
}

.wrapper.style1 {
	background: var(--harsher-navy);
	color: rgba(255, 255, 255, 0.88);
}

.wrapper.style2 {
	background: var(--harsher-navy-deep);
}

.wrapper.style3 {
	background: var(--harsher-navy-mid);
	color: rgba(255, 255, 255, 0.88);
}

.wrapper.special {
	text-align: center;
}

body.landing .wrapper:not(.alt) {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 50vh;
}

header.major {
	margin: 0 0 3em;
}

header.major h2 {
	font-size: 2.75em;
	line-height: 1.15;
	margin: 0 auto 0.6em;
	max-width: 16em;
}

header.major h2::after {
	background: var(--harsher-turquoise);
	content: "";
	display: block;
	height: 3px;
	margin: 0.85em auto 0;
	width: 3em;
}

#one header.major h2::after,
#team header.major h2::after {
	background: var(--harsher-turquoise);
}

#contact header.major h2::after {
	background: var(--harsher-purple);
}

header.major p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1em;
	line-height: 1.65;
	margin: 0 auto;
	max-width: min(52em, 100%);
}

/* Promo video */

.promo-video-wrap {
	background: #000;
	margin-top: 2em;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.promo-video-aspect {
	display: block;
	height: 0;
	padding-bottom: 50.208333%;
	width: 100%;
}

.promo-video-trigger {
	appearance: none;
	background: #000;
	border: 0;
	bottom: 0;
	cursor: pointer;
	display: block;
	height: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.promo-video-trigger img,
.promo-video-wrap .promo-video {
	bottom: 0;
	display: block;
	height: 100%;
	left: 0;
	margin: 0;
	object-fit: fill;
	object-position: center;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.promo-video-wrap .promo-video {
	background: #000;
}

.promo-video-wrap:not(.is-active) .promo-video {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.promo-video-wrap.is-active .promo-video-trigger {
	display: none;
}

.promo-video-play {
	align-items: center;
	background: rgba(0, 0, 0, 0.55);
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 0.25em 1.25em rgba(0, 0, 0, 0.35);
	color: var(--harsher-white);
	display: flex;
	height: 4.5rem;
	justify-content: center;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, background-color 0.2s ease;
	width: 4.5rem;
	z-index: 2;
}

.promo-video-play-icon {
	display: block;
	height: 2rem;
	margin-left: 0.15rem;
	width: 2rem;
}

.promo-video-trigger:hover .promo-video-play,
.promo-video-trigger:focus-visible .promo-video-play {
	background: rgba(0, 0, 0, 0.72);
	transform: translate(-50%, -50%) scale(1.06);
}

/* Spotlight */

.spotlight {
	align-items: center;
	display: flex;
	min-height: 50vh;
}

.spotlight:nth-child(1) {
	background: rgba(255, 255, 255, 0.02);
}

.spotlight:nth-child(2) {
	background: rgba(0, 0, 0, 0.12);
}

.spotlight .image {
	align-self: stretch;
	flex: 0 0 40%;
	overflow: hidden;
}

.spotlight .image img,
.spotlight .image video {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.spotlight .image video.spotlight-video--radar {
	object-position: 35% center;
}

.spotlight .image video.spotlight-video--lidar {
	object-position: 25% center;
}

.spotlight:nth-child(2n) {
	flex-direction: row-reverse;
}

.spotlight .content {
	flex: 1 1 60%;
	max-width: 48em;
	padding: 2em 4em 0.1em;
}

.spotlight .content h2 {
	font-size: 2em;
	line-height: 1.2;
	margin-bottom: 0.75em;
}

.spotlight .content h2::after {
	background: var(--harsher-lime);
	content: "";
	display: block;
	height: 2px;
	margin: 0.5em auto 0;
	width: 2.5em;
}

.spotlight .content p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05em;
	line-height: 1.7;
}

.spotlight .content strong,
.spotlight .content b {
	color: var(--harsher-lime);
	font-weight: 700;
}

/* Contact form */

.contact-form {
	margin: 0 auto;
	max-width: 36em;
	position: relative;
	text-align: left;
}

.form-grid {
	display: grid;
	gap: 1.25em 1.5em;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
	min-width: 0;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field--center {
	text-align: center;
}

.contact-form input.contact-form-honeypot {
	border: 0;
	height: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	width: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	white-space: nowrap;
}

.contact-form-turnstile {
	display: flex;
	justify-content: center;
	margin: 0 0 1em;
	min-height: 65px;
}

.contact-form-status {
	margin: 0 0 1em;
	min-height: 1.65em;
}

.contact-form-status.is-success {
	color: var(--harsher-white);
}

.contact-form-status.is-error {
	color: #ffd4d4;
}

.contact-form input[type="text"]:not(.contact-form-honeypot),
.contact-form input[type="email"],
.contact-form textarea {
	appearance: none;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	box-sizing: border-box;
	color: var(--harsher-white);
	display: block;
	line-height: 1.4;
	outline: 0;
	padding: 0 1em;
	width: 100%;
}

.contact-form input[type="text"]:not(.contact-form-honeypot),
.contact-form input[type="email"] {
	height: 2.75em;
}

.contact-form textarea {
	min-height: 9em;
	padding: 0.85em 1em;
	resize: vertical;
}

.contact-form input[type="text"]:not(.contact-form-honeypot):focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
	border-color: var(--harsher-purple);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.actions {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.actions li {
	padding: 0;
}

input[type="submit"].primary {
	appearance: none;
	background: var(--harsher-purple);
	border: 0;
	border-radius: 6px;
	color: var(--harsher-white);
	cursor: pointer;
	font-weight: 600;
	height: 2.75em;
	padding: 0 2.25em;
	transition: background-color 0.2s ease;
}

input[type="submit"].primary:hover {
	background: var(--harsher-purple-dark);
}

input[type="submit"].primary:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

/* Team */

#team .inner {
	max-width: 72em;
}

.team-group-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.35em;
	font-weight: 600;
	margin: 3em 0 0.5em;
	text-align: center;
}

.team-group-title:first-of-type {
	margin-top: 0;
}

.team-group-title::after {
	background: var(--harsher-turquoise);
	content: "";
	display: block;
	height: 2px;
	margin: 0.65em auto 0;
	width: 2.5em;
}

.team-group-subtitle {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.95em;
	line-height: 1.55;
	margin: 0.75em auto 1.75em;
	max-width: 36em;
	text-align: center;
}

.team-grid {
	display: grid;
	gap: 2.5em 2em;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 56em;
}

.team-grid--engineers,
.team-grid--advisors {
	max-width: 64em;
}

.team-member {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	margin: 0;
	padding: 2em 1.75em 1.75em;
	text-align: center;
	transition: border-color 0.2s ease;
}

.team-member:hover {
	border-color: rgba(41, 175, 127, 0.35);
}

.team-member-photo {
	border: 3px solid rgba(41, 175, 127, 0.35);
	border-radius: 50%;
	display: block;
	height: 9em;
	margin: 0 auto;
	object-fit: cover;
	object-position: center top;
	width: 9em;
}

.team-member h4 {
	font-size: 1.2em;
	font-weight: 600;
	margin: 1em 0 0.25em;
}

.team-member-role {
	color: var(--harsher-turquoise);
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 0 0 0.85em;
	text-transform: uppercase;
}

.team-member p:last-child {
	font-size: 0.95em;
	line-height: 1.65;
	margin: 0;
	text-align: left;
}

.team-grid--engineers .team-member p:last-child {
	font-size: 0.9em;
}

/* Footer */

#footer {
	background: var(--harsher-navy-deep);
	padding: 6em 0 4em;
	position: relative;
	text-align: center;
}

#footer::before {
	background: linear-gradient(90deg, var(--harsher-turquoise), var(--harsher-lime), var(--harsher-purple));
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

#footer .copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85em;
}

#footer .copyright li {
	display: inline-block;
}

#footer .copyright a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

#footer .copyright a:hover {
	color: var(--harsher-turquoise);
}

#footer .footer-separator {
	margin: 0 0.65em;
	opacity: 0.45;
}

/* Legal pages */

body.legal-page {
	background-color: var(--harsher-navy-deep);
}

body.legal-page #page-wrapper {
	padding-top: var(--header-height);
}

.legal-main {
	padding: 4em 0 6em;
}

.legal-inner {
	margin: 0 auto;
	max-width: 42em;
	padding: 0 2em;
	width: 100%;
}

.legal-content h1 {
	font-size: 2.25em;
	margin-bottom: 0.35em;
}

.legal-content .legal-subtitle {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.95em;
	margin-bottom: 2em;
}

.legal-content h2 {
	color: var(--harsher-turquoise);
	font-size: 1.15em;
	margin: 2em 0 0.65em;
}

.legal-content ul {
	list-style: none;
	margin: 0 0 1.25em;
	padding: 0;
}

.legal-content ul li {
	margin-bottom: 0.5em;
	overflow-wrap: break-word;
	padding-left: 1.15em;
	position: relative;
}

.legal-content ul li::before {
	color: rgba(255, 255, 255, 0.65);
	content: "\2022";
	left: 0;
	line-height: inherit;
	position: absolute;
}

.legal-content a {
	color: var(--harsher-turquoise);
	overflow-wrap: anywhere;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.legal-content a:hover {
	color: var(--harsher-lime);
}

.blog-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-list-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 2em;
	padding-bottom: 2em;
}

.blog-list-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.blog-list-item h2 {
	color: #fff;
	font-size: 1.35em;
	margin: 0 0 0.5em;
}

.blog-list-item h2 a {
	color: inherit;
	text-decoration: none;
}

.blog-list-item h2 a:hover {
	color: var(--harsher-turquoise);
}

.blog-list-date {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.85em;
	margin-bottom: 0.75em;
}

.blog-list-excerpt {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.75em;
}

.blog-back-link {
	margin-bottom: 1.5em;
}

.blog-contact {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 3em;
	padding-top: 2.5em;
}

.blog-cta {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05em;
	line-height: 1.6;
	margin: 0 0 2em;
	text-align: center;
}

.blog-contact-title {
	color: var(--harsher-turquoise);
	font-size: 1.5em;
	margin: 0 0 1.5em;
	text-align: center;
}

.legal-content img {
	border-radius: 0.25em;
	cursor: zoom-in;
	display: block;
	height: auto;
	margin: 1.5em 0;
	max-width: 100%;
	width: 100%;
}

.image-lightbox {
	align-items: center;
	background: rgba(6, 14, 28, 0.92);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 2em;
	position: fixed;
	z-index: 10000;
}

.image-lightbox[hidden] {
	display: none;
}

.image-lightbox-img {
	border-radius: 0.25em;
	box-shadow: 0 1.5em 4em rgba(0, 0, 0, 0.45);
	max-height: 92vh;
	max-width: min(96vw, 72em);
	object-fit: contain;
	width: auto;
}

.image-lightbox-close {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 2.5em;
	line-height: 1;
	padding: 0.15em 0.35em;
	position: fixed;
	right: 0.75em;
	top: 0.5em;
	z-index: 10001;
}

.image-lightbox-close:hover {
	color: var(--harsher-turquoise);
}

body.image-lightbox-open {
	overflow: hidden;
}

.legal-table-wrap {
	margin: 0 0 1.25em;
	overflow-x: auto;
}

.legal-table {
	border-collapse: collapse;
	font-size: 0.9em;
	width: 100%;
}

.legal-table th,
.legal-table td {
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.65em 0.85em;
	text-align: left;
	vertical-align: top;
}

.legal-table th {
	background: rgba(255, 255, 255, 0.04);
	color: var(--harsher-white);
	font-weight: 600;
}

.legal-table td:first-child {
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
	white-space: nowrap;
}

/* Responsive */

@media screen and (max-width: 1280px) {
	body {
		font-size: 13pt;
	}

	.wrapper > .inner {
		width: 90%;
	}

	.spotlight .image {
		flex-basis: 45%;
	}

	.spotlight .content {
		flex-basis: 55%;
	}
}

@media screen and (max-width: 980px) {
	.wrapper {
		padding: 4em 0 2em;
	}

	body.landing .wrapper:not(.alt) {
		display: block;
		min-height: 0;
	}

	body.landing .wrapper:not(.alt) > .inner {
		width: 100%;
	}

	.promo-video-wrap {
		margin-top: 1.75em;
	}

	header.major h2 {
		font-size: 2.25em;
	}

	.spotlight,
	.spotlight:nth-child(2n) {
		flex-direction: column;
		min-height: 0;
	}

	.spotlight .image {
		flex-basis: auto;
		width: 100%;
	}

	.spotlight .image img,
	.spotlight .image video {
		aspect-ratio: 16 / 9;
		height: auto;
		max-height: 45vh;
		width: 100%;
	}

	.spotlight .content {
		flex-basis: auto;
		max-width: none;
		padding: 2em 2em 2.5em;
		text-align: center;
		width: 100%;
	}

	.spotlight .content h2 {
		font-size: 1.75em;
	}

	#footer {
		padding: 4em 0 2em;
	}
}

@media screen and (max-width: 736px) {
	body {
		font-size: 12pt;
	}

	#header .header-bar {
		padding: 0 1em;
	}

	#header .header-floating {
		padding: 1em 1em 0;
	}

	#header nav > ul > li > a {
		padding-left: 1em;
	}

	#header .header-logo {
		height: 1.2em;
		max-width: min(10em, 34vw);
	}

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

	#menu {
		padding: 3em 1.5em;
	}

	#banner {
		height: auto;
		min-height: 0;
		padding: 7em 3em 5em;
	}

	#banner .more {
		display: none;
	}

	header.major h2 {
		font-size: 1.85em;
	}

	.spotlight .content {
		padding: 1.75em 1.5em 2em;
	}

	.spotlight .content h2 {
		font-size: 1.5em;
	}

	#header .lang-switcher {
		margin: 0.2em 0;
		padding: 0.38em 0.45em;
	}

	#header .lang-switcher-btn {
		font-size: 0.68em;
		min-width: 2.6em;
		padding: 0.48em 0.9em;
	}

	#header nav > ul > li > a.menuToggle span,
	#header .header-floating .menuToggle span {
		display: none;
	}

	.team-grid,
	.team-grid--advisors {
		grid-template-columns: 1fr;
		max-width: 20em;
	}

	.team-group-title {
		font-size: 1.2em;
	}

	#footer {
		padding: 3em 0 1em;
	}

	#footer .copyright {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.65em;
	}

	#footer .copyright li {
		display: block;
	}

	#footer .footer-separator {
		display: none;
	}

	.legal-main {
		padding: 2.5em 0 4em;
	}

	.legal-inner {
		padding: 0 1.25em;
	}

	.legal-content h1 {
		font-size: 1.85em;
	}

	.legal-table td:first-child {
		white-space: normal;
	}
}

