/* ================================================================
   HERO — Gray Zone full-screen editorial
   ================================================================ */
.hero {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	padding-block: calc(var(--header-height) + 2.5rem) 3rem;
	background: transparent;
	direction: ltr;
	text-align: left;
}

/* ================= Ambient ================= */
.hero__ambient {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.hero__grid {
	position: absolute;
	inset: -2px;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, #000 20%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, #000 20%, transparent 78%);
	animation: hero-grid-drift 26s linear infinite;
}

@keyframes hero-grid-drift {
	to { background-position: 64px 64px; }
}

.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	will-change: transform;
}

.hero__orb--1 {
	width: 46vw;
	height: 46vw;
	max-width: 640px;
	max-height: 640px;
	top: -12%;
	right: -6%;
	background: radial-gradient(circle, rgba(214, 255, 47, 0.22) 0%, transparent 68%);
	animation: hero-orb-a 20s ease-in-out infinite;
}

.hero__orb--2 {
	width: 34vw;
	height: 34vw;
	max-width: 460px;
	max-height: 460px;
	bottom: -14%;
	left: -8%;
	background: radial-gradient(circle, rgba(120, 130, 255, 0.12) 0%, transparent 70%);
	animation: hero-orb-b 24s ease-in-out infinite;
}

@keyframes hero-orb-a {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-40px, 36px) scale(1.08); }
}

@keyframes hero-orb-b {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(46px, -30px) scale(1.12); }
}

.hero__vignette {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 120% 100% at 50% 0%, transparent 55%, rgba(9, 9, 11, 0.55) 100%),
		linear-gradient(180deg, transparent 60%, var(--color-bg-primary) 100%);
}

/* ================= Layout ================= */
.hero__inner {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

/* ================= Content ================= */
.hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	max-width: 620px;
	will-change: transform;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 0.9rem 0.4rem 0.7rem;
	border: 1px solid var(--color-border-glass);
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.02);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
}

.hero__eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 12px var(--color-accent);
	animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.5); opacity: 0.45; }
}

.hero__title {
	margin: 0;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	font-size: clamp(2.75rem, 8.5vw, 6.5rem);
	display: flex;
	flex-direction: column;
	gap: 0.05em;
}

.hero__title-line {
	display: block;
	overflow: hidden;
	padding-block: 0.04em;
}

.hero__title-inner {
	display: block;
	will-change: transform;
}

.hero__title-chars {
	display: inline-flex;
	flex-wrap: wrap;
}

.hero__char {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.hero__char-inner {
	display: inline-block;
	will-change: transform, opacity, filter;
}

.hero__title-line:not(.hero__title-line--accent) .hero__char-inner {
	background: linear-gradient(180deg, #ffffff 0%, #c9ccd4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__title-line--accent .hero__char-inner {
	color: var(--color-accent);
	text-shadow: 0 0 44px rgba(214, 255, 47, 0.35);
}

.hero__title-line--accent {
	overflow: visible;
}

.hero__subtitle {
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--color-accent);
}

.hero__description {
	max-width: 460px;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--color-text-secondary);
}

.hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem 1.75rem;
	margin-top: 0.5rem;
}

.hero__bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 0.5rem;
	width: 100%;
}

.hero__bottom .hero__actions {
	margin-top: 0;
	width: 100%;
}

.hero__cta {
	position: relative;
	padding: 0.9rem 1.6rem 0.9rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	overflow: hidden;
	isolation: isolate;
	transition: box-shadow 0.45s ease;
}

.hero__cta-aura {
	position: absolute;
	inset: -60%;
	border-radius: inherit;
	background: conic-gradient(
		from 0deg,
		transparent 0deg,
		rgba(214, 255, 47, 0.85) 70deg,
		transparent 140deg,
		rgba(255, 255, 255, 0.28) 220deg,
		transparent 360deg
	);
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.hero__cta.is-lux-active .hero__cta-aura {
	opacity: 1;
}

.hero__cta-shimmer {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgba(255, 255, 255, 0.45) 50%,
		transparent 62%
	);
	pointer-events: none;
}

.hero__cta-icon,
.hero__cta-text {
	position: relative;
	z-index: 1;
}

.hero__cta-icon {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--color-bg-primary);
	color: var(--color-accent);
	transition: transform var(--transition);
}

