:root {
	--color-dark: #303030;
	--color-black: #090909;
	--color-pink: #ff0099;
	--color-white: #ffffff;
	--color-muted: #c9c9c9;
	--color-border: rgba(255, 255, 255, 0.18);
	--color-panel: rgba(20, 20, 20, 0.72);
	--shadow-pink: 0 0 32px rgba(255, 0, 153, 0.28);
	--header-height: 86px;
	--space-page: clamp(1.25rem, 4vw, 4.5rem);
	--radius: 8px;
	--content-width: 1180px;
}

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

html {
	background: var(--color-black);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 85% 0%, rgba(255, 0, 153, 0.12), transparent 32rem),
		var(--color-black);
	color: var(--color-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body.home {
	overflow-x: hidden;
	overflow-y: auto;
}

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

a {
	color: inherit;
}

a,
button {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--color-pink);
	outline-offset: 4px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 200;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-pink);
	color: var(--color-white);
	border-radius: var(--radius);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 80;
	height: var(--header-height);
	background: linear-gradient(180deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.28));
	backdrop-filter: blur(18px);
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	width: min(100% - 2rem, 1440px);
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-brand,
.site-footer__brand {
	text-decoration: none;
}

.site-brand--image {
	display: inline-flex;
	align-items: center;
}

.site-brand__logo {
	width: auto;
	max-width: min(15rem, 42vw);
	max-height: 3.2rem;
	object-fit: contain;
}

.brand-wordmark {
	display: inline-flex;
	align-items: baseline;
	color: var(--color-white);
	font-size: clamp(1.45rem, 2.1vw, 2rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0;
}

.brand-wordmark__accent {
	color: var(--color-pink);
}

.primary-navigation {
	display: flex;
	align-items: center;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.8vw, 2.4rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a,
.footer-menu a {
	position: relative;
	display: inline-flex;
	padding: 0.5rem 0;
	color: var(--color-white);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--color-pink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-white);
}

.nav-toggle__line {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 999px;
}

.front-stage {
	min-height: 100vh;
	background: var(--color-black);
}

.horizontal-scroll {
	width: 100vw;
	height: 100vh;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
	display: none;
}

.horizontal-track {
	display: flex;
	width: max-content;
	height: 100%;
}

.scroll-panel {
	position: relative;
	flex: 0 0 100vw;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	scroll-snap-align: start;
	isolation: isolate;
}

.split-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	height: 100%;
	background: var(--color-black);
}

.hero-choice {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	padding: clamp(7rem, 13vh, 10rem) clamp(1.5rem, 6vw, 7rem) clamp(6.5rem, 12vh, 9rem);
	cursor: pointer;
	overflow: hidden;
	transition: transform 300ms ease, filter 300ms ease;
}

.hero-choice::before,
.hero-choice::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-choice::before {
	z-index: -3;
	transition: transform 550ms ease, opacity 300ms ease;
}

.hero-choice::after {
	z-index: -2;
	opacity: 0.56;
	mix-blend-mode: screen;
}

.hero-choice:hover {
	filter: brightness(1.12);
}

.hero-choice:hover::before {
	transform: scale(1.025);
}

.hero-choice--safety::before {
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.28), rgba(9, 9, 9, 0.86)),
		radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.12) 0 0.12rem, transparent 0.18rem),
		radial-gradient(circle at 46% 22%, rgba(255, 255, 255, 0.42), transparent 3.5rem),
		radial-gradient(circle at 60% 34%, rgba(255, 255, 255, 0.2), transparent 4rem),
		linear-gradient(145deg, #151515 0%, #0b0b0b 42%, #030303 100%);
	background-size: auto, 1.8rem 1.8rem, auto, auto, auto;
}

.hero-choice--safety::after {
	background:
		linear-gradient(22deg, transparent 0 38%, rgba(255, 255, 255, 0.13) 39%, transparent 52%),
		linear-gradient(92deg, rgba(0, 0, 0, 0.34), transparent 70%);
}

.hero-choice--equipment {
	padding-left: clamp(3rem, 9vw, 9rem);
}

.hero-choice--equipment::before {
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.78), rgba(9, 9, 9, 0.14)),
		radial-gradient(circle at 78% 20%, rgba(255, 0, 153, 0.52), transparent 3.8rem),
		radial-gradient(circle at 62% 48%, rgba(255, 0, 153, 0.22), transparent 13rem),
		linear-gradient(145deg, #12030d 0%, #13020b 38%, #060606 100%);
}

.hero-choice--equipment::after {
	background:
		linear-gradient(162deg, transparent 0 44%, rgba(255, 0, 153, 0.22) 45%, transparent 56%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px);
}

.hero-choice__content {
	position: relative;
	z-index: 6;
	width: min(100%, 34rem);
}

.hero-choice--equipment .hero-choice__content {
	margin-left: auto;
}

