/* ===================================================================
   FONTS
   =================================================================== */

@font-face {
	font-family: "DM Sans";
	src: url("../fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DM Sans";
	src: url("../fonts/DMSans-Italic-VariableFont_opsz,wght.ttf")
		format("truetype");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf")
		format("truetype");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* ===================================================================
   GREEN DOPAMINE — TOKENS (Brand Book v13.0, Section 26)
   =================================================================== */
:root {
	/* Colour system */
	--gd-dark: #081b23; /* Dominant field */
	--gd-dark-2: #0f2731; /* Cards, placeholders */
	--gd-dark-3: #16323d; /* Dividers, hover */
	--gd-teal: #1da6a4; /* Structural primary */
	--gd-green: #4fc16b; /* Structural accent + cursor ring */
	--gd-navy: #1a2a45; /* Deep structure */
	--gd-pink: #f05783; /* Conversion signal — ONE per composition */
	--gd-white: #ffffff;
	--gd-text: rgba(255, 255, 255, 0.92);
	--gd-text-dim: rgba(255, 255, 255, 0.62);
	--gd-text-faint: rgba(255, 255, 255, 0.42);

	/* Tier colours */
	--tier-diamond: #f05783;
	--tier-platinum: #1da6a4;
	--tier-gold: #ba7517;
	--tier-silver: #888780;
	--tier-green: #4fc16b;
	--tier-blue: #48def9;

	/* Typography */
	--font-display: "Montserrat", sans-serif;
	--font-body: "DM Sans", sans-serif;

	/* Spacing scale — fluid via clamp(); desktop target at 1280px viewport */
	--space-xs: clamp(2px, 0.55vw, 8px); /*  ~8px  */
	--space-sm: clamp(8px, 1vw, 14px); /* ~13px  */
	--space-md: clamp(16px, 1.875vw, 24px); /* ~24px  */
	--space-lg: clamp(20px, 2.5vw, 40px); /* ~32px  */
	--space-xl: clamp(32px, 3.75vw, 56px); /* ~48px  */
	--space-2xl: clamp(48px, 6.25vw, 96px); /* ~80px  */
	--space-3xl: clamp(64px, 7.5vw, 120px); /* ~96px  */

	--pad-section: clamp(36px, 9vw, 144px);
	--container: 1280px;
	--gutter: clamp(20px, 4vw, 56px);

	/* Type scale */
	--t-mega: clamp(48px, 8vw, 108px);
	--t-hero: clamp(40px, 6vw, 84px);
	--t-h1: clamp(32px, 4.5vw, 56px);
	--t-h2: clamp(24px, 3vw, 36px);
	--t-h3: clamp(18px, 2vw, 22px);
	--t-body: clamp(17px, 1.3vw, 19px);
	--t-small: clamp(14px, 1.1vw, 16px);
	--t-micro: clamp(13px, 1vw, 15px);

	/* Transitions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);

	/* Component tokens */
	--gap-card: var(--space-md); /* standard card/grid gap */
	--pad-tile: var(--space-xl); /* vertical pad on featured tiles */
	--br-card: 4px; /* border-radius on cards and containers */
}

/* ===================================================================
   RESET & BASE
   =================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	background: var(--gd-dark);
	color: var(--gd-text);
	font-family: var(--font-body);
	font-size: var(--t-body);
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
	min-height: 100vh;
}
img,
svg {
	display: block;
	max-width: 100%;
}
button {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
}
a {
	color: inherit;
	text-decoration: none;
}
ul,
ol {
	list-style: none;
}
input,
textarea,
select {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--gd-white);
}

p {
	color: var(--gd-text);
}

.container {
	/* max-width: var(--container);
  margin: 0 auto; */
	padding: 0 var(--gutter);
}

/* Skip link — accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--gd-teal);
	color: var(--gd-dark);
	padding: var(--space-xs) var(--space-md);
	font-weight: 600;
	font-size: 14px;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
}

/* Visible focus state — accessibility */
:focus-visible {
	outline: 2px solid var(--gd-green);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ===================================================================
   SPLASH SCREEN — fades on font load
   =================================================================== */
.splash {
	position: fixed;
	inset: 0;
	background: var(--gd-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	transition:
		opacity 0.4s var(--ease),
		visibility 0.4s var(--ease);
}
.splash.hidden {
	opacity: 0;
	visibility: hidden;
}

.splash-mark {
	width: 56px;
	height: 56px;
	position: relative;
	animation: splash-pulse 1.4s ease-in-out infinite;
}

.splash-mark::before,
.splash-mark::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.splash-mark::before {
	inset: 0;
	border: 2px solid var(--gd-green);
}
.splash-mark::after {
	width: 12px;
	height: 12px;
	background: var(--gd-pink);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@keyframes splash-pulse {
	0%,
	100% {
		opacity: 0.7;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

/* ===================================================================
   HEADER — sticky, shrinks on scroll
   =================================================================== */
.gd-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: var(--space-md) 0;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition:
		padding 0.3s var(--ease),
		background 0.3s var(--ease),
		border-color 0.3s var(--ease);
}
.gd-header.scrolled {
	padding: 14px 0;
	background: rgba(8, 27, 35, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: rgba(29, 166, 164, 0.18);
}
.gd-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
}
.gd-logo {
	display: flex;
	align-items: center;
	height: 35px;
}

.gd-logo img {
	height: 100%;
	width: auto;
	display: block;
}
.gd-logo-mark {
	width: 30px;
	height: 30px;
	position: relative;
	flex-shrink: 0;
}
.gd-logo-mark::before,
.gd-logo-mark::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.gd-logo-mark::before {
	inset: 0;
	border: 1.5px solid var(--gd-green);
}
.gd-logo-mark::after {
	width: 7px;
	height: 7px;
	background: var(--gd-pink);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gd-nav {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}
.gd-nav a {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--t-body);
	letter-spacing: 0.02em;
	color: var(--gd-text);
	position: relative;
	padding: 4px 0;
	transition: color 0.2s var(--ease);
}

.gd-nav a:hover {
	color: var(--gd-teal);
}

.gd-nav a.active {
	color: var(--gd-green);
	font-weight: 700;
}
/* .gd-nav a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gd-green);
	transition: width 0.3s var(--ease-out);
}
.gd-nav a:hover {
	color: var(--gd-white);
}
.gd-nav a:hover::after {
	width: 100%;
}
.gd-nav a.active {
	color: var(--gd-white);
}
.gd-nav a.active::after {
	width: 100%;
	background: var(--gd-teal);
} */

.gd-hamburger {
	display: none;
	position: relative;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.gd-hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--gd-white);
	transition:
		transform 0.3s var(--ease),
		opacity 0.3s var(--ease);
}
.gd-hamburger.open span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.gd-hamburger.open span:nth-child(2) {
	opacity: 0;
}
.gd-hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* ===================================================================
   LANGUAGE SWITCHER (header)
   =================================================================== */
.gd-header-right {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}
.gd-lang {
	position: relative;
}
.gd-lang-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--gd-text);
	font-family: var(--font-body);
	font-size: var(--t-small);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: var(--space-xs) var(--space-sm);
	border-radius: 999px;
	cursor: pointer;
	transition:
		border-color 0.2s var(--ease),
		color 0.2s var(--ease),
		background 0.2s var(--ease);
}
.gd-lang-btn:hover {
	border-color: var(--gd-teal);
	color: var(--gd-white);
}
.gd-lang-btn .gd-lang-caret {
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s var(--ease);
}
.gd-lang.open .gd-lang-btn {
	border-color: var(--gd-teal);
	color: var(--gd-white);
	background: rgba(29, 166, 164, 0.08);
}
.gd-lang.open .gd-lang-btn .gd-lang-caret {
	transform: translateY(2px) rotate(-135deg);
}
.gd-lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	background: rgba(15, 39, 49, 0.98);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(29, 166, 164, 0.22);
	border-radius: 10px;
	padding: var(--space-xs);
	list-style: none;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition:
		opacity 0.2s var(--ease),
		transform 0.2s var(--ease);
	z-index: 105;
}
.gd-lang.open .gd-lang-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.gd-lang-menu li {
	margin: 0;
}
.gd-lang-menu button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: transparent;
	border: 0;
	color: var(--gd-text);
	font-family: var(--font-body);
	font-size: var(--t-small);
	text-align: left;
	padding: var(--space-sm) var(--space-sm);
	border-radius: 6px;
	cursor: pointer;
	transition:
		background 0.15s var(--ease),
		color 0.15s var(--ease);
}
.gd-lang-menu button:hover {
	background: rgba(29, 166, 164, 0.12);
	color: var(--gd-white);
}
.gd-lang-menu button .gd-lang-code {
	font-size: var(--t-small);
	letter-spacing: 0.08em;
	color: var(--gd-text-faint);
	text-transform: uppercase;
}
.gd-lang-menu button[aria-current="true"] {
	color: var(--gd-white);
	background: rgba(29, 166, 164, 0.08);
}
.gd-lang-menu button[aria-current="true"] .gd-lang-code {
	color: var(--gd-teal);
}