.hero__cta-play {
	width: 1.05rem;
	height: 1.05rem;
	fill: currentColor;
	margin-left: 2px;
}

.hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--color-text-muted);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color var(--transition);
}

.hero__scroll:hover {
	color: var(--color-white);
}

.hero__scroll-mouse {
	position: relative;
	display: block;
	width: 24px;
	height: 38px;
	border: 1.5px solid var(--color-border-glass);
	border-radius: var(--radius-pill);
}

.hero__scroll-wheel {
	position: absolute;
	top: 7px;
	left: 50%;
	width: 3px;
	height: 7px;
	margin-left: -1.5px;
	border-radius: var(--radius-pill);
	background: var(--color-accent);
	animation: hero-scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-wheel {
	0% { opacity: 0; transform: translateY(0); }
	30% { opacity: 1; }
	60% { opacity: 1; transform: translateY(12px); }
	100% { opacity: 0; transform: translateY(14px); }
}

/* ================= Media ================= */
.hero__media {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(60vh, 520px);
}

.hero__stage {
	position: relative;
	width: min(80vw, 480px);
	aspect-ratio: 1;
	flex-shrink: 0;
}

.hero__ring {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	pointer-events: none;
}

.hero__ring-spin {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 2px;
	background: conic-gradient(from 0deg, transparent 0deg, var(--color-accent) 90deg, transparent 200deg, rgba(214, 255, 47, 0.35) 320deg, transparent 360deg);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	opacity: 0.9;
	animation: hero-ring-spin 12s linear infinite;
}

@keyframes hero-ring-spin {
	to { transform: rotate(360deg); }
}

.hero__ring-glow {
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(214, 255, 47, 0.16) 0%, transparent 62%);
	filter: blur(8px);
	will-change: transform, opacity;
}

.hero__subject {
	position: absolute;
	inset: 3%;
	z-index: 2;
	display: flex;
	align-items: stretch;
	justify-content: center;
	will-change: transform;
}

.hero__subject-frame {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-mask-image: radial-gradient(ellipse 90% 82% at 50% 44%, #000 58%, transparent 100%);
	mask-image: radial-gradient(ellipse 90% 82% at 50% 44%, #000 58%, transparent 100%);
}

.hero__subject-glow {
	position: absolute;
	inset: 12% 8% 18%;
	z-index: 0;
	background: radial-gradient(circle at 50% 38%, rgba(214, 255, 47, 0.14) 0%, transparent 68%);
	pointer-events: none;
}

.hero__subject-ground {
	position: absolute;
	bottom: 5%;
	left: 50%;
	z-index: 1;
	width: 72%;
	height: 16%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(214, 255, 47, 0.2) 0%, transparent 72%);
	filter: blur(16px);
	pointer-events: none;
}

.hero__subject-fade {
	position: absolute;
	inset: auto 0 0;
	z-index: 3;
	height: 52%;
	background: linear-gradient(
		to top,
		var(--color-bg-primary) 0%,
		var(--color-bg-primary) 28%,
		rgba(9, 9, 11, 0.92) 50%,
		transparent 100%
	);
	pointer-events: none;
}

.hero__image {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center center;
	filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.55));
}

/* Auto-fit: portrait cut-out PNGs */
.hero__subject-frame--portrait,
.hero__subject-frame--tall,
.hero__subject-frame--cutout {
	align-items: flex-end;
	justify-content: center;
}

.hero__image--portrait {
	width: auto;
	height: 122%;
	max-width: 128%;
	max-height: none;
	object-fit: contain;
	object-position: center bottom;
}

/* Auto-fit: wide PNG cut-outs (subject on canvas) */
.hero__image--cutout {
	width: auto;
	height: 128%;
	max-width: 135%;
	max-height: none;
	object-fit: contain;
	object-position: center bottom;
}

/* Auto-fit: landscape photos */
.hero__image--landscape {
	width: 112%;
	height: auto;
	max-height: 96%;
	object-position: center center;
}

/* Auto-fit: square / balanced */
.hero__image--square {
	width: 104%;
	height: 104%;
	object-position: center center;
}

/* Auto-fit: ultra-tall subjects */
.hero__image--tall {
	width: auto;
	height: 130%;
	max-width: 118%;
	object-position: center 12%;
}