.hero-icon {
	display: inline-grid;
	place-items: center;
	width: 6.25rem;
	height: 6.25rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: var(--shadow-pink);
	color: var(--color-pink);
}

.hero-icon__svg {
	width: 3.4rem;
	height: 3.4rem;
}

.hero-choice h1 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 5.1rem);
	line-height: 1.06;
	font-weight: 850;
	letter-spacing: 0;
}

.hero-lead {
	max-width: 41rem;
	margin: 1.5rem 0 0;
	color: var(--color-white);
	font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.hero-lead::before,
.page-hero__inner > p:last-of-type::before {
	content: "";
	display: block;
	width: 4rem;
	height: 3px;
	margin: 0 0 1.4rem;
	background: var(--color-pink);
}

.feature-chips,
.choice-actions,
.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.1rem;
}

.feature-chip,
.choice-action {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 4.6rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-white);
	font-weight: 700;
	text-decoration: none;
}

.feature-chip__icon,
.choice-action__icon {
	width: 1.8rem;
	height: 1.8rem;
	color: var(--color-pink);
	flex: 0 0 auto;
}

.choice-action {
	min-width: min(100%, 12rem);
	justify-content: space-between;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice-action:hover {
	border-color: rgba(255, 0, 153, 0.72);
	background: rgba(255, 0, 153, 0.1);
	transform: translateY(-2px);
}

.choice-action__arrow {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--color-pink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	min-height: 3.8rem;
	padding: 0.95rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	color: var(--color-white);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
	background: var(--color-pink);
	box-shadow: 0 16px 40px rgba(255, 0, 153, 0.28);
}

.button--primary:hover {
	background: #ff2aad;
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.05);
}

.button--outline:hover {
	border-color: var(--color-pink);
	background: rgba(255, 0, 153, 0.1);
}

.button--small {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	font-size: 0.92rem;
	background: var(--color-pink);
}

.button__icon {
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
}

.hero-choice__primary {
	min-width: min(100%, 18rem);
	margin-top: 2.4rem;
}

.curtain-center {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 5;
	width: clamp(13rem, 22vw, 25rem);
	transform: translateX(-50%);
	display: flex;
	pointer-events: none;
	filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.55));
}

.curtain-center::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.86) 48%, rgba(255, 0, 153, 0.7), transparent);
	transform: translateX(-50%);
	z-index: 3;
}

.curtain {
	width: 50%;
	height: 100%;
	transition: transform 450ms ease, filter 450ms ease;
}

.curtain--left {
	background:
		linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
		repeating-linear-gradient(100deg, #050505 0 0.75rem, #171717 0.75rem 1.45rem, #020202 1.45rem 2.3rem);
	clip-path: polygon(0 0, 100% 0, 86% 100%, 16% 100%);
}

.curtain--right {
	background:
		linear-gradient(90deg, rgba(255, 0, 153, 0.1), rgba(255, 255, 255, 0.09), rgba(255, 0, 153, 0.2)),
		repeating-linear-gradient(82deg, #3b001f 0 0.72rem, #9a0057 0.72rem 1.45rem, #210012 1.45rem 2.25rem);
	clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%);
}

.curtain-clasp {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	width: 4.8rem;
	height: 1.3rem;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
	background: linear-gradient(90deg, #151515, #777, #1b1b1b);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 24px rgba(255, 0, 153, 0.28);
}

.hero-panel.is-opening-left .hero-choice--safety,
.hero-panel.is-opening-right .hero-choice--equipment {
	filter: brightness(1.25);
}

.hero-panel.is-opening-left .hero-choice--safety {
	transform: translateX(-2vw) scale(1.015);
}

.hero-panel.is-opening-right .hero-choice--equipment {
	transform: translateX(2vw) scale(1.015);
}

.hero-panel.is-opening-left .curtain--left {
	transform: translateX(-2.5rem);
}

.hero-panel.is-opening-right .curtain--right {
	transform: translateX(2.5rem);
	filter: saturate(1.5) brightness(1.2);
}

.front-scroll-ui {
	position: fixed;
	left: 50%;
	bottom: clamp(1rem, 3vh, 2.2rem);
	z-index: 30;
	width: min(74rem, calc(100vw - 3rem));
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0.9rem 1rem;
	pointer-events: none;
}

.scroll-hint {
	grid-column: 1 / 3;
	justify-self: center;
	margin: 0;
	color: var(--color-white);
	font-size: 0.95rem;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86);
}

.mobile-hint {
	display: none;
}

.scroll-next {
	grid-column: 2;
	grid-row: 1;
	width: 3.4rem;
	height: 3.4rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 999px;
	background: rgba(20, 20, 20, 0.74);
	color: var(--color-white);
	box-shadow: var(--shadow-pink);
	cursor: pointer;
	pointer-events: auto;
	transition: transform 180ms ease, border-color 180ms ease;
}

.scroll-next:hover {
	border-color: var(--color-pink);
	transform: translateX(3px);
}

.scroll-next__icon {
	width: 1.45rem;
	height: 1.45rem;
	margin: auto;
}

.scroll-progress {
	grid-column: 1 / 3;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.26);
	overflow: hidden;
}

