@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');

/*
 Theme Name: QuantrixFlow Terminal
 Theme URI: https://quantrixflow.io/
 Description: Standalone theme for QuantrixFlow.
 Author: QuantrixFlow
 Author URI: https://quantrixflow.io/
 Version: 1.7.0
 Text Domain: quantrixflow
*/

:root {
	--t8-bg: #09071b;
	--t8-bg-soft: #121127;
	--t8-panel: #1a1d32;
	--t8-panel-2: #20233a;
	--t8-text: #ffffff;
	--t8-text-soft: #9b9fc1;
	--t8-line: rgba(255, 255, 255, 0.08);
	--t8-cyan: #2cbca5;
	--t8-cyan-rgb: 44, 188, 165;
	--t8-blue: #50add7;
	--t8-blue-rgb: 80, 173, 215;
	--t8-purple: #c742f7;
	--t8-purple-rgb: 199, 66, 247;
	--t8-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
	--t8-radius-xl: 20px;
	--t8-radius-lg: 16px;
	--t8-radius-md: 12px;
	--t8-radius-sm: 8px;
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(circle at 16% 18%, rgba(38, 214, 201, 0.1), transparent 18%),
		radial-gradient(circle at 78% 24%, rgba(191, 70, 255, 0.12), transparent 22%),
		linear-gradient(180deg, #0a071c 0%, #0a091c 100%);
	color: var(--t8-text);
	font-family: "Noto Sans", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	line-height: 1.6;
	min-height: 100vh;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 120px 120px;
	opacity: 0.12;
	pointer-events: none;
}

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

body,
h1, h2, h3, h4, h5, h6,
p, a, span, strong, em, small, label,
li, dt, dd, blockquote, figcaption,
button, input, select, textarea,
.t8-site-branding a,
.t8-nav ul li a,
.t8-button,
.t8-kicker,
.t8-hero-v2__lead,
.t8-trust-row,
.t8-metric-card,
.t8-split-section__copy,
.t8-plugin-chip,
.t8-plugin-window,
.t8-plugin-note,
.t8-plugin-notifications,
.t8-plugin-ticker,
.t8-plugin-fade-list {
	font-family: "Noto Sans", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

a {
	color: var(--t8-text);
	text-decoration: none;
}

a:hover {
	color: var(--t8-cyan);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--t8-text);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.045em;
}

p {
	line-height: 1.75;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

ul, ol {
	padding-left: 1.2rem;
}

.t8-container {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.t8-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.t8-site-content {
	flex: 1;
}

.t8-site-content > :not(.t8-home) {
	width: min(1280px, calc(100% - 48px));
	margin: 48px auto 48px;
}

.t8-site-content > .t8-home {
	width: 100%;
}

.t8-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #0a071c;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.t8-header::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 64px;
	background: linear-gradient(to bottom, #0a071c 0%, transparent 100%);
	pointer-events: none;
	z-index: 99;
}

.t8-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	padding-top: 20px;
	padding-bottom: 20px;
	gap: 28px;
}

.t8-site-branding a {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	display: flex;
	align-items: center;
}

.t8-logo img {
	display: block;
	height: 72px;
	width: auto;
}

.t8-nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
}

.t8-nav ul li {
	position: relative;
}

.t8-nav ul li a {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	font-size: 0.96rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	border-radius: var(--t8-radius-sm) !important;
	border: 0;
	background: transparent;
	box-shadow: none;
	transition: color 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.t8-nav ul li a:hover,
.t8-nav ul li.current-menu-item > a,
.t8-nav ul li.current_page_item > a {
	background: transparent;
	color: var(--t8-text);
	box-shadow: none;
}

/* CTA nav item — "Get Full Access" */
.t8-nav ul li.t8-nav-cta > a {
	color: var(--t8-cyan);
	border: 1px solid rgba(var(--t8-cyan-rgb), 0.35);
	border-radius: var(--t8-radius-sm) !important;
	padding: 8px 16px;
	margin-left: 8px;
	transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.t8-nav ul li.t8-nav-cta > a:hover {
	color: #07151a;
	background: var(--t8-cyan);
	border-color: var(--t8-cyan);
}

.t8-nav ul li ul {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	padding: 8px;
	border-radius: var(--t8-radius-lg) !important;
	background: var(--t8-panel);
	border: 1px solid var(--t8-line);
	box-shadow: var(--t8-shadow);
}

.t8-nav ul li:hover > ul {
	display: block;
}

.t8-nav ul li ul li a {
	display: block;
	width: 100%;
	border-radius: var(--t8-radius-md) !important;
}

.t8-menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--t8-line);
	border-radius: var(--t8-radius-md) !important;
	color: var(--t8-text);
	padding: 10px 16px;
	cursor: pointer;
}

.t8-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(9, 7, 27, 0.95);
	margin-top: 80px;
}