.hero__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border-glass);
	background:
		radial-gradient(circle at 50% 35%, rgba(214, 255, 47, 0.08), transparent 60%),
		var(--color-glass-surface);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.hero__placeholder-icon {
	width: clamp(3rem, 8vw, 5rem);
	height: clamp(3rem, 8vw, 5rem);
	color: var(--color-accent);
	opacity: 0.85;
}

.hero__waveform {
	position: absolute;
	bottom: 4%;
	right: 2%;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 54px;
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-md);
	background: rgba(9, 9, 11, 0.4);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	will-change: transform, opacity;
}

.hero__wave-bar {
	width: 3px;
	height: var(--h, 40%);
	border-radius: var(--radius-pill);
	background: linear-gradient(180deg, var(--color-accent), rgba(214, 255, 47, 0.3));
	transform-origin: bottom center;
	transform: scaleY(0.2);
}

.hero__badge {
	position: absolute;
	top: 6%;
	left: 2%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--color-border-glass);
	border-radius: var(--radius-pill);
	background: rgba(9, 9, 11, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-white);
	will-change: transform, opacity;
}

.hero__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff4d4d;
	box-shadow: 0 0 10px #ff4d4d;
	animation: hero-pulse 1.4s ease-in-out infinite;
}

/* ================= Social rail ================= */
.hero__social {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	width: 100%;
	max-width: 100%;
}

.hero__social-label {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.hero__social-line {
	width: 1px;
	height: 22px;
	flex-shrink: 0;
	background: linear-gradient(180deg, var(--color-border-glass), transparent);
}

.hero__social-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero__social-list li {
	display: flex;
}

.hero__social-link {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-border-glass);
	border-radius: 50%;
	color: var(--color-text-secondary);
	background: rgba(255, 255, 255, 0.02);
	transition: border-color 0.45s ease, background-color 0.45s ease, color 0.45s ease;
}

.hero__social-link.is-lux-active {
	border-color: rgba(214, 255, 47, 0.55);
	background: rgba(214, 255, 47, 0.1);
	color: var(--color-accent);
	box-shadow: 0 0 24px rgba(214, 255, 47, 0.22);
}

.hero__social-link:hover {
	color: var(--color-accent);
	border-color: var(--color-border-hover);
}

.hero__social-icon {
	width: 1.05rem;
	height: 1.05rem;
}

/* ================================================================
   RESPONSIVE — mobile & tablet only (desktop 768px+ unchanged)
   Breakpoints: 359 | 480 | 640 | 767 | landscape
   ================================================================ */