.scroll-progress__bar {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--color-pink);
	border-radius: inherit;
	transform: scaleX(0);
	transform-origin: left center;
}

.scroll-dots {
	display: none;
}

.content-panel {
	display: flex;
	align-items: center;
	padding: calc(var(--header-height) + 2rem) var(--space-page) 6.5rem;
	background:
		radial-gradient(circle at 18% 16%, rgba(255, 0, 153, 0.16), transparent 22rem),
		radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.08), transparent 20rem),
		linear-gradient(135deg, #111, #050505 58%, #16000c);
}

.panel-inner,
.section-inner {
	width: min(100%, var(--content-width));
	margin: 0 auto;
}

.panel-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1.08fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}

.eyebrow {
	margin: 0 0 0.8rem;
	color: var(--color-pink);
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.panel-copy h2,
.cta-panel h2,
.section-heading h2,
.cta-strip h2 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 5rem);
	line-height: 1.05;
	font-weight: 850;
	letter-spacing: 0;
}

.panel-copy p:not(.eyebrow),
.cta-panel p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.page-hero__inner p {
	max-width: 48rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.position-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.position-card,
.service-card,
.equipment-area-card,
.entry-card,
.shop-placeholder,
.product-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.position-card {
	display: grid;
	gap: 1rem;
	min-height: 21rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	color: var(--color-white);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.position-card:hover {
	border-color: rgba(255, 0, 153, 0.7);
	background: rgba(255, 0, 153, 0.09);
	transform: translateY(-4px);
}

.position-card__icon {
	display: inline-grid;
	place-items: center;
	width: 4rem;
	height: 4rem;
	border-radius: var(--radius);
	background: rgba(255, 0, 153, 0.12);
	color: var(--color-pink);
}

.position-card__svg {
	width: 2.1rem;
	height: 2.1rem;
}

.position-card__title {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 850;
	line-height: 1.15;
}

.position-card__text {
	color: var(--color-muted);
}

.position-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: end;
	color: var(--color-pink);
	font-weight: 800;
}

.position-card__arrow {
	width: 1rem;
	height: 1rem;
}

.cta-panel {
	text-align: left;
}

.cta-panel__inner {
	max-width: 900px;
}

.page-shell {
	min-height: 100vh;
	padding-top: var(--header-height);
	background:
		radial-gradient(circle at 78% 0%, rgba(255, 0, 153, 0.14), transparent 28rem),
		linear-gradient(135deg, #111, var(--color-black) 56%, #16000c);
}

.page-hero {
	min-height: 58vh;
	display: flex;
	align-items: flex-end;
	padding: clamp(4rem, 8vw, 7rem) var(--space-page);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.42)),
		radial-gradient(circle at 74% 26%, rgba(255, 0, 153, 0.32), transparent 16rem),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
	pointer-events: none;
}

.page-hero--safety::before {
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.5)),
		radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.22), transparent 12rem),
		radial-gradient(circle at 78% 22%, rgba(255, 0, 153, 0.18), transparent 18rem),
		linear-gradient(140deg, #101010, #050505);
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, var(--content-width));
	margin: 0 auto;
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(2.7rem, 7vw, 6.3rem);
	line-height: 1.02;
	font-weight: 850;
	letter-spacing: 0;
}

.page-hero .button-row,
.page-hero .button {
	margin-top: 2rem;
}

.page-section {
	padding: clamp(4rem, 8vw, 7rem) var(--space-page);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 1fr);
	gap: clamp(1rem, 5vw, 4rem);
	align-items: end;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.service-grid,
.equipment-area-grid,
.product-grid {
	display: grid;
	gap: 1rem;
}

.service-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
	padding: 1.35rem;
}

.service-card__icon {
	display: inline-grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 1.25rem;
	border-radius: var(--radius);
	background: rgba(255, 0, 153, 0.12);
	color: var(--color-pink);
}

.service-card__svg {
	width: 1.8rem;
	height: 1.8rem;
}

.service-card h3,
.product-card h3,
.entry-card h2 {
	margin: 0 0 0.7rem;
	font-size: 1.18rem;
	line-height: 1.22;
}

.service-card p,
.product-card p,
.entry-card p {
	margin: 0;
	color: var(--color-muted);
}

.cta-strip {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid rgba(255, 0, 153, 0.28);
	border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(255, 0, 153, 0.14), rgba(255, 255, 255, 0.045));
}