.t8-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding: 64px 0 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.t8-footer__logo {
	display: block;
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}

.t8-footer__brand p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	margin: 0 0 8px;
	max-width: 26ch;
}

.t8-footer__partner {
	font-size: 0.85rem !important;
	color: rgba(255, 255, 255, 0.35) !important;
}

.t8-footer__partner strong {
	color: var(--t8-cyan);
	font-weight: 600;
}

.t8-footer__col h4 {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 18px;
}

.t8-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.t8-footer__col ul li a {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.15s ease;
}

.t8-footer__col ul li a:hover {
	color: var(--t8-cyan);
}

.t8-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.28);
}

.t8-footer__disclaimer {
	font-style: italic;
}

@media (max-width: 900px) {
	.t8-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.t8-footer__brand {
		grid-column: 1 / -1;
	}
}

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

	.t8-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

.t8-article {
	padding: 20px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.t8-entry-title {
	font-size: clamp(2.1rem, 5vw, 3.6rem);
	margin-bottom: 22px;
}

.t8-article .entry-header {
	margin-bottom: 24px;
}

.t8-article .entry-content {
	background: transparent;
}

.t8-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 30px;
	border-radius: var(--t8-radius-md) !important;
	font-size: 0.98rem;
	font-weight: 600;
	transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

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

.t8-button--primary {
	background: linear-gradient(135deg, var(--t8-blue), var(--t8-cyan));
	color: #07151a;
}

.t8-button--primary:hover {
	color: #07151a;
}

.t8-button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: transparent;
	color: var(--t8-text);
}

.t8-home {
	padding-bottom: 40px;
}

.t8-kicker {
	margin-bottom: 18px;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--t8-cyan);
}

.t8-hero-v2 {
	position: relative;
	padding: 44px 0 28px;
	overflow: hidden;
}

.t8-hero-v2__ambient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 70% 24%, rgba(191, 70, 255, 0.08), transparent 20%),
		radial-gradient(circle at 81% 72%, rgba(38, 214, 201, 0.08), transparent 16%);
	pointer-events: none;
}

.t8-hero-v2__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
	align-items: center;
	gap: 60px;
	padding: 64px 0 24px;
}

.t8-hero-v2__copy {
	max-width: 820px;
}

.t8-hero-v2__copy h1 {
	font-size: clamp(2.05rem, 2.95vw, 2.95rem);
	line-height: 1.08;
	letter-spacing: -0.05em;
	margin-bottom: 20px;
	max-width: 16ch;
}

.t8-hero-v2__lead {
	max-width: 36rem;
	font-size: 1.12rem;
	color: var(--t8-text-soft);
	margin-bottom: 30px;
	font-weight: 400;
}

.t8-hero-v2__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 44px;
}

.t8-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.98rem;
	font-weight: 600;
}

.t8-partner-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 6px;
	opacity: 0.9;
}

.t8-partner-row__label {
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.46);
	white-space: nowrap;
}

.t8-partner-row__logo {
	width: min(100%, 270px);
	height: auto;
	opacity: 0.72;
}

.t8-hero-v2__visual {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: stretch;
}

.t8-globe-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 560px;
	width: 100%;
}

.t8-globe-shell__image {
	position: static;
	width: 100%;
	max-width: 720px;
	height: 100%;
	max-height: 560px;
	object-fit: contain;
	filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.32));
}