@media (max-width: 900px) {
	.gd-nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--gd-dark);
		flex-direction: column;
		justify-content: center;
		gap: var(--space-lg);
		padding: var(--space-2xl) var(--space-lg);
		transform: translateX(100%);
		transition: transform 0.4s var(--ease-out);
	}
	.gd-nav.open {
		transform: translateX(0);
	}
	.gd-nav a {
		font-size: var(--t-h2);
		font-family: var(--font-display);
		font-weight: 600;
	}
	.gd-hamburger {
		display: flex;
		z-index: 101;
	}
}

/* ===================================================================
   FOOTER
   =================================================================== */
.gd-footer {
	background: var(--gd-dark);
	border-top: 1px solid rgba(29, 166, 164, 0.18);
	padding: var(--space-2xl) 0 var(--space-lg);
	margin-top: var(--space-2xl);
}
.gd-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--space-xl);
	margin-bottom: var(--space-2xl);
}
.gd-footer h4 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--t-small);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gd-teal);
	margin-bottom: var(--space-md);
}
.gd-footer-brand .gd-logo {
	margin-bottom: var(--space-md);
}
.gd-footer-tagline {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	letter-spacing: 0.04em;
	margin-bottom: var(--space-md);
}
.gd-footer-nav a {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	transition: color 0.2s var(--ease);
}
.gd-footer-nav a:hover {
	color: var(--gd-teal);
}

.gd-newsletter-purpose {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	margin-bottom: var(--space-md);
	line-height: 1.5;
}
.gd-newsletter-form {
	display: flex;
	gap: var(--space-xs);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	padding-bottom: var(--space-xs);
	transition: border-color 0.3s var(--ease);
}
.gd-newsletter-form:focus-within {
	border-color: var(--gd-green);
}
.gd-newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	font-size: var(--t-small);
	color: var(--gd-white);
}
.gd-newsletter-form input::placeholder {
	color: var(--gd-text-faint);
}
.gd-newsletter-form input:focus {
	outline: none;
}

.gd-newsletter-form .btn-link {
	padding: 0px;
}
.gd-social {
	display: flex;
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
.gd-social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: var(--gd-text-dim);
	transition: all 0.25s var(--ease);
}
.gd-social a:hover {
	border-color: var(--gd-teal);
	color: var(--gd-teal);
}
.gd-social svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.gd-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	flex-wrap: wrap;
	gap: var(--space-md);
}
.gd-footer-bottom p,
.gd-footer-bottom a {
	font-size: var(--t-small);
	color: var(--gd-text-faint);
	letter-spacing: 0.03em;
}
.gd-footer-bottom a:hover {
	color: var(--gd-teal);
}
.gd-footer-legal {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

@media (max-width: 900px) {
	.gd-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-xl);
	}
}
@media (max-width: 600px) {
	.gd-footer-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}
	.gd-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ===================================================================
   COOKIE BANNER — appears on first visit
   =================================================================== */
.gd-cookie {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: 24px;
	max-width: 720px;
	margin: 0 auto;
	background: var(--gd-dark-2);
	border: 1px solid rgba(29, 166, 164, 0.3);
	border-radius: 8px;
	padding: var(--space-md);
	z-index: 999;
	transform: translateY(150%);
	transition: transform 0.5s var(--ease-out);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-md);
}
.gd-cookie.visible {
	transform: translateY(0);
}
.gd-cookie-text {
	flex: 1;
	min-width: 260px;
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.5;
}
.gd-cookie-text a {
	color: var(--gd-teal);
}
.gd-cookie-actions {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

/* ===================================================================
   PAGE TRANSITIONS
   =================================================================== */
.page {
	display: none;
	opacity: 0;
	transition: opacity 0.2s var(--ease);
	padding-top: var(--space-3xl);
}
.page.active {
	display: block;
	opacity: 1;
}
.page-content {
	margin-top: calc(35px + (var(--space-md) * 2));
	animation: page-in 0.4s var(--ease-out);
}

@keyframes page-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===================================================================
   PLACEHOLDER SYSTEM — brand-compliant, never empty-looking
   =================================================================== */
.gd-placeholder {
	background: var(--gd-dark-2);
	border: 1px solid rgba(29, 166, 164, 0.2);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
}
.gd-placeholder img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* .gd-placeholder::before {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid rgba(29, 166, 164, 0.35);
  border-radius: 50%;
  opacity: 0.7;
}
.gd-placeholder::after {
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  background: rgba(240, 87, 131, 0.5);
  border-radius: 50%;
} */
.gd-placeholder-label {
	position: absolute;
	bottom: 12px;
	left: 14px;
	font-family: var(--font-body);
	font-size: var(--t-micro);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	z-index: 1;
}
.gd-placeholder.aspect-square {
	aspect-ratio: 1;
}
.gd-placeholder.aspect-16-9 {
	aspect-ratio: 16 / 9;
}
.gd-placeholder.aspect-4-5 {
	aspect-ratio: 4 / 5;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
	text-align: center;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--t-small);
	letter-spacing: 0.02em;
	padding: var(--space-sm) var(--space-md);
	border-radius: 2px;
	transition: all 0.25s var(--ease);
	position: relative;
}
.btn .arrow {
	transition: transform 0.25s var(--ease-out);
}
.btn:hover .arrow {
	transform: translate(3px, -3px);
}

.btn-primary {
	background: var(--gd-pink);
	color: var(--gd-white);
}
.btn-primary:hover {
	background: #f06a90;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: var(--gd-white);
	border: 1px solid rgba(29, 166, 164, 0.5);
}
.btn-secondary:hover {
	border-color: var(--gd-teal);
	background: rgba(29, 166, 164, 0.08);
	transform: translateY(-2px);
}

.btn-shimmer {
	position: relative;
	overflow: hidden;
	background-color: var(--gd-pink);
	transition: background-color 1s ease;
}

.btn-shimmer:hover {
	background-color: #d63b67;
}

.btn-shimmer::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 100%;
	height: 100%;

	background: linear-gradient(
		90deg,
		rgba(255, 139, 176, 0) 0%,
		rgba(255, 139, 176, 0.25) 50%,
		rgba(255, 139, 176, 0) 100%
	);

	transform: skewX(-20deg);
}

.btn-shimmer:hover::before {
	left: 180%;
	transition: left 1s ease;
}

.btn-link {
	background: transparent;
	color: var(--gd-teal);
	padding: var(--space-sm) 0;
	border-bottom: 1px solid transparent;
}
.btn-link:hover {
	color: var(--gd-green);
	border-bottom-color: var(--gd-green);
}

/* ===================================================================
   LINK STYLES
   =================================================================== */
.link-underline {
	position: relative;
	line-height: 1;
	width: fit-content;
	color: var(--gd-teal);
	transition: color 0.5s var(--ease);
	display: inline-block;
}
.link-underline:after {
	content: "";
	display: block;
	width: 0%;
	height: 1.5px;
	background: var(--gd-teal);
	margin-top: var(--space-xs);
	transition: width 0.3s var(--ease);
}
.link-underline:hover,
.engage-tile:hover .link-underline {
	color: var(--gd-green);
}
.link-underline:hover:after,
.engage-tile:hover .link-underline:after {
	background-color: var(--gd-green);
	width: 100%;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	color: var(--gd-teal);
	font-weight: 500;
	position: relative;
	width: fit-content;
	transition: color 0.3s var(--ease);
	line-height: 1;
}
.link-arrow:after {
	content: "";
	display: inline-block;
	color: var(--gd-teal);

	border-right: 1.5px solid var(--gd-teal);
	border-bottom: 1.5px solid var(--gd-teal);
	width: 6px;
	height: 6px;
	rotate: -45deg;
	position: absolute;
	right: -10px;

	transition:
		translate 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

.link-arrow:hover,
.engage-tile:hover .link-arrow {
	color: var(--gd-green);
}

.link-arrow:hover:after,
.engage-tile:hover .link-arrow:after {
	translate: 6px 0;
	border-color: var(--gd-green);
}

.link-color-swipe {
	position: relative;
	color: var(--gd-teal);
	display: inline-block;
}
.link-color-swipe::before {
	content: attr(data-text);
	overflow: hidden;
	width: 0px;
	color: var(--gd-green);
	position: absolute;
	white-space: nowrap;
}
.link-color-swipe:hover::before,
.engage-tile:hover .link-color-swipe::before {
	width: 100%;
	transition: width 0.5s var(--ease);
}

.link-color-swipe-reverse {
	position: relative;
	color: var(--gd-green);
	display: inline-block;
}
.link-color-swipe-reverse::before {
	content: attr(data-text);
	overflow: hidden;
	width: 100%;
	color: var(--gd-teal);
	position: absolute;
	white-space: nowrap;
}
.link-color-swipe-reverse:hover::before,
.engage-tile:hover .link-color-swipe-reverse::before {
	width: 0px;
	transition: width 0.5s var(--ease);
}

.link-line-flash {
	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
	color: var(--gd-teal);
	position: relative;
	width: fit-content;
	transition: color 0.3s var(--ease);
}

.link-line-flash::before,
.link-line-flash::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -0.1rem;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--gd-teal);
	transition: 1.1s var(--ease-out-expo);
}