.equipment-area-grid {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.equipment-area-card {
	display: flex;
	align-items: center;
	min-height: 6.5rem;
	padding: 1.25rem;
	color: var(--color-white);
	font-size: 1.05rem;
	font-weight: 850;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.equipment-area-card:hover {
	border-color: rgba(255, 0, 153, 0.7);
	background: rgba(255, 0, 153, 0.1);
	transform: translateY(-3px);
}

.page-section--shop {
	background: rgba(255, 255, 255, 0.03);
}

.product-grid {
	grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.product-card {
	overflow: hidden;
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at 72% 20%, rgba(255, 0, 153, 0.28), transparent 9rem),
		linear-gradient(135deg, #202020, #080808);
	color: var(--color-white);
	text-decoration: none;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 850;
}

.product-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	display: inline-flex;
	padding: 0.32rem 0.62rem;
	border-radius: 999px;
	background: rgba(255, 0, 153, 0.92);
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 850;
}

.product-badge.is-buy {
	background: rgba(255, 255, 255, 0.2);
}

.product-badge.is-package {
	background: #5f2cff;
}

.product-card__body {
	display: grid;
	gap: 0.85rem;
	padding: 1.2rem;
}

.product-card__body h3 a,
.entry-card h2 a {
	color: var(--color-white);
	text-decoration: none;
}

.product-card__body h3 a:hover,
.entry-card h2 a:hover {
	color: var(--color-pink);
}

.product-card__price {
	color: var(--color-white);
	font-weight: 850;
}

.product-card__note {
	padding: 0.75rem;
	border-left: 3px solid var(--color-pink);
	background: rgba(255, 0, 153, 0.08);
	font-size: 0.9rem;
}

.shop-placeholder {
	padding: clamp(1.25rem, 4vw, 2rem);
}

.shop-placeholder p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.1rem;
}

.entry-card {
	padding: 1.4rem;
	margin-bottom: 1rem;
}

.site-footer {
	padding: 2rem var(--space-page);
	border-top: 1px solid var(--color-border);
	background: #070707;
}

body.home .site-footer {
	display: none;
}

.site-footer__inner {
	width: min(100%, var(--content-width));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.footer-menu {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-menu a {
	color: var(--color-muted);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.055);
	overflow: hidden;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-radius: var(--radius);
	background: var(--color-pink);
	color: var(--color-white);
	font-weight: 800;
}

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

@media (max-width: 1100px) {
	.hero-choice {
		padding-inline: 2rem;
	}

	.hero-choice--equipment {
		padding-left: 4rem;
	}

	.feature-chips {
		display: grid;
		grid-template-columns: 1fr;
	}

	.position-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 899px) {
	:root {
		--header-height: 74px;
	}

	body.home {
		overflow: auto;
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		width: min(100% - 1.25rem, 100%);
	}

	.nav-toggle {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		top: var(--header-height);
		right: 0.75rem;
		left: 0.75rem;
		display: none;
		padding: 0.75rem;
		border: 1px solid var(--color-border);
		border-radius: var(--radius);
		background: rgba(9, 9, 9, 0.94);
		box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	}

	body.admin-bar .primary-navigation {
		top: calc(var(--header-height) + 46px);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		gap: 0.15rem;
	}

	.primary-menu a {
		width: 100%;
		padding: 0.85rem;
		border-radius: 6px;
	}

	.primary-menu a:hover {
		background: rgba(255, 0, 153, 0.12);
	}

	.horizontal-scroll {
		height: auto;
		overflow: visible;
		scroll-snap-type: none;
	}

	.horizontal-track {
		display: block;
		width: 100%;
		height: auto;
	}

	.scroll-panel {
		width: 100%;
		height: auto;
		min-height: auto;
		overflow: visible;
		scroll-snap-align: none;
	}

	.split-hero {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1rem;
		min-height: 100vh;
		height: auto;
		padding: calc(var(--header-height) + 1rem) 0.85rem 7rem;
		background: var(--color-black);
	}

	.hero-choice,
	.hero-choice--equipment {
		min-height: 27rem;
		padding: 1.2rem;
		border: 1px solid var(--color-border);
		border-radius: var(--radius);
	}

	.hero-choice__content,
	.hero-choice--equipment .hero-choice__content {
		width: 100%;
		margin: 0;
	}

	.hero-icon {
		width: 3.8rem;
		height: 3.8rem;
		margin-bottom: 1rem;
	}

	.hero-icon__svg {
		width: 2rem;
		height: 2rem;
	}

	.hero-choice h1 {
		font-size: clamp(2rem, 11vw, 3rem);
	}

	.hero-lead {
		font-size: 0.96rem;
	}

	.feature-chips,
	.choice-actions {
		margin-top: 1.25rem;
	}

	.feature-chip,
	.choice-action {
		width: 100%;
		min-height: 3.35rem;
	}

	.hero-choice__primary {
		width: 100%;
		margin-top: 1.35rem;
	}

	.curtain-center {
		display: none;
	}

	.front-scroll-ui {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		padding: 0 1rem 1.5rem;
		transform: none;
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		background: var(--color-black);
	}

	.scroll-hint,
	.scroll-progress {
		grid-column: auto;
	}

	.desktop-hint,
	.scroll-next,
	.scroll-progress {
		display: none;
	}

	.mobile-hint {
		display: inline;
	}

	.scroll-dots {
		display: flex;
		gap: 0.38rem;
	}

	.scroll-dot {
		width: 0.42rem;
		height: 0.42rem;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.34);
	}

	.scroll-dot.is-active {
		background: var(--color-pink);
	}

	.content-panel {
		padding: 4rem 1rem;
	}

	.panel-grid,
	.section-heading,
	.cta-strip {
		grid-template-columns: 1fr;
	}

	.position-cards {
		grid-template-columns: 1fr;
	}

	.position-card {
		min-height: auto;
	}

	.page-hero {
		min-height: auto;
		padding: 4rem 1rem;
	}

	.page-section {
		padding: 4rem 1rem;
	}

	.button-row,
	.feature-chips,
	.choice-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.button {
		width: 100%;
	}

	.cta-strip .button {
		width: 100%;
	}

	.site-footer__inner {
		display: grid;
	}

	.footer-menu {
		display: grid;
		justify-content: start;
		gap: 0.5rem;
	}
}

@media (max-width: 520px) {
	.brand-wordmark {
		font-size: 1.35rem;
	}

	.hero-choice {
		min-height: 25rem;
	}

	.panel-copy h2,
	.cta-panel h2,
	.section-heading h2,
	.cta-strip h2,
	.page-hero h1 {
		font-size: clamp(2rem, 12vw, 3rem);
	}
}

/* Portal hero variant: centered logo, floating word menu and two sliding tiles. */
.portal-panel {
	background: var(--color-black);
}

.portal-hero {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
	background:
		linear-gradient(112deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 22%),
		linear-gradient(68deg, transparent 0 38%, rgba(255, 0, 153, 0.18) 39%, transparent 54%),
		linear-gradient(130deg, #080808 0%, #101010 38%, #230014 100%);
}

.portal-hero::before,
.portal-hero::after,
.portal-light {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.portal-hero::before {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.72)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
}

.portal-hero::after {
	background:
		linear-gradient(18deg, transparent 0 46%, rgba(255, 255, 255, 0.09) 47%, transparent 58%),
		linear-gradient(158deg, transparent 0 45%, rgba(255, 0, 153, 0.2) 46%, transparent 58%);
	mix-blend-mode: screen;
	opacity: 0.72;
}

.portal-light {
	z-index: 1;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.74));
}