/* ---------- Tablet portrait / large phone (≤767px) ---------- */
@media (max-width: 767px) {
	.hero {
		min-height: auto;
		align-items: flex-start;
		padding-block:
			calc(var(--header-height) + 1.25rem)
			max(2rem, env(safe-area-inset-bottom, 0px));
		padding-inline:
			max(1rem, env(safe-area-inset-left, 0px))
			max(1rem, env(safe-area-inset-right, 0px));
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: clamp(1.25rem, 4vw, 2rem);
		width: 100%;
	}
	.hero__grid {
		mask-image: radial-gradient(ellipse 95% 70% at 50% 18%, #000 15%, transparent 72%);
		-webkit-mask-image: radial-gradient(ellipse 95% 70% at 50% 18%, #000 15%, transparent 72%);
		background-size: 48px 48px;
	}

	.hero__orb--1 {
		width: 72vw;
		height: 72vw;
		top: -8%;
		right: -22%;
		opacity: 0.38;
	}

	.hero__orb--2 {
		width: 56vw;
		height: 56vw;
		bottom: 28%;
		left: -24%;
		opacity: 0.28;
	}

	.hero__media {
		order: 0;
		min-height: 0;
		width: 100%;
		padding-inline: 0.25rem;
	}

	.hero__copy {
		order: 1;
		align-items: center;
		text-align: center;
		gap: 1.125rem;
		max-width: none;
		width: 100%;
	}

	.hero__bottom {
		order: 2;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		margin-top: 0;
		width: 100%;
	}

	.hero__actions {
		flex: 0 1 auto;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.875rem;
		width: 100%;
	}

	.hero__social {
		justify-content: center;
		align-items: center;
		gap: 0.5rem 0.65rem;
		width: 100%;
		max-width: 22rem;
		padding: 0.55rem 0.75rem;
		border: 1px solid var(--color-border-glass);
		border-radius: var(--radius-pill);
		background: rgba(255, 255, 255, 0.02);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.hero__cta {
		width: 100%;
		max-width: 22rem;
		justify-content: center;
	}

	.hero__eyebrow {
		align-self: center;
		font-size: 0.625rem;
		letter-spacing: 0.16em;
		padding: 0.35rem 0.75rem 0.35rem 0.6rem;
		max-width: 100%;
	}

	.hero__eyebrow-text {
		white-space: normal;
		text-align: center;
		line-height: 1.35;
	}

	.hero__title {
		align-items: center;
		font-size: clamp(2.35rem, 11.5vw, 3.75rem);
		line-height: 0.94;
		letter-spacing: -0.025em;
	}

	.hero__title-line {
		text-align: center;
	}

	.hero__title-chars {
		justify-content: center;
	}

	.hero__subtitle {
		font-size: 0.9375rem;
	}

	.hero__description {
		max-width: 36rem;
		margin-inline: auto;
		font-size: 0.9375rem;
		line-height: 1.65;
		text-align: center;
	}

	.hero__stage {
		width: min(78vw, 360px);
		margin-inline: auto;
	}

	.hero__subject {
		inset: 2.5%;
	}

	.hero__subject-fade {
		height: 48%;
	}

	.hero__badge {
		top: 4%;
		left: 0;
		font-size: 0.625rem;
		padding: 0.35rem 0.7rem;
	}

	.hero__waveform {
		bottom: 2%;
		right: 0;
		height: 48px;
		padding: 0.4rem 0.6rem;
		gap: 2px;
	}

	.hero__wave-bar {
		width: 2.5px;
	}

	.hero__scroll {
		align-self: center;
	}

	.hero__social-label {
		font-size: 0.625rem;
		letter-spacing: 0.18em;
		flex-shrink: 0;
	}

	.hero__social-line {
		height: 20px;
	}

	.hero__social-list {
		justify-content: center;
	}

	.hero__social-link {
		width: var(--touch-min, 44px);
		height: var(--touch-min, 44px);
	}
}

/* ---------- Medium phones (≤639px) ---------- */
@media (max-width: 639px) {
	.hero {
		padding-block:
			calc(var(--header-height) + 1rem)
			max(1.75rem, env(safe-area-inset-bottom, 0px));
	}

	.hero__inner {
		gap: 1.35rem;
	}

	.hero__title {
		font-size: clamp(2.1rem, 12vw, 3.25rem);
	}

	.hero__description {
		font-size: 0.875rem;
		line-height: 1.7;
	}

	.hero__stage {
		width: min(82vw, 320px);
	}

	.hero__image--cutout,
	.hero__image--portrait {
		height: 124%;
		max-width: 132%;
	}

	.hero__cta {
		min-height: var(--touch-min, 44px);
		padding: 0.8rem 1.35rem 0.8rem 0.65rem;
		font-size: 0.72rem;
	}

	.hero__scroll {
		font-size: 0.6875rem;
		letter-spacing: 0.16em;
	}

	.hero__scroll-mouse {
		width: 22px;
		height: 34px;
	}
}

/* ---------- Small phones (≤479px) ---------- */
@media (max-width: 479px) {
	.hero__bottom {
		gap: 0.875rem;
	}

	.hero__social {
		padding: 0.45rem 0.55rem;
		gap: 0.4rem 0.5rem;
	}

	.hero__social-label {
		display: none;
	}

	.hero__social-line {
		display: none;
	}

	.hero__social-link {
		width: 40px;
		height: 40px;
	}

	.hero__actions {
		gap: 0.75rem;
	}

	.hero__cta {
		padding: 0.75rem 1rem 0.75rem 0.6rem;
	}

	.hero__stage {
		width: min(86vw, 300px);
	}

	.hero__subject-fade {
		height: 54%;
	}

	.hero__badge {
		font-size: 0.6rem;
		letter-spacing: 0.12em;
	}

	.hero__waveform {
		height: 40px;
		max-width: calc(100% - 0.5rem);
		overflow: hidden;
	}

	.hero__wave-bar:nth-child(n + 22) {
		display: none;
	}
}

/* ---------- Extra-small (≤359px) ---------- */
@media (max-width: 359px) {
	.hero {
		padding-inline: max(0.75rem, env(safe-area-inset-left, 0px))
			max(0.75rem, env(safe-area-inset-right, 0px));
	}

	.hero__title {
		font-size: 1.85rem;
	}

	.hero__cta-text {
		font-size: 0.6875rem;
		letter-spacing: 0.1em;
	}

	.hero__cta-icon {
		width: 2rem;
		height: 2rem;
	}

	.hero__stage {
		width: min(90vw, 268px);
	}

	.hero__social-link {
		width: 40px;
		height: 40px;
	}
}

/* ---------- Mobile landscape (≤767px, landscape) ---------- */
@media (max-width: 767px) and (orientation: landscape) {
	.hero {
		min-height: auto;
		padding-block:
			calc(var(--header-height) + 0.75rem)
			max(1.25rem, env(safe-area-inset-bottom, 0px));
	}

	.hero__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			'media copy'
			'media bottom';
		align-items: center;
		gap: 1rem 1.5rem;
	}

	.hero__media {
		order: unset;
		grid-area: media;
		min-height: 0;
	}

	.hero__copy {
		grid-area: copy;
		gap: 0.75rem;
		align-items: flex-start;
		text-align: left;
		max-width: none;
		width: 100%;
	}

	.hero__bottom {
		grid-area: bottom;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.65rem;
		width: 100%;
	}

	.hero__social {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 0.45rem;
		width: 100%;
		max-width: none;
		margin-top: 0;
		padding: 0.4rem 0.55rem;
		border: 1px solid var(--color-border-glass);
		border-radius: var(--radius-pill);
		background: rgba(255, 255, 255, 0.02);
	}

	.hero__social-label,
	.hero__social-line {
		display: none;
	}

	.hero__social-list {
		flex-wrap: nowrap;
		gap: 0.4rem;
	}

	.hero__social-link {
		width: 36px;
		height: 36px;
	}

	.hero__title {
		font-size: clamp(1.65rem, 5.5vw, 2.35rem);
		align-items: flex-start;
	}

	.hero__title-line {
		text-align: left;
	}

	.hero__title-chars {
		justify-content: flex-start;
	}

	.hero__description {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		font-size: 0.8125rem;
		line-height: 1.55;
		text-align: left;
		margin-inline: 0;
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 0.65rem;
	}

	.hero__cta {
		width: 100%;
		max-width: none;
		padding: 0.65rem 1rem 0.65rem 0.55rem;
		font-size: 0.625rem;
	}

	.hero__scroll {
		display: none;
	}

	.hero__stage {
		width: min(36vw, 220px);
	}

	.hero__orb--1 {
		top: -20%;
		right: -10%;
	}

	.hero__orb--2 {
		bottom: -10%;
		left: -15%;
	}
}

/* ---------- Desktop (unchanged baseline) ---------- */
@media (min-width: 768px) {
	.hero__inner {
		display: grid;
		grid-template-columns: 1.05fr 0.95fr;
		grid-template-rows: auto auto;
		align-items: start;
	}

	.hero__copy {
		grid-column: 1;
		grid-row: 1;
	}

	.hero__bottom {
		grid-column: 1;
		grid-row: 2;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		margin-top: 0;
	}

	.hero__media {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: center;
		order: unset;
	}

	.hero__social {
		width: auto;
		max-width: none;
		padding: 0;
		border: none;
		border-radius: 0;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.hero__actions {
		order: unset;
		width: auto;
	}
}

/* ---------- Wide desktop ---------- */
@media (min-width: 1200px) {
	.hero__bottom .hero__social {
		flex-direction: row;
		align-items: center;
		gap: 0.85rem;
		width: auto;
		padding: 0;
		border: none;
		background: transparent;
	}

	.hero__bottom .hero__social-label {
		writing-mode: horizontal-tb;
		display: block;
	}

	.hero__bottom .hero__social-line {
		display: block;
		width: 1px;
		height: 22px;
		background: linear-gradient(180deg, var(--color-border-glass), transparent);
	}

	.hero__bottom .hero__social-list {
		flex-direction: row;
		gap: 0.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__grid,
	.hero__orb,
	.hero__ring-spin,
	.hero__scroll-wheel,
	.hero__eyebrow-dot,
	.hero__badge-dot {
		animation: none;
	}

	.hero__wave-bar {
		transform: scaleY(0.6);
	}
}