.t8-metric-band {
	padding: 16px 0 52px;
}

.t8-metric-band__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.t8-metric-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	text-align: left;
}

.t8-metric-card__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.12);
	border-radius: 50%;
	color: var(--t8-cyan);
}

.t8-metric-card__icon svg {
	width: 15px;
	height: 15px;
}

.t8-metric-card strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.2;
	white-space: nowrap;
}

.t8-metric-card span {
	font-size: 0.9rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.86);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.t8-split-section {
	padding: 62px 0;
}

.t8-split-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 48px;
}

.t8-split-section--reverse .t8-split-section__grid {
	grid-template-columns: minmax(420px, 1.1fr) minmax(0, 1fr);
}

.t8-split-section__visual {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.t8-split-section__copy h2 {
	max-width: 12ch;
	font-size: clamp(1.9rem, 2.7vw, 2.7rem);
	line-height: 1.08;
	margin-bottom: 22px;
}

.t8-split-section__copy p {
	max-width: 38rem;
	font-size: 1rem;
	color: var(--t8-text-soft);
	font-weight: 400;
}

.t8-stat-pair {
	display: flex;
	flex-wrap: wrap;
	gap: 54px;
	margin-top: 40px;
}

.t8-split-section__actions {
	margin-top: 30px;
}

.t8-stat-pair strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(2.45rem, 3.5vw, 3.2rem);
	line-height: 1;
	color: var(--t8-cyan);
}

.t8-stat-pair span {
	color: var(--t8-text);
	font-size: 0.98rem;
	font-weight: 500;
}

.is-up {
	color: var(--t8-cyan);
}

.is-flat {
	color: var(--t8-blue);
}

.is-down {
	color: var(--t8-blue);
}

.t8-bullet-list {
	list-style: none;
	padding: 0;
	margin: 34px 0 0;
	display: grid;
	gap: 16px;
}

.t8-bullet-list li {
	position: relative;
	padding-left: 24px;
	font-size: 1.1rem;
	color: var(--t8-text);
}

.t8-bullet-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--t8-cyan);
}

.t8-plugin-scene {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 460px;
	width: 100%;
	max-width: none;
}

.t8-plugin-illustration {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 620px;
	max-height: 500px;
	object-fit: contain;
	object-position: right center;
	opacity: 0.96;
	filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.24));
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--t8-line);
	border-radius: var(--t8-radius-sm) !important;
	color: var(--t8-text);
	padding: 10px 14px;

}

button,
input[type="button"],
input[type="submit"] {
	background: linear-gradient(135deg, var(--t8-blue), var(--t8-cyan));
	color: #07151a;
	border: 0;
	border-radius: var(--t8-radius-md) !important;
	font-weight: 600;
	padding: 12px 22px;
	cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
	opacity: 0.92;
}

/* ---------------------------------------------------------------------------
   Product sections (homepage)
--------------------------------------------------------------------------- */

.t8-product-section {
	padding: 72px 0;
}

.t8-product-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
}

.t8-product-section__visual {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.t8-product-section__visual img,
.t8-product-section__visual svg {
	width: 100%;
	height: 100%;
	min-height: 360px;
	display: block;
}

.t8-product-section__content h2 {
	font-size: clamp(1.7rem, 2.5vw, 2.4rem);
	line-height: 1.1;
	margin: 8px 0 28px;
}

.t8-product-section__action {
	margin-top: 32px;
}

/* Feature list */

.t8-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t8-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
}

.t8-feature-item__icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.12);
	border: 1px solid rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.25);
	border-radius: 10px;
	color: var(--t8-cyan);
}

.t8-feature-item__icon svg {
	width: 18px;
	height: 18px;
}

.t8-feature-item strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 4px;
}

.t8-feature-item p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.55;
}