.portal-orbit {
	position: absolute;
	inset: calc(var(--header-height) + 0.6rem) clamp(18rem, 31vw, 35rem) 5.8rem;
	z-index: 6;
	display: grid;
	place-items: center;
	transition: transform 460ms ease, opacity 460ms ease, filter 460ms ease;
}

.portal-title {
	position: relative;
	z-index: 3;
	margin: 0;
}

.portal-logo {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(14rem, 24vw, 26rem);
	aspect-ratio: 854 / 531;
	padding: clamp(0.45rem, 0.8vw, 0.8rem);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background:
		radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.38) 74%, transparent 100%);
	box-shadow:
		0 28px 90px rgba(0, 0, 0, 0.45),
		0 0 52px rgba(255, 0, 153, 0.25);
	text-decoration: none;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.portal-logo:hover {
	transform: translateY(-3px) scale(1.015);
	box-shadow:
		0 32px 96px rgba(0, 0, 0, 0.48),
		0 0 60px rgba(255, 0, 153, 0.34);
}

.portal-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.word-cloud {
	position: absolute;
	inset: 50% auto auto 50%;
	width: clamp(24rem, 42vw, 42rem);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.word-cloud__item {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(9, 9, 9, 0.55);
	backdrop-filter: blur(16px);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
	color: var(--color-white);
	font-size: clamp(0.78rem, 0.9vw, 0.95rem);
	font-weight: 850;
	text-decoration: none;
	pointer-events: auto;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.word-cloud__item:hover {
	border-color: rgba(255, 0, 153, 0.78);
	background: rgba(255, 0, 153, 0.16);
	color: var(--color-white);
	transform: translateY(-2px);
}

.word-cloud__item--start {
	top: 7%;
	left: 50%;
	transform: translateX(-50%);
}

.word-cloud__item--safety {
	top: 31%;
	left: 0;
}

.word-cloud__item--equipment {
	top: 31%;
	right: 0;
}

.word-cloud__item--references {
	bottom: 20%;
	left: 8%;
}

.word-cloud__item--contact {
	right: 10%;
	bottom: 20%;
}

.word-cloud__item--rent {
	left: 27%;
	bottom: 5%;
	color: var(--color-pink);
}

.word-cloud__item--buy {
	right: 27%;
	bottom: 5%;
	color: var(--color-pink);
}

.portal-cards {
	position: absolute;
	inset: calc(var(--header-height) + 1.25rem) 0 5.8rem;
	z-index: 5;
	pointer-events: none;
}

.portal-card {
	position: absolute;
	top: 50%;
	display: grid;
	grid-template-rows: auto auto auto 1fr auto;
	gap: 1.05rem;
	width: clamp(18rem, 25vw, 31rem);
	min-height: min(36rem, calc(100vh - var(--header-height) - 8rem));
	padding: clamp(1.15rem, 2vw, 1.75rem);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(16, 16, 16, 0.82);
	box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42);
	color: var(--color-white);
	text-decoration: none;
	pointer-events: auto;
	overflow: hidden;
	transition: transform 460ms ease, opacity 360ms ease, filter 360ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portal-card::before,
.portal-card::after,
.portal-card__glow {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.portal-card::before {
	z-index: -3;
	transition: transform 500ms ease;
}

.portal-card::after {
	z-index: -2;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
}

.portal-card__glow {
	z-index: -1;
	opacity: 0.66;
	mix-blend-mode: screen;
}

.portal-card:hover {
	border-color: rgba(255, 0, 153, 0.78);
	box-shadow:
		0 32px 96px rgba(0, 0, 0, 0.46),
		0 0 44px rgba(255, 0, 153, 0.24);
}

.portal-card:hover::before {
	transform: scale(1.035);
}

.portal-card--safety {
	left: clamp(1rem, 5vw, 6rem);
	transform: translateY(-50%);
}

.portal-card--safety::before {
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.18), rgba(9, 9, 9, 0.84)),
		linear-gradient(145deg, #171717 0%, #090909 52%, #030303 100%);
}

.portal-card--safety .portal-card__glow {
	background:
		linear-gradient(22deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 43%, transparent 57%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px);
}

.portal-card--equipment {
	right: clamp(1rem, 5vw, 6rem);
	transform: translateY(-50%);
}

.portal-card--equipment::before {
	background:
		linear-gradient(90deg, rgba(9, 9, 9, 0.78), rgba(9, 9, 9, 0.22)),
		linear-gradient(145deg, #1a0311 0%, #12030d 48%, #060606 100%);
}

.portal-card--equipment .portal-card__glow {
	background:
		linear-gradient(158deg, transparent 0 39%, rgba(255, 0, 153, 0.38) 40%, transparent 58%),
		repeating-linear-gradient(90deg, rgba(255, 0, 153, 0.055) 0 1px, transparent 1px 84px);
}

.portal-card__icon {
	display: inline-grid;
	place-items: center;
	width: 4.35rem;
	height: 4.35rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.07);
	color: var(--color-pink);
	box-shadow: var(--shadow-pink);
}

.portal-card__svg {
	width: 2.4rem;
	height: 2.4rem;
}

.portal-card__title {
	display: block;
	font-size: clamp(1.8rem, 3vw, 3.35rem);
	font-weight: 850;
	line-height: 1.06;
	letter-spacing: 0;
}

.portal-card__title::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3px;
	margin-top: 1rem;
	background: var(--color-pink);
}

.portal-card__text {
	display: block;
	color: var(--color-muted);
	font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}

.portal-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-content: start;
}