.link-line-flash::before {
	transform: scaleX(0);
	transform-origin: left;
}

.link-line-flash::after {
	transform-origin: right;
	transition-delay: 0.25s;
}

.link-line-flash:hover,
.engage-tile:hover .link-line-flash {
	color: var(--gd-green);
}

.link-line-flash:hover::before,
.engage-tile:hover .link-line-flash::before {
	transform: scaleX(1);
	transition-delay: 0.25s;
	background: var(--gd-green);
}

.link-line-flash:hover::after,
.engage-tile:hover .link-line-flash::after {
	transform: scaleX(0);
	transition-delay: 0s;
	background: var(--gd-green);
}

.link-diag-arrow:after {
	content: "↗";
	transition: transform 0.25s var(--ease-out);
}

.link-diag-arrow:hover:after {
	transform: translate(3px, -3px);
}

/* ===================================================================
   SECTION & TYPE UTILITIES
   =================================================================== */
section {
	padding: var(--space-xl) 0;
}

/* Offset the fixed header on inner-page hero containers */
.pt-hero h1 {
	font-size: var(--t-hero);
}

.teal {
	color: var(--gd-teal);
}

.pink {
	color: var(--gd-pink);
}

.green {
	color: var(--gd-green);
}
/* Centred CTA row beneath a content block */
.section-cta {
	margin-top: var(--space-md);
	text-align: center;
}

/* Full-page bottom CTA (larger vertical spacing than section-cta) */
.page-cta {
	margin-top: var(--space-3xl);
	text-align: center;
}
.page-cta h2 {
	font-size: var(--t-h1);
	margin-bottom: var(--space-md);
}
.page-cta > p {
	color: var(--gd-text-dim);
	max-width: 560px;
	margin: 0 auto var(--space-lg);
}

/* Contact page direct email block */
.contact-direct {
	display: flex;
	flex-direction: column;
	background: var(--gd-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-left: 3px solid var(--gd-teal);
	border-radius: var(--br-card);
	padding: var(--space-xl) var(--space-lg);
}

.contact-direct .intro {
	font-weight: 500;
	font-size: var(--t-micro);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--gd-text-dim);
	margin-bottom: var(--space-sm);
}
.contact-direct .email-address {
	font-size: var(--t-h2);
	font-weight: 200;
	color: var(--gd-green);
	line-height: 1.2;
	margin-bottom: var(--space-lg);
	word-break: break-word;
}
.contact-direct .email-address a {
	color: inherit;
	transition: opacity 0.2s var(--ease);
}
.contact-direct .email-address a:hover {
	opacity: 0.8;
}
.contact-direct .note {
	margin-top: var(--space-md);
	color: var(--gd-text-dim);
}

/* Pending-signoff variant — centred with max-width */
.pending-signoff--centered {
	margin-left: auto;
	margin-right: auto;
	max-width: 640px;
}

/* Footer brand description paragraph */
.gd-footer-brand-desc {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.5;
}

.eyebrow {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--t-small);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--gd-teal);
	margin-top: var(--space-sm);
	margin-bottom: var(--space-md);
	display: inline-block;
}
.dot-sep {
	color: var(--gd-green);
	margin: 0 var(--space-xs);
}
.eyebrow--pink {
	color: var(--gd-pink);
}
.eyebrow--sm {
	font-size: var(--t-micro);
}

/* ===================================================================
   BASE COMPONENTS
   =================================================================== */
.card {
	background: var(--gd-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition:
		border-color 0.3s var(--ease),
		transform 0.3s var(--ease-out);
}
.card:hover {
	transform: translateY(-4px);
}
.card--hover-teal:hover {
	border-color: rgba(29, 166, 164, 0.4);
}
.card--hover-pink:hover {
	border-color: rgba(240, 87, 131, 0.5);
}

.media {
	position: relative;
	overflow: hidden;
	background: var(--gd-dark-3);
}
.media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.media--zoom img {
	transition: transform 0.6s var(--ease-out);
}
.card:hover .media--zoom img {
	transform: scale(1.04);
}
.media--4-3 {
	aspect-ratio: 4 / 3;
}
.media--4-5 {
	aspect-ratio: 4 / 5;
}
.media--16-9 {
	aspect-ratio: 16 / 9;
}
.media--16-10 {
	aspect-ratio: 16 / 10;
}
.media--1-1 {
	aspect-ratio: 1;
}

/* Grid utilities — column structure only; gap/margin stay on the component class */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* Body text inside cards — dim, readable, 13px base */
.card-text {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.6;
}

/* Eyebrow inside cards has less vertical breathing room than section eyebrows */
.proof-card .eyebrow,
.mi-card .eyebrow,
.hero-creator .eyebrow {
	margin-top: 0;
	margin-bottom: var(--space-md);
}

.lede {
	font-size: var(--t-h3);
	line-height: 1.55;
	color: var(--gd-text);
	max-width: 720px;
	font-weight: 300;
	margin-top: var(--space-sm);
}

/* Pending-signoff stub — only visible if Kaylee hasn't signed yet */
.pending-signoff {
	background: rgba(240, 87, 131, 0.04);
	border: 1px dashed rgba(240, 87, 131, 0.35);
	padding: var(--space-lg);
	border-radius: 4px;
	margin: var(--space-lg) 0;
}
.pending-signoff::before {
	content: "PENDING SIGN-OFF";
	display: inline-block;
	font-size: var(--t-micro);
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--gd-pink);
	margin-bottom: var(--space-sm);
}
.pending-signoff p {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	font-style: italic;
}

/* ===================================================================
   HOMEPAGE
   =================================================================== */
.hero-placeholder {
	position: relative;
	width: 100%;
	aspect-ratio: 32 / 9;
	min-height: 280px;
	max-height: 540px;
	overflow: hidden;
	border: 1px dashed rgba(29, 166, 164, 0.22);
	border-top: 0;
	border-left: 0;
	border-right: 0;

	/* IMPORTANT: remove full-bleed hack */
	margin: 0 0 var(--space-lg) 0;
}
.hero-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.hero-placeholder {
		aspect-ratio: 21 / 9;
		min-height: 200px;
		margin-bottom: var(--space-md);
	}
	.hero-placeholder::after {
		left: 16px;
		bottom: 16px;
		font-size: var(--t-micro);
	}
}
/* When hero-placeholder sits inside the .hero block (home page), reset its margin */
.hero .hero-placeholder {
	margin-top: -64px;
}

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	overflow: hidden;
}
.hero .container {
	width: 100%;
	padding: 0 var(--gutter);
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.5;
	will-change: transform;
}
.hero-bg::before {
	content: "";
	position: absolute;
	top: 20%;
	right: -10%;
	width: 80%;
	height: 80%;
	background: radial-gradient(
		circle at center,
		rgba(29, 166, 164, 0.18) 0%,
		transparent 65%
	);
}
.hero-bg::after {
	content: "";
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 60%;
	height: 60%;
	background: radial-gradient(
		circle at center,
		rgba(79, 193, 107, 0.12) 0%,
		transparent 65%
	);
}
.hero-grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(29, 166, 164, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(29, 166, 164, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(
		ellipse at 50% 50%,
		black 30%,
		transparent 75%
	);
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: none;
	display: grid;
	grid-template-columns: 45% 1fr;
	grid-template-areas:
		"text media"
		"stats stats";
	column-gap: var(--space-xl);
	row-gap: var(--space-xl);
	align-items: center;
	padding: var(--space-xl) 0;
}

.hero-text {
	grid-area: text;
}

.hero-text h1 {
	text-wrap: auto;
}

.hero-media {
	grid-area: media;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
}

.hero-media img {
	width: 100%;
}

.hero-media .hero-tagline {
	justify-content: center;
	font-size: clamp(14px, 1.8vw, 22px);
	margin: 0;
}

.hero-content .velocity-strip {
	grid-area: stats;
}

@media (max-width: 1100px) {
	.hero-content {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"text"
			"stats";
	}

	.hero-media img {
		margin: 0 auto;
	}
}
.hero h1 {
	font-size: var(--t-mega);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.035em;
	margin-bottom: 32px;
	word-break: break-word;
	font-size: clamp(28px, 6vw, 48px);
	line-height: 1.2;
}
.hero h1 .accent {
	color: var(--gd-teal);
}
.hero h1 .pink {
	color: var(--gd-pink);
}
.hero-tagline {
	--tagline-ls: 0.1em;
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.4em;
	font-family: var(--font-display);
	font-weight: 500; /* was 500 */
	font-size: 3.5vw;
	letter-spacing: var(--tagline-ls);
	text-transform: uppercase;
	color: var(--gd-white);
	margin-bottom: var(--space-lg);
	margin-top: 0;
}
@media (prefers-reduced-motion: no-preference) {
	.hero-tagline {
		animation: tagline-in 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
		animation-delay: 0.15s;
	}
}
.hero-tagline .dot {
	color: var(--gd-green);
	justify-content: center;
	font-size: 0.7em;
	display: flex;
	flex: 1;
	align-items: center;
	letter-spacing: 0;
}
@keyframes tagline-in {
	from {
		opacity: 0;
		letter-spacing: 0.04em;
		filter: blur(22px);
	}
	to {
		opacity: 1;
		letter-spacing: var(--tagline-ls);
		filter: blur(0);
	}
}
.hero-lede {
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.5;
	color: var(--gd-text);
	max-width: 720px;
	margin-bottom: var(--space-xl);
	font-weight: 300;
}

@media (max-width: 480px) {
	.hero-ctas {
		justify-content: center;
		flex-direction: column;
		max-width: 75%;
		margin: auto;
	}
}
.hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Hero stats strip */
/* .hero-stats {
	position: relative;
	z-index: 1;
	margin-top: var(--space-3xl);
	gap: var(--space-lg);
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(29, 166, 164, 0.18);
}
.hero-stat {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	line-height: 1;
} */
/* .hero-stat-value {
	font-family: var(--font-display);
	font-size: var(--t-h1);
	font-weight: 700;
	color: var(--gd-white);
	line-height: 1;
	margin-bottom: var(--space-sm);
	letter-spacing: -0.02em;
} */
.hero-stat-label {
	font-size: var(--t-small);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gd-text-dim);
}
@media (max-width: 900px) {
	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}
}
@media (max-width: 480px) {
	.hero-stats {
		grid-template-columns: 1fr;
	}
}