@media (max-width: 1120px) {
	.t8-hero-v2__grid,
	.t8-split-section__grid,
	.t8-split-section--reverse .t8-split-section__grid,
	.t8-product-section__grid {
		grid-template-columns: 1fr;
	}

	/* Mobile: always text first, image second regardless of desktop order */
	.t8-product-section__visual,
	.t8-product-section--reverse .t8-product-section__visual {
		order: 2;
	}

	.t8-product-section__content,
	.t8-product-section--reverse .t8-product-section__content {
		order: 1;
	}

	.t8-hero-v2__visual {
		min-height: auto;
	}

	.t8-globe-shell {
		min-height: auto;
	}

	.t8-globe-shell__image {
		max-height: 520px;
	}
}

@media (max-width: 600px) {
	.t8-metric-band__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.t8-container {
		width: min(100% - 28px, 1280px);
	}

	.t8-site-content > :not(.t8-home) {
		width: min(100% - 28px, 1280px);
		margin: 22px auto 36px;
	}

	.t8-header__inner {
		flex-wrap: wrap;
		padding: 14px 0;
		justify-content: center;
	}

	.t8-site-branding {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.t8-logo img {
		height: 40px;
	}

	.t8-product-section__visual {
		display: none;
	}

	.t8-menu-toggle {
		display: inline-flex;
	}

	.t8-nav {
		display: none;
		width: 100%;
	}

	.t8-nav.is-open {
		display: block;
	}

	.t8-nav ul {
		flex-direction: column;
		align-items: stretch;
		padding-top: 8px;
	}

	.t8-nav ul li a {
		width: 100%;
	}

	.t8-nav ul li ul {
		position: static;
		display: block;
		box-shadow: none;
		margin-top: 8px;
	}

	.t8-hero-v2__grid {
		padding-top: 34px;
	}

	.t8-hero-v2__copy h1,
	.t8-split-section__copy h2 {
		font-size: clamp(1.9rem, 7vw, 2.5rem);
	}

	.t8-hero-v2__lead,
	.t8-split-section__copy p {
		font-size: 1rem;
	}

	.t8-partner-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.t8-partner-row__logo {
		width: min(100%, 230px);
	}

	.t8-globe-shell {
		min-height: auto;
		display: flex;
	}

	.t8-plugin-scene {
		min-height: auto;
	}

	.t8-plugin-illustration,
	.t8-globe-shell__image {
		height: auto;
	}

	/* Product sections — tighter on mobile */
	.t8-product-section {
		padding: 36px 0;
	}

	.t8-product-section__grid {
		gap: 24px;
	}

	.t8-product-section__visual img {
		max-height: 220px;
		width: 100%;
		object-fit: contain;
	}

	.t8-product-section__content h2 {
		font-size: 1.5rem;
		margin: 6px 0 18px;
	}

	.t8-feature-list {
		gap: 12px;
	}

	.t8-product-section__action {
		margin-top: 20px;
	}

	/* Hero tighter */
	.t8-hero-v2 {
		padding: 20px 0 24px;
	}

	/* Metric band tighter */
	.t8-metric-band {
		padding: 16px 0;
	}

	.t8-metric-card {
		padding: 14px 16px;
	}
}

/* ---------------------------------------------------------------------------
   Legal tabs
--------------------------------------------------------------------------- */

.t8-legal-wrap {
	max-width: 820px;
}

.t8-legal-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.t8-legal-tab {
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
	font-family: inherit;
}

.t8-legal-tab:hover {
	border-color: rgba(var(--t8-cyan-rgb), 0.3);
	color: rgba(255, 255, 255, 0.8);
}

.t8-legal-tab.is-active {
	border-color: rgba(var(--t8-cyan-rgb), 0.5);
	background: rgba(var(--t8-cyan-rgb), 0.1);
	color: var(--t8-cyan);
}

.t8-legal-panel {
	display: none;
}

.t8-legal-panel.is-active {
	display: block;
}

/* ---------------------------------------------------------------------------
   Static pages — shared hero
--------------------------------------------------------------------------- */

.t8-static-hero {
	padding: 80px 0 48px;
}

.t8-static-hero__lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 12px;
	max-width: 44ch;
}

/* ---------------------------------------------------------------------------
   About page
--------------------------------------------------------------------------- */

.t8-about-hero {
	padding: 80px 0 48px;
}

.t8-about-hero__lead {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 52ch;
	line-height: 1.7;
	margin-top: 16px;
}