.portal-card__chips span {
	display: inline-flex;
	align-items: center;
	min-height: 2.1rem;
	padding: 0.35rem 0.62rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--color-white);
	font-size: 0.78rem;
	font-weight: 760;
}

.portal-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 3.35rem;
	margin-top: auto;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(255, 0, 153, 0.52);
	border-radius: var(--radius);
	background: rgba(255, 0, 153, 0.14);
	color: var(--color-white);
	font-weight: 850;
}

.portal-card__arrow {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--color-pink);
	flex: 0 0 auto;
}

.portal-card__arrow--left {
	transform: rotate(180deg);
}

.portal-panel.is-opening-left .portal-card--safety {
	transform: translate(-112vw, -50%) rotate(-6deg);
	opacity: 0;
	filter: brightness(1.18);
}

.portal-panel.is-opening-right .portal-card--equipment {
	transform: translate(112vw, -50%) rotate(6deg);
	opacity: 0;
	filter: brightness(1.24) saturate(1.25);
}

.portal-panel.is-opening-left .portal-card--equipment,
.portal-panel.is-opening-right .portal-card--safety {
	opacity: 0.34;
	filter: grayscale(0.35) brightness(0.7);
}

.portal-panel.is-opening-left .portal-orbit,
.portal-panel.is-opening-right .portal-orbit {
	transform: scale(0.94);
	opacity: 0.42;
	filter: blur(1px);
}