/* Four ways to engage */
.engage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(29, 166, 164, 0.18);
	border: 1px solid rgba(29, 166, 164, 0.18);
}
.engage-tile {
	background: var(--gd-dark);
	padding: var(--space-lg);
	position: relative;
	transition: background 0.3s var(--ease);
	display: flex;
	flex-direction: column;
	min-height: 280px;
	gap: var(--space-md);
}

@media (max-width: 900px) {
	.engage-tile {
		min-height: 0px;
	}
}
.engage-tile:hover {
	background: var(--gd-dark-2);
}
.engage-tile .num {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: var(--t-small);
	color: var(--gd-teal);
	letter-spacing: 0.12em;
}
/* .engage-tile h3 {
	font-size: var(--t-h3);
	margin-bottom: var(--space-md);
	line-height: 1.1;
} */
.engage-tile h3::after {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gd-green);
	margin-top: var(--space-xs);
	transition: width 0.3s var(--ease-out);
}
.engage-tile:hover h3::after {
	width: 60px;
}
.engage-tile p {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	flex: 1;
}
.engage-tile .link {
	font-size: var(--t-small);
	color: var(--gd-teal);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	transition: color 0.2s var(--ease);
}
.engage-tile:hover .link {
	color: var(--gd-green);
}
@media (max-width: 1024px) {
	.engage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.engage-grid {
		grid-template-columns: 1fr;
	}
}

/* Network preview block */
.preview-creators {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-md);
	margin-top: var(--space-xl);
}
.preview-creator {
	position: relative;
	transition: transform 0.3s var(--ease-out);
}
.preview-creator:hover {
	transform: translateY(-4px);
}
.preview-creator .gd-placeholder {
	aspect-ratio: 4 / 5;
}
.preview-creator h4 {
	margin-top: var(--space-sm);
	font-size: var(--t-small);
	font-weight: 500;
	color: var(--gd-white);
}
.preview-creator .tier-tag {
	font-size: var(--t-micro);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gd-text-dim);
	margin-top: var(--space-xs);
}
@media (max-width: 900px) {
	.preview-creators {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 480px) {
	.preview-creators {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Pull quote / proof line */
.pull-quote {
	padding: var(--space-xl) 0;
	text-align: center;
	border-top: 1px solid rgba(29, 166, 164, 0.18);
	border-bottom: 1px solid rgba(29, 166, 164, 0.18);
}
.pull-quote-text {
	font-family: var(--font-display);
	font-size: var(--t-h2);
	font-weight: 500;
	line-height: 1.3;
	color: var(--gd-white);
	max-width: 880px;
	margin: 0 auto;
	letter-spacing: -0.01em;
}
.pull-quote-text .pink {
	color: var(--gd-pink);
}
.pull-quote-attr {
	margin-top: var(--space-md);
	font-size: var(--t-small);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gd-text-dim);
}

/* Section heading group */
.section-head {
	margin-bottom: var(--space-xl);
	max-width: 760px;
}
.section-head h2 {
	font-size: var(--t-h2);
	margin-bottom: var(--space-md);
}
.section-head p {
	color: var(--gd-text-dim);
	line-height: 1.6;
}

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap-card);
}
.team-card {
	position: relative;
	transition: transform 0.4s var(--ease-out);
}
.team-card:hover {
	transform: translateY(-6px);
}
.team-photo {
	position: relative;
	overflow: hidden;
	margin-bottom: var(--space-md);
}
.team-photo .gd-placeholder {
	aspect-ratio: 4 / 5;
}
.team-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 50%,
		rgba(8, 27, 35, 0.4) 100%
	);
	opacity: 0;
	transition: opacity 0.3s var(--ease);
	pointer-events: none;
}
.team-card:hover .team-photo::after {
	opacity: 1;
}
/* .team-card h3 {
	font-size: var(--t-h3);
	margin-bottom: var(--space-xs);
	line-height: 1.2;
} */
.team-card .role {
	font-size: var(--t-small);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gd-teal);
	margin-bottom: var(--space-sm);
}
.team-card .bio {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.55;
}
@media (max-width: 900px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-xl);
	}
}
@media (max-width: 480px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* Origin story */

.origin-headline {
	font-size: var(--t-h1);
	font-weight: 700;
	line-height: 1.05;
}

.origin strong {
	color: var(--gd-white);
	font-weight: 600;
}


/* ===================================================================
   FOR BRANDS PAGE
   =================================================================== */
blockquote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--t-h3);
	font-weight: 500;
	color: var(--gd-text);
	border-left: 2px solid var(--gd-teal);
	padding-left: var(--space-sm);
	max-width: 720px;
	margin-top: var(--space-lg);
}

/* Product list */
.product {
	display: grid;
	/* grid-template-columns: 1fr 2fr; */
	gap: var(--space-md);
	align-items: start;
}

.product-num {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--t-small);
	letter-spacing: 0.18em;
	color: var(--gd-teal);
	margin-bottom: var(--space-md);
}
.product-head h2 {
	font-size: var(--t-h2);
	margin-bottom: 0;
	line-height: 1.1;
}

.product-body .lede {
	margin-bottom: var(--space-md);
}
.product-features {
	margin-top: var(--space-md);
}
.product-features li {
	display: flex;
	gap: var(--space-sm);
	padding: var(--space-sm) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: var(--t-small);
	color: var(--gd-text-dim);
}
.product-features li::before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--gd-green);
	border-radius: 50%;
	margin-top: var(--space-xs);
	flex-shrink: 0;
}
.product-cta-row {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
	margin-top: var(--space-lg);
}

/* Case study teaser inside Strategy product */
.case-teaser {
	background: var(--gd-dark-2);
	border-left: 3px solid var(--gd-teal);
	padding: var(--space-lg);
	margin-top: var(--space-lg);
	border-radius: 0 4px 4px 0;
}
.case-teaser .label {
	font-size: var(--t-micro);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gd-teal);
	margin-bottom: var(--space-sm);
}
.case-teaser h4 {
	font-size: var(--t-h4);
	margin-bottom: var(--space-sm);
	color: var(--gd-white);
}
.case-teaser p {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
}
.case-teaser .link {
	font-size: var(--t-small);
	font-weight: 500;
	color: var(--gd-teal);
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
}
.case-teaser .link:hover {
	color: var(--gd-green);
}

@media (max-width: 900px) {
	.product {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}
}

/* ===================================================================
   PRODUCTS SECTION — click-driven tab panel
   =================================================================== */
.products-layout {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--space-xl);
}

.product-nav {
	position: sticky;
	top: 120px;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	
}

.product-nav-link {
	display: block;
	font-size: var(--t-h3);
	font-weight: 500;
	color: var(--gd-text);
	padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
	border-left: 2px solid transparent;
	text-decoration: none;
	line-height: 1.2;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
}

.product-nav-link:hover {
	color: var(--gd-teal);
}

.product-nav-link.is-active {
	color: var(--gd-teal);
	border-left-color: var(--gd-teal);
}

.products-content {
	min-height: 420px;
}