.t8-about-mission {
	padding: 48px 0 64px;
}

.t8-about-mission__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.t8-about-mission__grid h2 {
	margin-bottom: 20px;
}

.t8-about-mission__grid p {
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.75;
	margin-bottom: 14px;
}

.t8-about-mission__values {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t8-value-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
}

.t8-value-card__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.12);
	border: 1px solid rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.22);
	border-radius: 9px;
	color: var(--t8-cyan);
}

.t8-value-card__icon svg {
	width: 17px;
	height: 17px;
}

.t8-value-card strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 4px;
}

.t8-value-card p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.55;
}

/* Team */

.t8-about-team {
	padding: 48px 0 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.t8-about-team h2 {
	margin-bottom: 6px;
}

.t8-about-team__sub {
	color: rgba(255, 255, 255, 0.4);
	font-size: 1rem;
	margin-bottom: 40px;
}

.t8-team-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.t8-team-card {
	display: flex;
	gap: 24px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	align-items: flex-start;
}

.t8-team-card__avatar {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
}

.t8-team-card__avatar svg {
	width: 72px;
	height: 72px;
}

.t8-team-card__info strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 3px;
}

.t8-team-card__info span {
	display: block;
	font-size: 0.82rem;
	color: var(--t8-cyan);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.t8-team-card__info p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.65;
}

/* CTA */

.t8-about-cta {
	padding: 72px 0 96px;
	text-align: center;
}

.t8-about-cta h2 {
	margin-bottom: 10px;
}

.t8-about-cta p {
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 28px;
}

/* ---------------------------------------------------------------------------
   Contact page
--------------------------------------------------------------------------- */

.t8-contact-body {
	padding: 0 0 96px;
}

.t8-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 64px;
	align-items: start;
}

.t8-contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.t8-contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.t8-contact-item__icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--t8-cyan-rgb), 0.1);
	border: 1px solid rgba(var(--t8-cyan-rgb, 44, 188, 165), 0.2);
	border-radius: 10px;
	color: var(--t8-cyan);
}

.t8-contact-item__icon svg {
	width: 17px;
	height: 17px;
}

.t8-contact-item strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 3px;
}

.t8-contact-item p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.55;
}

/* Form */

.t8-contact-form-wrap {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 32px;
}

.t8-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.t8-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.t8-form-group label {
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255, 255, 255, 0.4);
}

.t8-form-group input,
.t8-form-group textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 12px 16px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s ease;
	width: 100%;
}

.t8-form-group input:focus,
.t8-form-group textarea:focus {
	border-color: rgba(var(--t8-cyan-rgb), 0.5);
}

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

/* ---------------------------------------------------------------------------
   FAQ page
--------------------------------------------------------------------------- */

.t8-faq-body {
	padding: 0 0 96px;
}

.t8-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 800px;
}

.t8-faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	overflow: hidden;
}

.t8-faq-item[open] {
	border-color: rgba(var(--t8-cyan-rgb), 0.25);
}

.t8-faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-size: 0.98rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.t8-faq-item__q::-webkit-details-marker { display: none; }

.t8-faq-item__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.3);
	transition: transform 0.2s ease;
}

.t8-faq-item__icon svg {
	width: 18px;
	height: 18px;
}

.t8-faq-item[open] .t8-faq-item__icon {
	transform: rotate(180deg);
	color: var(--t8-cyan);
}

.t8-faq-item__a {
	padding: 0 22px 18px;
}

.t8-faq-item__a p {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
}

/* ---------------------------------------------------------------------------
   Legal pages (privacy, terms, disclaimer)
--------------------------------------------------------------------------- */

.t8-legal-body {
	padding: 0 0 96px;
}

.t8-legal-content {
	max-width: 780px;
}

.t8-legal-content h2 {
	font-size: 1.1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
	margin: 36px 0 10px;
}

.t8-legal-content h2:first-child {
	margin-top: 0;
}

.t8-legal-content p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.75;
	margin: 0 0 10px;
}

.t8-legal-content a {
	color: var(--t8-cyan);
	text-decoration: none;
}