@media (max-width: 1180px) {
	.portal-orbit {
		inset-inline: clamp(16rem, 30vw, 22rem);
	}

	.portal-card {
		width: clamp(16.5rem, 27vw, 22rem);
	}

	.portal-card__title {
		font-size: clamp(1.55rem, 2.8vw, 2.35rem);
	}

	.word-cloud {
		width: clamp(21rem, 37vw, 30rem);
	}
}

@media (max-width: 899px) {
	.portal-hero {
		height: auto;
		min-height: 100vh;
		padding: calc(var(--header-height) + 1rem) 0.85rem 2rem;
		overflow: visible;
	}

	.portal-orbit,
	.portal-cards {
		position: relative;
		inset: auto;
	}

	.portal-orbit {
		display: grid;
		gap: 1rem;
		place-items: center;
		margin-bottom: 1rem;
	}

	.portal-logo {
		width: min(15rem, 62vw);
	}

	.word-cloud {
		position: static;
		width: 100%;
		aspect-ratio: auto;
		transform: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
		pointer-events: auto;
	}

	.word-cloud__item,
	.word-cloud__item:hover,
	.word-cloud__item--start,
	.word-cloud__item--safety,
	.word-cloud__item--equipment,
	.word-cloud__item--references,
	.word-cloud__item--contact,
	.word-cloud__item--rent,
	.word-cloud__item--buy {
		position: static;
		transform: none;
		font-size: 0.82rem;
	}

	.portal-cards {
		display: grid;
		gap: 1rem;
		pointer-events: auto;
	}

	.portal-card,
	.portal-card--safety,
	.portal-card--equipment,
	.portal-panel.is-opening-left .portal-card--safety,
	.portal-panel.is-opening-right .portal-card--equipment,
	.portal-panel.is-opening-left .portal-card--equipment,
	.portal-panel.is-opening-right .portal-card--safety {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
		min-height: 27rem;
		transform: none;
		opacity: 1;
		filter: none;
	}

	.portal-card__title {
		font-size: clamp(2rem, 11vw, 3rem);
	}
}

@media (max-width: 520px) {
	.portal-logo {
		width: min(13rem, 70vw);
	}

	.portal-card {
		min-height: 25rem;
		padding: 1.1rem;
	}

	.portal-card__chips span {
		font-size: 0.74rem;
	}
}

/* Single logo cloud start page. */
.front-stage--single {
	min-height: 100vh;
	background: var(--color-black);
}

.portal-panel--single {
	min-height: 100vh;
	background: var(--color-black);
}

.portal-hero--single {
	display: grid;
	place-items: center;
	height: auto;
	min-height: 100vh;
	padding: calc(var(--header-height) + 1.25rem) var(--space-page) clamp(2rem, 5vh, 4rem);
	background:
		linear-gradient(112deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22%),
		radial-gradient(circle at 28% 18%, rgba(255, 0, 153, 0.2), transparent 24rem),
		radial-gradient(circle at 72% 70%, rgba(255, 0, 153, 0.16), transparent 28rem),
		linear-gradient(130deg, #070707 0%, #111 44%, #1c0010 100%);
}

.portal-hero--single::before {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.76)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 96px);
}

.portal-hero--single::after {
	background:
		linear-gradient(18deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 45%, transparent 58%),
		linear-gradient(158deg, transparent 0 42%, rgba(255, 0, 153, 0.17) 43%, transparent 57%);
	opacity: 0.58;
}

.portal-hero--single .portal-light {
	background:
		radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.12), transparent 28rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%, rgba(0, 0, 0, 0.72));
}

.string-stage {
	position: relative;
	z-index: 6;
	width: min(100%, 1060px);
	height: min(68vh, 620px);
	min-height: 520px;
	display: grid;
	place-items: center;
}

.string-field {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.string-line {
	fill: none;
	stroke: rgba(255, 255, 255, 0.24);
	stroke-width: 1.2;
	stroke-linecap: round;
	filter: drop-shadow(0 0 7px rgba(255, 0, 153, 0.26));
	animation: string-breathe 6.8s ease-in-out infinite;
}

.string-line--safety,
.string-line--contact {
	animation-delay: -1.2s;
}

.string-line--equipment,
.string-line--references {
	animation-delay: -2.4s;
}

.string-line--rent,
.string-line--buy {
	stroke: rgba(255, 0, 153, 0.38);
	animation-delay: -3.2s;
}

.portal-hero--single .portal-title {
	z-index: 3;
	display: grid;
	place-items: center;
	margin: 0;
}

.portal-hero--single .portal-logo {
	width: clamp(17rem, 31vw, 32rem);
	max-width: min(72vw, 32rem);
	aspect-ratio: 854 / 531;
	padding: clamp(0.45rem, 0.85vw, 0.85rem);
	border-color: rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background:
		radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.34) 74%, transparent 100%);
	box-shadow:
		0 32px 100px rgba(0, 0, 0, 0.48),
		0 0 58px rgba(255, 0, 153, 0.28);
	animation: logo-float 7.5s ease-in-out infinite;
}