.accordion-chevron {
	display: none;
	color: var(--gd-teal);
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.product {
	display: none;
}

.product.is-active {
	display: block;
	animation: productFadeIn 0.2s ease;
	border-left: 1px solid rgba(29, 166, 164, 0.15);
	padding-left: var(--space-xl);
}

@keyframes productFadeIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
	.products-layout {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0 var(--gutter);
	}

	.products-nav-col {
		display: none;
	}

	.product {
		display: block;
		padding: var(--space-lg) 0;
		border-bottom: 1px solid rgba(29, 166, 164, 0.18);
		scroll-margin-top: 80px;
	}

	.product:last-child {
		border-bottom: none;
	}

	.product-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: var(--space-md);
		cursor: pointer;
		user-select: none;
	}

	.accordion-chevron {
		display: flex;
	}

	.product-head[aria-expanded="true"] .accordion-chevron {
		transform: rotate(180deg);
	}

	.product-head[aria-expanded="false"] + .product-body {
		display: none;
	}

	.product.is-active {
		border-left: none;
    	padding-left: 0;
	}
}

/* Engagement principle */
.principle {
	background: var(--gd-dark-2);
	padding: var(--space-2xl);
	margin: var(--space-2xl) 0;
	text-align: center;
	border-radius: var(--br-card);
	border: 1px solid rgba(29, 166, 164, 0.18);
}
.principle h3 {
	font-size: var(--t-h2);
	margin-bottom: var(--space-md);
	color: var(--gd-white);
}
.principle .pink-accent {
	color: var(--gd-pink);
}
.principle p {
	max-width: 640px;
	margin: 0 auto;
	color: var(--gd-text-dim);
}

/* Proof section — placeholders held */
.proof-grid {
	gap: var(--gap-card);
	margin-top: var(--pad-tile);
}
.proof-card {
	padding: var(--space-lg);
	border: 1px solid rgba(29, 166, 164, 0.12);
}
.proof-card h4 {
	margin-bottom: var(--space-md);
	color: var(--gd-white);
}
@media (max-width: 900px) {
	.proof-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================================================================
   THE NETWORK PAGE
   =================================================================== */

/* Velocity counter strip */
.velocity-strip {
	gap: var(--space-lg);
	padding: var(--space-xl) 0;
	border-top: 1px solid rgba(29, 166, 164, 0.18);
	border-bottom: 1px solid rgba(29, 166, 164, 0.18);
	margin: var(--space-xl) 0px;
}
.velocity-stat {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	line-height: 1;
}
.velocity-stat .num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--t-h1);
	color: var(--gd-white);
	letter-spacing: -0.02em;
	/* margin-bottom: var(--space-sm); */
}
.velocity-stat .num.teal {
	color: var(--gd-teal);
}
.velocity-stat .num.pink {
	color: var(--gd-pink);
}
.velocity-stat .label {
	font-size: var(--t-small);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gd-text-dim);
}
.velocity-stat .sublabel {
	font-size: var(--t-micro);
	color: var(--gd-text-faint);
	/* margin-top: var(--space-xs); */
}
@media (max-width: 900px) {
	.velocity-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}
}

/* Heroes row */
.heroes-section {
	margin-bottom: var(--space-2xl);
}
.heroes-grid {
	gap: var(--gap-card);
}
.hero-creator {
	padding: var(--space-lg);
	border: 1px solid rgba(240, 87, 131, 0.18);
	position: relative;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: var(--space-md);
}
.hero-creator .gd-placeholder {
	aspect-ratio: 1;
}

@media (max-width: 1300px) {
	.heroes-grid {
		grid-template-columns: 1fr;
	}
}

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

/* Filter pills */
.filter-section {
	margin-bottom: var(--space-md);
}
.filter-row {
	display: flex;
	gap: var(--space-xs);
	flex-wrap: wrap;
	margin-bottom: var(--space-sm);
}
.filter-label {
	font-size: var(--t-micro);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	margin-right: var(--space-sm);
	align-self: center;
}
.filter-pill {
	font-size: var(--t-small);
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: var(--space-xs) var(--space-sm);
	border-radius: 99px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	color: var(--gd-text-dim);
	transition: all 0.2s var(--ease);
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
}
.filter-pill:hover {
	border-color: rgba(29, 166, 164, 0.6);
	color: var(--gd-white);
}
.filter-pill.active {
	background: rgba(29, 166, 164, 0.12);
	border-color: var(--gd-teal);
	color: var(--gd-white);
}
.filter-pill .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
}
.filter-pill[data-tier="diamond"] .dot {
	background: var(--tier-diamond);
}
.filter-pill[data-tier="platinum"] .dot {
	background: var(--tier-platinum);
}
.filter-pill[data-tier="gold"] .dot {
	background: var(--tier-gold);
}
.filter-pill[data-tier="silver"] .dot {
	background: var(--tier-silver);
}
.filter-pill[data-tier="emerging"] .dot {
	background: var(--tier-green);
}
.filter-pill[data-tier="lifestyle"] .dot {
	background: var(--gd-pink);
}
.filter-pill[data-tier="blue"] .dot {
	background: var(--tier-blue);
}
.filter-pill[data-tier="red"] .dot {
	background: #ff2442;
}

/* pills-scroll-wrap — outer clip+fade container (newsroom) */
.pills-scroll-wrap {
	position: relative;
	overflow: hidden;
}
.pills-scroll-wrap::after {
	content: '';
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: 48px;
	background: linear-gradient(to right, transparent, var(--gd-dark));
	pointer-events: none;
	z-index: 1;
}
.filter-selects {
	display: none;
}

.filter-select {
	width: 100%;
	padding: 10px var(--space-sm);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--br-pill);
	color: var(--gd-white);
	font-size: var(--t-small);
	font-family: inherit;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
	cursor: pointer;
}
.filter-select:focus {
	outline: none;
	border-color: var(--gd-teal);
}
.filter-select option {
	background: var(--gd-dark);
	color: var(--gd-white);
}

/* .pills-inner — scrolling pill row inside filter-row (creators) */
.pills-inner {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	/* Newsroom: .series-pills scrolls inside the clip wrapper */
	.pills-scroll-wrap .series-pills {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-right: 40px;
		padding-bottom: 2px;
	}
	.pills-scroll-wrap .series-pills::-webkit-scrollbar {
		display: none;
	}
	/* Creators: .filter-row stays fixed, .pills-inner scrolls */
	.filter-row {
		position: relative;
		flex-wrap: nowrap;
		align-items: center;
	}
	.filter-row::after {
		content: '';
		position: absolute;
		right: 0; top: 0; bottom: 0;
		width: 48px;
		background: linear-gradient(to right, transparent, var(--gd-dark));
		pointer-events: none;
		z-index: 1;
	}
	.pills-inner {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-right: 40px;
		padding-bottom: 2px;
	}
	.pills-inner::-webkit-scrollbar {
		display: none;
	}
	.filter-pill {
		flex-shrink: 0;
	}
	.filter-row {
		display: none;
	}
	.filter-selects {
		display: flex;
		flex-direction: row;
		gap: var(--space-sm);
		margin-bottom: var(--space-md);
	}
}

/* Creator card grid */
.creator-grid {
	gap: var(--space-md);
	margin-bottom: var(--space-2xl);
}
.creator-card {
	padding: var(--space-md);
	position: relative;
	cursor: pointer;
}
.creator-card.hidden {
	display: none;
}
.creator-card[data-tier="diamond"]:hover {
	border-color: var(--tier-diamond);
}
.creator-card[data-tier="platinum"]:hover {
	border-color: var(--tier-platinum);
}
.creator-card[data-tier="gold"]:hover {
	border-color: var(--tier-gold);
}
.creator-card[data-tier="silver"]:hover {
	border-color: var(--tier-silver);
}
.creator-card[data-tier="emerging"]:hover {
	border-color: var(--tier-green);
}
.creator-card[data-tier="blue"]:hover {
	border-color: var(--tier-blue);
}
.creator-card[data-tier="lifestyle"]:hover {
	border-color: var(--gd-pink);
}
.creator-card[data-tier="hero"] {
	border-color: rgba(240, 87, 131, 0.32);
}
.creator-card[data-tier="hero"]:hover {
	border-color: var(--gd-pink);
}
.creator-card[data-tier="hero"] .tier-badge {
	color: var(--gd-pink);
	border: 1px solid var(--gd-pink);
}
.creator-card .gd-placeholder {
	aspect-ratio: 4/5;
	margin-bottom: 16px;
}
.creator-card .tier-badge {
	position: absolute;
	top: 28px;
	right: 28px;
	font-size: var(--t-micro);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: var(--space-xs) var(--space-sm);
	border-radius: 2px;
	background: rgba(8, 27, 35, 0.85);
	backdrop-filter: blur(4px);
}
.creator-card[data-tier="diamond"] .tier-badge {
	color: var(--tier-diamond);
	border: 1px solid var(--tier-diamond);
}
.creator-card[data-tier="platinum"] .tier-badge {
	color: var(--tier-platinum);
	border: 1px solid var(--tier-platinum);
}
.creator-card[data-tier="gold"] .tier-badge {
	color: var(--tier-gold);
	border: 1px solid var(--tier-gold);
}
.creator-card[data-tier="silver"] .tier-badge {
	color: var(--tier-silver);
	border: 1px solid var(--tier-silver);
}
.creator-card[data-tier="emerging"] .tier-badge {
	color: var(--tier-green);
	border: 1px solid var(--tier-green);
}
.creator-card[data-tier="blue"] .tier-badge {
	color: var(--tier-blue);
	border: 1px solid var(--tier-blue);
}
.creator-card[data-tier="lifestyle"] .tier-badge {
	color: var(--gd-pink);
	border: 1px solid var(--gd-pink);
}