.t8-legal-content a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   Responsive — static pages
--------------------------------------------------------------------------- */

@media (max-width: 860px) {
	.t8-about-mission__grid,
	.t8-team-grid,
	.t8-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.t8-team-card {
		flex-direction: column;
	}
}

/* ----------------------------------------------------------------------------
   Access / Waitlist page
---------------------------------------------------------------------------- */

.t8-access-hero {
	padding: 100px 0 48px;
	text-align: center;
}

.t8-access-hero__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--t8-cyan);
	border: 1px solid rgba(var(--t8-cyan-rgb), 0.3);
	border-radius: 100px;
	padding: 5px 14px;
	margin-bottom: 20px;
}

.t8-access-hero__title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.08;
	margin: 0 0 20px;
}

.t8-access-hero__sub {
	font-size: 1.1rem;
	color: var(--t8-text-soft);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

.t8-access-hero__sub strong {
	color: var(--t8-text);
}

/* Form section */
.t8-access-form-section {
	padding: 0 0 100px;
}

.t8-access-card {
	background: var(--t8-panel);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--t8-radius-xl);
	padding: 48px;
	max-width: 680px;
	margin: 0 auto 72px;
}

.t8-access-card__status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--t8-cyan);
	margin-bottom: 32px;
}

.t8-access-card__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--t8-cyan);
	box-shadow: 0 0 8px var(--t8-cyan);
	flex-shrink: 0;
	animation: t8-pulse 2s ease-in-out infinite;
}

@keyframes t8-pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.4; }
}

/* Form */
.t8-waitlist-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.t8-waitlist-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.t8-waitlist-form__field label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--t8-text-soft);
}

.t8-waitlist-form__field label span {
	color: var(--t8-cyan);
}

.t8-waitlist-form__field input,
.t8-waitlist-form__field select {
	background: var(--t8-panel-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--t8-radius-md);
	color: var(--t8-text);
	font-size: 0.95rem;
	padding: 12px 16px;
	transition: border-color 0.2s;
	width: 100%;
}

.t8-waitlist-form__field input::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.t8-waitlist-form__field input:focus,
.t8-waitlist-form__field select:focus {
	outline: none;
	border-color: rgba(var(--t8-cyan-rgb), 0.5);
}

.t8-waitlist-form__field select option {
	background: var(--t8-panel);
}

.t8-waitlist-form__submit {
	width: 100%;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
	padding: 14px 24px;
	font-size: 1rem;
}

.t8-access-card__note {
	text-align: center;
	font-size: 0.8rem;
	color: var(--t8-text-soft);
	opacity: 0.5;
	margin: 20px 0 0;
}

/* Success / error notice */
.t8-access-notice {
	border-radius: var(--t8-radius-md);
	padding: 14px 20px;
	font-size: 0.9rem;
	margin-bottom: 24px;
	text-align: center;
}

.t8-access-notice--ok {
	background: rgba(var(--t8-cyan-rgb), 0.1);
	border: 1px solid rgba(var(--t8-cyan-rgb), 0.3);
	color: var(--t8-cyan);
}

.t8-access-notice--exists {
	background: rgba(var(--t8-blue-rgb), 0.1);
	border: 1px solid rgba(var(--t8-blue-rgb), 0.3);
	color: var(--t8-blue);
}

.t8-access-notice--invalid {
	background: rgba(199, 66, 247, 0.1);
	border: 1px solid rgba(var(--t8-purple-rgb), 0.3);
	color: var(--t8-purple);
}

/* Features list */
.t8-access-features {
	max-width: 680px;
	margin: 0 auto;
}

.t8-access-features h2 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--t8-text-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.t8-access-features__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t8-access-features__list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.t8-access-features__list svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	stroke: var(--t8-cyan);
	margin-top: 2px;
}

.t8-access-features__list strong {
	display: block;
	font-size: 0.95rem;
	color: var(--t8-text);
	margin-bottom: 2px;
}

.t8-access-features__list span {
	font-size: 0.85rem;
	color: var(--t8-text-soft);
}