.portal-hero--single .portal-logo:hover {
	transform: translateY(-2px) scale(1.01);
}

.word-cloud--tethered {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	transform: none;
	pointer-events: none;
}

.word-cloud--tethered .word-cloud__item {
	position: absolute;
	min-height: 2.45rem;
	padding: 0.58rem 0.85rem;
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(9, 9, 9, 0.58);
	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.34),
		0 0 20px rgba(255, 0, 153, 0.08);
	animation: cloud-float-a 7s ease-in-out infinite;
}

.word-cloud--tethered .word-cloud__item:hover {
	z-index: 8;
	border-color: rgba(255, 0, 153, 0.86);
	background: rgba(255, 0, 153, 0.18);
	transform: translateY(-3px) scale(1.03);
}

.word-cloud--tethered .word-cloud__item--start:hover {
	transform: translateX(-50%) translateY(-3px) scale(1.03);
}

.word-cloud--tethered .word-cloud__item--start {
	top: 12%;
	left: 50%;
	transform: translateX(-50%);
	animation-name: cloud-float-b;
}

.word-cloud--tethered .word-cloud__item--safety {
	top: 30%;
	left: 14%;
	animation-name: cloud-float-c;
}

.word-cloud--tethered .word-cloud__item--equipment {
	top: 30%;
	right: 14%;
	animation-delay: -1.7s;
}

.word-cloud--tethered .word-cloud__item--references {
	bottom: 26%;
	left: 22%;
	animation-name: cloud-float-b;
	animation-delay: -2.2s;
}

.word-cloud--tethered .word-cloud__item--contact {
	right: 22%;
	bottom: 26%;
	animation-name: cloud-float-c;
	animation-delay: -3.1s;
}

.word-cloud--tethered .word-cloud__item--rent {
	left: 32%;
	bottom: 8%;
	color: var(--color-pink);
	animation-delay: -2.8s;
}

.word-cloud--tethered .word-cloud__item--buy {
	right: 32%;
	bottom: 8%;
	color: var(--color-pink);
	animation-name: cloud-float-b;
	animation-delay: -3.7s;
}

@keyframes logo-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -0.45rem, 0);
	}
}

@keyframes string-breathe {
	0%,
	100% {
		opacity: 0.54;
	}

	50% {
		opacity: 0.88;
	}
}

@keyframes cloud-float-a {
	0%,
	100% {
		margin-top: 0;
		margin-left: 0;
	}

	50% {
		margin-top: -0.65rem;
		margin-left: 0.45rem;
	}
}

@keyframes cloud-float-b {
	0%,
	100% {
		margin-top: 0;
		margin-left: 0;
	}

	50% {
		margin-top: 0.5rem;
		margin-left: -0.45rem;
	}
}

@keyframes cloud-float-c {
	0%,
	100% {
		margin-top: 0;
		margin-left: 0;
	}

	50% {
		margin-top: -0.35rem;
		margin-left: -0.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.portal-hero--single .portal-logo,
	.string-line,
	.word-cloud--tethered .word-cloud__item {
		animation: none;
	}
}

@media (max-width: 899px) {
	.portal-hero--single {
		padding: calc(var(--header-height) + 1rem) 1rem 2rem;
	}

	.string-stage {
		width: 100%;
		height: auto;
		min-height: 0;
		display: grid;
		gap: 1.25rem;
	}

	.string-field {
		display: none;
	}

	.portal-hero--single .portal-title {
		order: 1;
	}

	.portal-hero--single .portal-logo {
		width: min(21rem, 86vw);
		max-width: 86vw;
		animation: none;
	}

	.word-cloud--tethered {
		position: relative;
		order: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.55rem;
		pointer-events: auto;
	}

	.word-cloud--tethered .word-cloud__item,
	.word-cloud--tethered .word-cloud__item:hover,
	.word-cloud--tethered .word-cloud__item--start,
	.word-cloud--tethered .word-cloud__item--safety,
	.word-cloud--tethered .word-cloud__item--equipment,
	.word-cloud--tethered .word-cloud__item--references,
	.word-cloud--tethered .word-cloud__item--contact,
	.word-cloud--tethered .word-cloud__item--rent,
	.word-cloud--tethered .word-cloud__item--buy {
		position: static;
		transform: none;
		margin: 0;
		animation: none;
		font-size: 0.82rem;
	}
}

@media (max-width: 520px) {
	.portal-hero--single .portal-logo {
		width: min(18rem, 88vw);
	}
}