.creator-card h4 {
	margin-bottom: var(--space-xs);
	text-wrap: pretty;
}

.creator-card .region {
	font-size: var(--t-micro);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	margin-bottom: var(--space-sm);
}
.creator-card .function {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.5;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-height 0.4s var(--ease),
		opacity 0.3s var(--ease);
}
.creator-card:hover .function {
	max-height: 100px;
	opacity: 1;
	margin-top: 4px;
}
.creator-card .access-link {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gd-teal);
	margin-top: var(--space-sm);
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.3s var(--ease-out);
}
.creator-card:hover .access-link {
	opacity: 1;
	transform: translateY(0);
}

.empty-state {
	display: none;
	padding: var(--space-2xl) var(--space-lg);
	text-align: center;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: var(--br-card);
	margin-bottom: var(--space-2xl);
}
.empty-state.visible {
	display: block;
}
.empty-state p {
	color: var(--gd-text-dim);
}

@media (max-width: 1024px) {
	.creator-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.creator-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.creator-grid {
		grid-template-columns: 1fr;
	}
}

/* Media kit gate banner */
.gate-banner {
	background: var(--gd-dark-2);
	border: 1px solid rgba(29, 166, 164, 0.3);
	padding: var(--space-xl);
	margin: 0px var(--gutter);
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--space-lg);
	align-items: center;
	border-radius: var(--br-card);
}

.gate-banner p {
	margin-top: var(--space-sm);
	color: var(--gd-text-dim);
	margin-bottom: 0;
}
@media (max-width: 900px) {
	.gate-banner {
		grid-template-columns: 1fr;
	}
}

/* ===================================================================
   NEWSROOM PAGE
   =================================================================== */

/* Market Intelligence section */
.mi-section {
	margin-top: var(--space-2xl);
}
.mi-section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
	padding-bottom: var(--space-md);
	border-bottom: 1px solid rgba(29, 166, 164, 0.18);
}

.mi-section-head p {
	color: var(--gd-text-dim);
	max-width: 320px;
	text-align: right;
	margin-bottom: 0px;
}

.mi-grid {
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
}
.mi-card {
	border: 1px solid rgba(29, 166, 164, 0.18);
	padding: var(--space-xl);
	display: flex;
	flex-direction: column;
}
.mi-card:hover {
	border-color: var(--gd-teal);
}

.mi-card .abstract {
	font-size: var(--t-small);
	margin: var(--space-md) 0;
}
.mi-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	padding: var(--space-md) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: var(--space-md);
}
.mi-stat .val {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--t-h3);
	color: var(--gd-teal);
	display: block;
	line-height: 1.1;
}
.mi-stat .lbl {
	font-size: var(--t-micro);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	margin-top: var(--space-xs);
	display: block;
}
.mi-meta {
	font-size: var(--t-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	margin-bottom: var(--space-md);
}
.mi-ctas {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-top: auto;
}
.price-tag {
	font-weight: 600;
}

.mi-bundle {
	background: rgba(79, 193, 107, 0.05);
	border: 1px dashed rgba(79, 193, 107, 0.4);
	padding: var(--space-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-md);
	border-radius: 2px;
}

.mi-bundle strong {
	color: var(--gd-green);
}
@media (max-width: 900px) {
	.mi-grid {
		grid-template-columns: 1fr;
	}
	.mi-section-head {
		flex-direction: column;
		align-items: start;
	}
	.mi-section-head p {
		text-align: left;
	}
	.mi-bundle {
		flex-direction: column;
		align-items: start;
	}
}

/* Outbound — custom analysis prompt */
.outbound {
	margin-top: var(--space-xl);
	text-align: center;
}
.outbound p {
	color: var(--gd-text-dim);
}
.outbound a {
	color: var(--gd-teal);
	font-weight: 500;
}
.outbound a:hover {
	color: var(--gd-green);
}

/* Roots & Reach section */
.rr-section {
	margin-top: var(--space-2xl);
}
.series-pills {
	display: flex;
	gap: var(--space-xs);
	flex-wrap: wrap;
	margin: var(--space-lg) 0 var(--space-xl);
}
.episode-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap-card);
}
.episode-card {
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.episode-card.hidden {
	display: none;
}
.episode-card .gd-placeholder {
	position: relative;
	overflow: hidden;
	margin-bottom: var(--space-md);
	background: linear-gradient(
		90deg,
		var(--gd-dark-2) 25%,
		var(--gd-dark-3) 50%,
		var(--gd-dark-2) 75%
	);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.6s ease-in-out infinite;
}
.episode-card[data-source="YouTube"] .gd-placeholder { aspect-ratio: 16 / 9; }
.episode-card[data-source="TikTok"] .gd-placeholder  { aspect-ratio: 9 / 16; }
.episode-card[data-source="Instagram"] .gd-placeholder { aspect-ratio: 4 / 5; }
.episode-card[data-source="RedNote"] .gd-placeholder { aspect-ratio: 3 / 4; }
.episode-card[data-source="Spotify"] .gd-placeholder { aspect-ratio: unset; }
.episode-card .gd-placeholder .gd-placeholder-label {
	display: none;
}
.episode-card .gd-placeholder.has-embed {
	background: none;
	animation: none;
}
.episode-card blockquote {
	border: none;
}
.episode-card.skeleton-card .skeleton-line {
	margin-top: var(--space-sm);
}
.series-tag {
	display: inline-block;
	font-size: var(--t-micro);
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border-radius: 2px;
	margin-bottom: var(--space-sm);
}
.series-tag[data-series="cultivated"] {
	color: var(--gd-teal);
}
.series-tag[data-series="trust-layer"] {
	color: var(--gd-pink);
}
.series-tag[data-series="common-ground"] {
	color: var(--gd-green);
}
.series-tag[data-series="spotify"] {
	color: var(--tier-gold);
}
.series-tag[data-series="rednote"],
.episode-card[data-source="RedNote"] .series-tag {
	color: #ff2442;
}

.episode-card h4 {
	min-height: 44px;
	text-wrap: pretty;
}
.episode-card .meta {
	display: flex;
	justify-content: space-between;
	font-size: var(--t-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
	margin-top: auto;
	padding-top: var(--space-sm);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.episode-card .upcoming {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: var(--space-xs);
	background: rgba(240, 87, 131, 0.15);
	color: var(--gd-pink);
	border-radius: 2px;
}
.episode-card {
	position: relative;
}

/* ===================================================================
   EPISODE SOURCE SECTIONS — format-rows architecture
   Each source (YouTube / Spotify / Instagram / TikTok) renders in its
   own section with its native aspect ratio. Filter pills hide whole
   sections; per-source aspect ratios respect each platform's content.
   =================================================================== */
.episode-sections {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}
.episode-source-section.hidden {
	display: none;
}
.source-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: var(--space-md);
	gap: var(--space-md);
}
.source-section-head .eyebrow {
	margin-bottom: 0;
}
.source-section-count {
	font-size: var(--t-micro);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gd-text-faint);
}


/* ===================================================================
   EPISODE THUMBNAIL CARD
   Used for YouTube, TikTok, and Instagram (when a thumbnail URL is
   available). The image fills the platform-matched aspect-ratio
   placeholder via object-fit: cover.
   =================================================================== */
.episode-thumb-link {
	display: block;
}
.episode-thumb-link img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.episode-thumb-link:hover img,
.episode-thumb-link:focus-visible img {
	transform: scale(1.03);
}

/* ===================================================================
   EPISODE STATIC CARD — Instagram and TikTok click-through.
   Used by newsroom.js when source is IG or TikTok. Replaces what
   would otherwise be a third-party iframe + embed.js load. Avoids
   the ~100KB JS, sensor permission requests, unload-handler
   violations, and the in-console recruitment ads.
   =================================================================== */
.episode-static {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	width: 100%;
	height: 100%;
	padding: var(--space-md);
	text-decoration: none;
	color: var(--gd-text-dim);
	transition: color 0.2s ease, background-color 0.2s ease;
}
.episode-static:hover,
.episode-static:focus-visible {
	color: var(--gd-teal);
	background-color: rgba(29, 166, 164, 0.04);
}
.episode-static .eyebrow {
	margin-bottom: 0;
}
.episode-static-cta {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}
.episode-static-cta .arrow {
	display: inline-block;
	margin-left: 2px;
	transition: transform 0.2s ease;
}
.episode-static:hover .arrow,
.episode-static:focus-visible .arrow {
	transform: translate(2px, -2px);
}

@media (max-width: 900px) {
	.episode-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.episode-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-xl);
	margin-top: var(--space-xl);
	align-items: start;
}