@media (max-width: 680px) {
	.t8-access-card {
		padding: 32px 24px;
	}

	.t8-waitlist-form__row {
		grid-template-columns: 1fr;
	}
}

/* ----------------------------------------------------------------------------
   Accent color system — per-section & per-component
---------------------------------------------------------------------------- */

/* Metric band icon colors */
.t8-metric-card--cyan  .t8-metric-card__icon { color: var(--t8-cyan); }
.t8-metric-card--blue  .t8-metric-card__icon { color: var(--t8-blue); }
.t8-metric-card--purple .t8-metric-card__icon { color: var(--t8-purple); }

/* Metric card icon background tint */
.t8-metric-card--cyan  .t8-metric-card__icon { background: rgba(var(--t8-cyan-rgb), 0.08); }
.t8-metric-card--blue  .t8-metric-card__icon { background: rgba(var(--t8-blue-rgb), 0.08); }
.t8-metric-card--purple .t8-metric-card__icon { background: rgba(var(--t8-purple-rgb), 0.08); }

/* Product section kicker color per accent */
.t8-product-section--cyan   .t8-kicker { color: var(--t8-cyan); }
.t8-product-section--blue   .t8-kicker { color: var(--t8-blue); }
.t8-product-section--purple .t8-kicker { color: var(--t8-purple); }

/* Feature item icon colors */
.t8-feature-item__icon--cyan   { color: var(--t8-cyan);   background: rgba(var(--t8-cyan-rgb), 0.08); }
.t8-feature-item__icon--blue   { color: var(--t8-blue);   background: rgba(var(--t8-blue-rgb), 0.08); }
.t8-feature-item__icon--purple { color: var(--t8-purple); background: rgba(var(--t8-purple-rgb), 0.08); }

/* Accent CTA buttons */
.t8-button--accent-cyan {
	background: linear-gradient(135deg, var(--t8-cyan), #1a9a86);
	color: #07151a;
}
.t8-button--accent-blue {
	background: linear-gradient(135deg, var(--t8-blue), #3a8fbf);
	color: #07151a;
}
.t8-button--accent-purple {
	background: linear-gradient(135deg, var(--t8-purple), #9b2fd4);
	color: #ffffff;
}

.t8-button--accent-cyan:hover,
.t8-button--accent-blue:hover,
.t8-button--accent-purple:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

/* Value card icon accents (About page) */
.t8-value-card__icon--cyan   { color: var(--t8-cyan);   background: rgba(var(--t8-cyan-rgb), 0.1); }
.t8-value-card__icon--blue   { color: var(--t8-blue);   background: rgba(var(--t8-blue-rgb), 0.1); }
.t8-value-card__icon--purple { color: var(--t8-purple); background: rgba(var(--t8-purple-rgb), 0.1); }

/* Static page kicker accents */
.t8-page-cyan   .t8-kicker,
.t8-static-hero--cyan .t8-kicker  { color: var(--t8-cyan); }
.t8-page-blue   .t8-kicker,
.t8-static-hero--blue .t8-kicker  { color: var(--t8-blue); }
.t8-page-purple .t8-kicker,
.t8-static-hero--purple .t8-kicker { color: var(--t8-purple); }

/* Access page badge accent already uses cyan — override dot on access */
.t8-access-hero__badge { border-color: rgba(var(--t8-cyan-rgb), 0.3); }

/* FAQ accordion — summary marker color */
.t8-faq-item summary::before { color: var(--t8-blue); }

/* Contact icons */
.t8-contact-item__icon { color: var(--t8-cyan); }
.t8-contact-item:nth-child(2) .t8-contact-item__icon { color: var(--t8-blue); }
.t8-contact-item:nth-child(3) .t8-contact-item__icon { color: var(--t8-purple); }

/* Legal tabs active */
.t8-legal-tab.is-active { color: var(--t8-cyan); border-bottom-color: var(--t8-cyan); }
.t8-legal-tab:nth-child(2).is-active { color: var(--t8-blue); border-bottom-color: var(--t8-blue); }
.t8-legal-tab:nth-child(3).is-active { color: var(--t8-purple); border-bottom-color: var(--t8-purple); }