.contact-side {
	background: var(--gd-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-top: 3px solid var(--gd-green);
	border-radius: var(--br-card);
	padding: var(--space-xl) var(--space-lg);
}

.contact-side h3 {
	margin-bottom: var(--space-md);
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}
.field {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}
.field label {
	font-size: var(--t-micro);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gd-teal);
	font-weight: 500;
}
.field input,
.field textarea,
.field select {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	padding: var(--space-sm) 0;
	color: var(--gd-white);
	transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: none;
	border-bottom-color: var(--gd-green);
}
.field textarea {
	resize: vertical;
	min-height: 120px;
}
.field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231DA6A4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 4px center;
	padding-right: var(--space-md);
}
.field select option {
	background: var(--gd-dark);
	color: var(--gd-white);
}
.consent {
	display: flex;
	gap: var(--space-sm);
	align-items: start;
	padding: var(--space-md) 0;
}
.consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: var(--space-xs);
	accent-color: var(--gd-teal);
}
.consent label {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	letter-spacing: 0;
	text-transform: none;
}
.consent label a {
	color: var(--gd-teal);
	text-decoration: underline;
}

.contact-side ul {
	display: flex;
	flex-direction: column;
	list-style: none;
}
.contact-side li {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-side li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-side li .num {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--gd-teal);
	font-size: var(--t-body);
	letter-spacing: 0.05em;
	flex-shrink: 0;
	min-width: 2em;
}
.contact-side li .text {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.6;
}
.contact-side li .text strong {
	color: var(--gd-white);
	font-weight: 500;
	display: block;
	margin-bottom: var(--space-xs);
}
@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}
}

/* ===================================================================
   MODAL — gated downloads (media kits + market intelligence chapters)
   =================================================================== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 27, 35, 0.85);
	backdrop-filter: blur(8px);
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
}
.modal-overlay.visible {
	display: flex;
}
.modal {
	background: var(--gd-dark-2);
	border: 1px solid rgba(29, 166, 164, 0.3);
	border-radius: 6px;
	max-width: 520px;
	width: 100%;
	padding: var(--space-lg);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gd-text-dim);
	font-size: var(--t-h3);
	border-radius: 50%;
	transition: all 0.2s var(--ease);
}
.modal-close:hover {
	background: var(--gd-dark-3);
	color: var(--gd-white);
}
.modal-asset {
	font-size: var(--t-small);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gd-teal);
	margin-bottom: var(--space-xs);
}
.modal p {
	color: var(--gd-text-dim);
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}
.modal-success {
	display: none;
	text-align: center;
	padding: var(--space-md) 0;
}
.modal-success.visible {
	display: block;
}
.modal-success .check {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--space-md);
	border-radius: 50%;
	background: rgba(79, 193, 107, 0.12);
	border: 1px solid var(--gd-green);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gd-green);
	font-size: var(--t-h2);
}

@media (max-width: 600px) {
	.modal-overlay {
		padding: 0;
		align-items: stretch;
	}
	.modal {
		max-width: none;
		border-radius: 0;
		border: none;
		max-height: 100vh;
		padding: var(--space-lg) var(--space-md);
	}
}

/* ===================================================================
   PROGRAMS/FAB PAGE — stub for paste-in
   =================================================================== */
.fab-stub {
	padding: var(--space-3xl) 0;
	text-align: center;
}
.fab-stub h1 {
	font-size: var(--t-h1);
	margin-bottom: var(--space-md);
	color: var(--gd-teal);
}

/* ===================================================================
   404 PAGE
   =================================================================== */
.not-found {
	padding: 120px 0;
	text-align: center;
}
.not-found h1 {
	font-size: var(--t-mega);
	color: var(--gd-teal);
	margin-bottom: var(--space-md);
	letter-spacing: -0.04em;
}
.not-found p {
	color: var(--gd-text-dim);
}
.not-found-ctas {
	display: flex;
	gap: var(--space-md);
	justify-content: center;
	flex-wrap: wrap;
}

/* ===================================================================
   PRINT
   =================================================================== */
@media print {
	body {
		background: white;
		color: black;
	}
	.gd-header,
	.gd-footer,
	.splash,
	.gd-cookie {
		display: none !important;
	}
	.page {
		display: block !important;
		padding-top: 0 !important;
	}
	* {
		box-shadow: none !important;
	}
}

/* ===================================================================
   TYPOGRAPHIC WIDOW/ORPHAN GUARDS
   text-wrap: balance and pretty prevent single-word hangers on
   modern browsers. Combined with &nbsp; in markup as a fallback.
   =================================================================== */
h1,
h2,
h3 {
	text-wrap: balance;
}
.lede,
.hero-lede,
.hero-tagline,
blockquote,
.abstract,
.pull-quote-text,
.section-head p {
	text-wrap: pretty;
}

h1 {
	font-size: var(--t-h1);
}

h2 {
	font-size: var(--t-h2);
}

h3 {
	font-size: var(--t-h3);
}

/* ===================================================================
   PARTNERS PAGE — Grid + FAB 12 carousel
   Append to existing styles.css. Uses brand tokens only.
   =================================================================== */

/* ---------- Shared media placeholder (used when image URL is empty) ---------- */
.partner-card-placeholder,
.breeder-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--t-mega);
	letter-spacing: -0.02em;
	color: var(--gd-text-faint);
	background:
		radial-gradient(
			circle at 30% 20%,
			rgba(29, 166, 164, 0.12),
			transparent 55%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(79, 193, 107, 0.08),
			transparent 55%
		),
		var(--gd-dark-2);
}

/* ===================================================================
   SECTION 1 — PARTNERS GRID
   =================================================================== */
.partners-section {
	background: var(--gd-dark);
}

.partners-grid {
	gap: var(--space-lg);
}
@media (min-width: 641px) {
	
	.partners-carousel .fab12-viewport {
		overflow: visible;
	}
	#partnersPrev,
	#partnersNext,
	#partnersDots {
		display: none;
	}
}
.fab12-track.fab12-is-grid {
	display: grid;
	grid-template-columns: repeat(var(--fab12-cols-lg, 3), 1fr);
}
@media (max-width: 1100px) {
	.fab12-track.fab12-is-grid {
		grid-template-columns: repeat(var(--fab12-cols-md, 3), 1fr);
	}
}
@media (max-width: 800px) {
	.fab12-track.fab12-is-grid {
		grid-template-columns: repeat(var(--fab12-cols-sm, 2), 1fr);
		gap: var(--space-md);
	}
}
@media (max-width: 640px) {
	.partner-card {
		transition:
			transform 0.55s var(--ease-out),
			opacity 0.55s ease;
		transform: scale(0.86);
		opacity: 0.5;
	}
	.partner-card.is-active {
		transform: scale(1);
		opacity: 1;
	}
	.partner-card.skeleton-card {
		transform: scale(1);
		opacity: 1;
	}
}

.partner-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--br-card);
	overflow: hidden;
}

.partner-card-body {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding: var(--space-md);
	flex: 1;
}

.partner-card-name {
	font-size: var(--t-h3);
	letter-spacing: -0.01em;
	color: var(--gd-white);
}

.partner-card-tagline {
	font-size: var(--t-small);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gd-teal);
	font-weight: 500;
	line-height: 1.4;
}

.partner-card-description {
	font-size: var(--t-small);
	margin-bottom: var(--space-sm);
}

.partner-card-visit {
	margin-top: auto;
}

.partners-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--gd-text-faint);
	padding: var(--space-xl) 0;
}

/* ===================================================================
   SKELETON LOADING — partner cards + breeder cards
   =================================================================== */
@keyframes skeleton-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.skeleton-card {
	pointer-events: none;
	user-select: none;
}

.skeleton-media {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--gd-dark-2) 25%,
		var(--gd-dark-3) 50%,
		var(--gd-dark-2) 75%
	);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.skeleton-body {
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	flex: 1;
}

.skeleton-line {
	height: 12px;
	border-radius: 3px;
	background: linear-gradient(
		90deg,
		var(--gd-dark-2) 25%,
		var(--gd-dark-3) 50%,
		var(--gd-dark-2) 75%
	);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.skeleton-line--title {
	height: 18px;
	width: 65%;
}
.skeleton-line--mid {
	width: 80%;
}
.skeleton-line--short {
	width: 45%;
}
.skeleton-line--btn {
	height: 34px;
	width: 80px;
	margin-top: var(--space-xs);
	border-radius: var(--br-btn, 4px);
}

/* ===================================================================
   SECTION 2 — FAB 12 CAROUSEL
   =================================================================== */
.fab12-section {
	background: var(--gd-dark);
	position: relative;
}
.fab12-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(29, 166, 164, 0.25) 50%,
		transparent 100%
	);
}

.fab12-carousel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: var(--space-md);
	row-gap: var(--space-lg);
	margin-top: var(--space-xl);
}

.fab12-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(29, 166, 164, 0.1);
	border: 1px solid rgba(29, 166, 164, 0.45);
	color: var(--gd-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s var(--ease);
	flex-shrink: 0;
}
.fab12-arrow:hover:not(:disabled) {
	border-color: var(--gd-teal);
	background: rgba(29, 166, 164, 0.22);
	color: var(--gd-white);
}
.fab12-arrow:disabled {
	opacity: 0.3;
	pointer-events: none;
}

.fab12-viewport {
	overflow: hidden;
	outline: none;
}

.fab12-track {
	display: flex;
	gap: var(--space-md);
	will-change: transform;
	/* transition managed by JS so snapping to clones is instant */
}

.breeder-card-media img {
	object-fit: contain;
	object-position: center;
}

.breeder-card {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	border-radius: var(--br-card);
	overflow: hidden;
}

@media (max-width: 900px) {
	.fab12-track {
		gap: var(--space-md);
	}
}
@media (max-width: 640px) {
	.fab12-carousel {
		grid-template-columns: 48px 1fr 48px;
		margin-left: calc(-1 * var(--gutter));
		margin-right: calc(-1 * var(--gutter));
	}
	.fab12-viewport {
		grid-column: 1 / -1;
		grid-row: 1;
		width: 100%;
	}
	.fab12-arrow {
		position: static;
		transform: none;
		grid-row: 2;
		width: 38px;
		height: 38px;
		justify-self: center;
		align-self: center;
	}
	.fab12-arrow-prev { grid-column: 1; }
	.fab12-arrow-next { grid-column: 3; }
	.fab12-dots {
		grid-column: 2;
		grid-row: 2;
	}
}

.breeder-card-header {
	display: flex;
}

.breeder-card-country {
	text-align: right;
	flex: 1;
	font-family: var(--font-body);
	font-size: var(--t-micro);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.breeder-card-body {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	padding: var(--space-md);
	flex: 1;
}

.breeder-card-name {
	font-size: var(--t-h3);
	letter-spacing: -0.01em;
	color: var(--gd-white);
}

.breeder-card-contact {
	font-weight: 400;
}

.breeder-card-specialty {
	font-family: var(--font-body);
	font-size: var(--t-small);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gd-teal);
	font-weight: 500;
	margin-top: var(--space-xs);
	padding-top: var(--space-sm);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.breeder-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: auto;
	padding-top: var(--space-md);
}

.breeder-card-visit,
.breeder-card-brochure {
	flex: 1 1 auto;
	padding: var(--space-sm) var(--space-md);
	font-size: var(--t-small);
	letter-spacing: 0.03em;
	min-width: 0;
}

/* Disabled state for missing visitUrl / brochureUrl */
.btn.is-disabled {
	opacity: 0.35;
	pointer-events: none;
	cursor: default;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
}

/* ----- Dot pagination ----- */
.fab12-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--space-sm);
	grid-column: 1 / -1;
	grid-row: 2;
	width: fit-content;
	margin: auto;
}

.fab12-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	transition: all 0.3s var(--ease);
	padding: 0;
}
.fab12-dot:hover {
	background: rgba(29, 166, 164, 0.5);
}
.fab12-dot.is-active {
	background: var(--gd-teal);
}

@media (max-width: 900px) {
	.fab12-dot {
		padding: 8px;
	}
}

.breeder-empty {
	flex: 1;
	text-align: center;
	color: var(--gd-text-faint);
	padding: var(--space-xl) 0;
}

/* ===================================================================
   SPLIT CARD — 50/50 image + text, flippable
   =================================================================== */
.split-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.split-card-media {
	order: 1;
}

.split-card-content {
	order: 2;
	margin: var(--gutter);
	margin-right: 0;
}

.split-card--flip .split-card-media {
	order: 2;
}

.split-card--flip .split-card-content {
	order: 1;
	margin-right: var(--gutter);
	margin-left: 0;
}

.split-card-media img,
.split-card-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--br-card);
	display: block;
}

.split-card-media img {
	object-fit: cover;
}

.split-card-placeholder {
	background: var(--gd-dark-2);
	border: 1px dashed rgba(29, 166, 164, 0.2);
}

.split-card-eyebrow {
	font-size: var(--t-micro);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gd-teal);
	margin-bottom: var(--space-sm);
}

.split-card-headline {
	font-size: var(--t-h2);
	line-height: 1.1;
	margin-bottom: var(--space-md);
}

.split-card-body {
	color: var(--gd-text-dim);
	line-height: 1.7;
}

.split-card-body p + p {
	margin-top: var(--space-sm);
}

@media (max-width: 768px) {
	.split-card,
	.split-card--flip {
		grid-template-columns: 1fr;
	}

	.split-card-media,
	.split-card--flip .split-card-media {
		order: 1;
	}

	.split-card-content,
	.split-card--flip .split-card-content {
		order: 2;
		margin: 0;
	}
}

/* ===================================================================
   TESTIMONIAL CARD — single-slide carousel style
   =================================================================== */
.testimonial-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: var(--space-2xl) var(--space-xl);
	background: var(--gd-dark-2);
	border: 1px solid rgba(29, 166, 164, 0.18);
	border-radius: var(--br-card);
	gap: var(--space-lg);
	justify-content: center;
}

.testimonial-mark {
	font-family: var(--font-display);
	font-size: clamp(64px, 8vw, 120px);
	line-height: 0;
	color: var(--gd-teal);
	opacity: 0.25;
	user-select: none;
}

.testimonial-quote {
	font-family: var(--font-display);
	font-style: normal;
	font-weight: normal;
	color: var(--gd-white);
	line-height: 1.45;
	max-width: 760px;
	border: none;
	padding: 0;
	margin: 0;
	letter-spacing: -0.01em;
	text-align: justify;
}

.testimonial-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	padding-top: var(--space-md);
	border-top: 1px solid rgba(29, 166, 164, 0.15);
	width: 100%;
	max-width: 480px;
}

.testimonial-logo {
	max-height: 175px;
	max-width: 350px;
	width: auto;
	object-fit: contain;
}

.testimonial-attr {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	font-style: normal;
}

.testimonial-full-text {
	display: none;
	text-align: left;
	width: 100%;
	max-width: 640px;
	border-top: 1px solid rgba(29, 166, 164, 0.15);
	padding-top: var(--space-lg);
	margin-top: calc(-1 * var(--space-sm));
}

.testimonial-full-text.is-open {
	display: block;
}

.testimonial-full-text p {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	line-height: 1.7;
	margin-bottom: var(--space-sm);
}

.testimonial-full-text p:last-child {
	margin-bottom: 0;
}

.testimonial-expand-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: var(--t-small);
	font-weight: 500;
	color: var(--gd-teal);
	padding: 0;
	transition: color 0.2s ease;
}

.testimonial-expand-btn:hover {
	color: var(--gd-green);
}

.testimonial-expand-btn svg {
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.testimonial-expand-btn[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

/* Dim the off-screen peeks slightly */
.fab12-track > .testimonial-card {
	opacity: 0.35;
	transition: opacity 0.4s var(--ease);
}
.fab12-track > .testimonial-card.is-active {
	opacity: 1;
}

/* ===================================================================
   LEGAL PAGES (Privacy Policy, Cookie Policy, Terms of Use)
   =================================================================== */

.legal-page {
	padding: var(--pad-section) 0;
	min-height: 60vh;
}

.legal-header {
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
	font-family: var(--font-display);
	font-size: var(--t-h1);
	font-weight: 700;
	color: var(--gd-white);
	margin: 0 0 var(--space-sm);
}

.legal-updated {
	font-size: var(--t-small);
	color: var(--gd-text-dim);
	margin: 0;
}

.legal-prose {
	max-width: 760px;
}

.legal-prose h2 {
	font-family: var(--font-display);
	font-size: var(--t-h2);
	font-weight: 700;
	color: var(--gd-white);
	margin: var(--space-2xl) 0 var(--space-md);
}

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

.legal-prose h3 {
	font-family: var(--font-display);
	font-size: var(--t-h3);
	font-weight: 600;
	color: var(--gd-white);
	margin: var(--space-xl) 0 var(--space-sm);
}

.legal-prose p {
	font-size: var(--t-body);
	color: var(--gd-text);
	line-height: 1.7;
	margin: 0 0 var(--space-md);
}

.legal-prose ul,
.legal-prose ol {
	color: var(--gd-text);
	font-size: var(--t-body);
	line-height: 1.7;
	padding-left: var(--space-xl);
	margin: 0 0 var(--space-md);
}

.legal-prose li {
	margin-bottom: var(--space-sm);
}

.legal-prose a {
	color: var(--gd-teal);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-prose a:hover {
	color: var(--gd-green);
}

.legal-prose strong {
	color: var(--gd-white);
	font-weight: 600;
}

.legal-prose hr {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: var(--space-2xl) 0;
}

.legal-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--t-small);
	color: var(--gd-text);
	margin: var(--space-lg) 0;
}

.legal-prose th {
	text-align: left;
	font-weight: 600;
	color: var(--gd-white);
	padding: var(--space-sm) var(--space-md);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-prose td {
	padding: var(--space-sm) var(--space-md);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	vertical-align: top;
}

.legal-prose tr:last-child td {
	border-bottom: none;
}
