:root {
	--ink: #080a0d;
	--ink-soft: #11151a;
	--ink-raised: #171b21;
	--paper: #eeece5;
	--paper-bright: #f7f5ef;
	--paper-dim: #c9c6bd;
	--silver: #cbc8c0;
	--gold: #c8a46b;
	--gold-bright: #eed5a7;
	--signal: #a8f0df;
	--line-dark: rgba(8, 10, 13, 0.16);
	--line-light: rgba(255, 255, 255, 0.14);
	--font-sans: "Zen Kaku Gothic New", sans-serif;
	--font-serif: "Cormorant Garamond", serif;
	--shell: min(1380px, calc(100vw - 96px));
	--header-height: 94px;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
	--mouse-x: 50%;
	--mouse-y: 50%;
}

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

html {
	background: var(--ink);
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

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

body.admin-bar .mobile-menu {
	top: 32px;
}

::selection {
	background: var(--gold);
	color: var(--ink);
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

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

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

main {
	position: relative;
	z-index: 1;
}

.section-shell {
	width: var(--shell);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 10000;
	background: var(--paper-bright);
	color: var(--ink);
	padding: 12px 18px;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

.site-noise {
	position: fixed;
	inset: 0;
	z-index: 9998;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.68'/%3E%3C/svg%3E");
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 24px;
	color: var(--paper-dim);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 34px;
	height: 1px;
	background: var(--gold);
	content: "";
}

.eyebrow--dark {
	color: rgba(8, 10, 13, 0.62);
}

.eyebrow--dark::before {
	background: var(--ink);
}

.button {
	position: relative;
	display: inline-flex;
	min-width: 220px;
	height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0 22px 0 27px;
	border: 1px solid transparent;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	overflow: hidden;
	text-transform: uppercase;
	transition:
		color 0.45s var(--ease-out),
		border-color 0.45s var(--ease-out),
		background-color 0.45s var(--ease-out),
		transform 0.45s var(--ease-out);
}

.button::before {
	position: absolute;
	inset: 0;
	background: var(--gold);
	content: "";
	transform: translateY(103%);
	transition: transform 0.5s var(--ease-out);
}

.button span,
.button svg {
	position: relative;
	z-index: 1;
}

.button svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform 0.4s var(--ease-out);
}

.button:hover::before,
.button:focus-visible::before {
	transform: translateY(0);
}

.button:hover svg,
.button:focus-visible svg {
	transform: translateX(4px);
}

.button--light {
	background: var(--paper-bright);
	color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
	color: var(--ink);
}

.button--ink {
	background: var(--ink);
	color: var(--paper);
}

.button--ink:hover,
.button--ink:focus-visible {
	color: var(--ink);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--paper);
}

.button--outline:hover,
.button--outline:focus-visible {
	border-color: var(--gold);
	color: var(--ink);
}

.line-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.5;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.line-link span {
	color: var(--gold);
	font-size: 16px;
	transition: transform 0.35s var(--ease-out);
}

.line-link:hover,
.line-link:focus-visible {
	color: var(--gold-bright);
}

.line-link:hover span,
.line-link:focus-visible span {
	transform: translate(3px, -3px);
}

/* Intro and page transitions */
.intro-loader {
	position: fixed;
	inset: 0;
	z-index: 10020;
	display: grid;
	background: #050608;
	place-items: center;
	animation: intro-hide 0.8s var(--ease-in-out) 1.9s forwards;
	pointer-events: none;
}

.intro-loader::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 64px 64px;
	content: "";
	mask-image: radial-gradient(circle, #000 0, transparent 74%);
}

.intro-loader__inner {
	position: relative;
	width: min(720px, calc(100vw - 48px));
}

.intro-loader__index,
.intro-loader__status {
	margin: 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.26em;
}

.intro-loader__index {
	margin-bottom: 20px;
}

.intro-loader__status {
	margin-top: 14px;
	text-align: right;
}

.intro-loader__word {
	display: flex;
	justify-content: space-between;
	font-family: var(--font-serif);
	font-size: clamp(42px, 8vw, 104px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 0.9;
}

.intro-loader__word span {
	animation: intro-letter 0.7s var(--ease-out) both;
	opacity: 0;
	transform: translateY(45px) rotateX(-65deg);
}

.intro-loader__word span:nth-child(2) { animation-delay: 0.05s; }
.intro-loader__word span:nth-child(3) { animation-delay: 0.1s; }
.intro-loader__word span:nth-child(4) { animation-delay: 0.15s; }
.intro-loader__word span:nth-child(5) { animation-delay: 0.2s; color: var(--gold); }
.intro-loader__word span:nth-child(6) { animation-delay: 0.25s; }
.intro-loader__word span:nth-child(7) { animation-delay: 0.3s; }
.intro-loader__word span:nth-child(8) { animation-delay: 0.35s; }
.intro-loader__word span:nth-child(9) { animation-delay: 0.4s; }

.intro-loader__track {
	height: 1px;
	margin-top: 28px;
	background: rgba(255, 255, 255, 0.15);
	overflow: hidden;
}

.intro-loader__track i {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--gold), var(--gold-bright));
	animation: intro-progress 1.45s var(--ease-in-out) 0.2s both;
	transform-origin: left;
}

.page-wipe {
	position: fixed;
	inset: 0;
	z-index: 10010;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	pointer-events: none;
	visibility: hidden;
}

.page-wipe span {
	background: var(--gold);
	transform: translateY(101%);
}

body.is-leaving .page-wipe {
	visibility: visible;
}

body.is-leaving .page-wipe span {
	animation: wipe-in 0.55s var(--ease-in-out) forwards;
}

body.is-leaving .page-wipe span:nth-child(2) { animation-delay: 0.04s; }
body.is-leaving .page-wipe span:nth-child(3) { animation-delay: 0.08s; }
body.is-leaving .page-wipe span:nth-child(4) { animation-delay: 0.12s; }

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition:
		height 0.45s var(--ease-out),
		background-color 0.45s ease,
		border-color 0.45s ease,
		transform 0.45s var(--ease-out);
}

.site-header.is-scrolled {
	height: 76px;
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(8, 10, 13, 0.82);
	backdrop-filter: blur(18px);
}

.site-header.is-hidden {
	transform: translateY(-105%);
}

.site-header__inner {
	display: flex;
	width: min(1520px, calc(100vw - 56px));
	height: 100%;
	align-items: center;
	justify-content: space-between;
	margin-inline: auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
}

.site-brand__mark {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	overflow: visible;
}

.site-brand__mark::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(200, 164, 107, 0);
	content: "";
	transition: border-color 0.35s ease;
}

.site-brand:hover .site-brand__mark::after {
	border-color: rgba(200, 164, 107, 0.7);
}


/* The shared mark is intentionally alive: a calm helical drift, not a literal spin. */
.helix-logo {
	position: relative;
	display: inline-grid;
	place-items: center;
	isolation: isolate;
	overflow: visible;
	transform-style: preserve-3d;
}

.helix-logo::before,
.helix-logo::after {
	position: absolute;
	border: 1px solid rgba(200, 164, 107, 0.33);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.helix-logo::before {
	inset: 7% -22%;
	border-right-color: rgba(168, 240, 223, 0.3);
	transform: rotateX(67deg) rotateZ(-18deg);
	animation: helix-orbit-one 12s linear infinite;
}

.helix-logo::after {
	inset: 22% -13%;
	border-color: rgba(238, 213, 167, 0.24);
	transform: rotateX(67deg) rotateZ(38deg);
	animation: helix-orbit-two 9.5s linear infinite;
}

.helix-logo > img {
	position: relative;
	z-index: 2;
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transform-origin: 50% 50%;
	will-change: transform, filter;
	animation: helix-logo-spiral 10.5s cubic-bezier(0.45, 0.05, 0.2, 1) infinite;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.52));
}

.helix-logo--nav,
.helix-logo--nav > img {
	width: 100%;
	height: 100%;
}

.helix-logo--nav::before,
.helix-logo--nav::after {
	inset: 9% -28%;
	opacity: 0.62;
}

.helix-logo--nav > img {
	padding: 4px 9px;
	filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.64));
}

.site-brand__mark .helix-logo {
	display: grid;
}

.site-brand__mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-brand__type {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-brand__type strong {
	font-family: var(--font-serif);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.11em;
	line-height: 1;
}

.site-brand__type small {
	color: rgba(255, 255, 255, 0.5);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.11em;
	line-height: 1.2;
}

.desktop-nav {
	display: flex;
	height: 100%;
	align-items: center;
	gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	transition: color 0.25s ease;
}

.desktop-nav > a::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	height: 1px;
	background: var(--gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s var(--ease-out);
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a[aria-current="page"] {
	color: #fff;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="page"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

.desktop-nav > a span {
	color: rgba(200, 164, 107, 0.72);
	font-family: var(--font-serif);
	font-size: 12px;
	font-style: italic;
	font-weight: 500;
}

.desktop-nav .desktop-nav__contact {
	height: 46px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.desktop-nav .desktop-nav__contact::after {
	display: none;
}

.desktop-nav__contact svg {
	width: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.menu-toggle {
	position: relative;
	display: none;
	width: 58px;
	height: 42px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle span {
	position: absolute;
	top: 4px;
	right: 0;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.menu-toggle i {
	position: absolute;
	right: 0;
	width: 34px;
	height: 1px;
	background: currentColor;
	transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out);
}

.menu-toggle i:nth-of-type(1) { top: 24px; }
.menu-toggle i:nth-of-type(2) { top: 33px; width: 23px; }

.menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
	top: 29px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
	top: 29px;
	width: 34px;
	transform: rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 900;
	display: grid;
	padding: calc(var(--header-height) + 40px) 28px 28px;
	background: #080a0d;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
	visibility: hidden;
}

.mobile-menu.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.mobile-menu__backdrop,
.mobile-menu__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.mobile-menu__grid {
	background:
		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: 44px 44px;
	mask-image: linear-gradient(#000, transparent 85%);
}

.mobile-menu__orb {
	position: absolute;
	top: 16%;
	right: -20%;
	width: 80vw;
	aspect-ratio: 1;
	border: 1px solid rgba(200, 164, 107, 0.22);
	border-radius: 50%;
	box-shadow:
		0 0 0 12vw rgba(255, 255, 255, 0.018),
		0 0 0 24vw rgba(255, 255, 255, 0.012);
}

.mobile-menu__nav {
	position: relative;
	z-index: 1;
	align-self: center;
}

.mobile-menu__nav a {
	display: flex;
	align-items: baseline;
	gap: 18px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	opacity: 0;
	transform: translateY(25px);
}

.mobile-menu.is-open .mobile-menu__nav a {
	animation: menu-item 0.7s var(--ease-out) forwards;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { animation-delay: 0.07s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { animation-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { animation-delay: 0.21s; }

.mobile-menu__nav small {
	color: var(--gold);
	font-family: var(--font-serif);
	font-size: 15px;
	font-style: italic;
}

.mobile-menu__nav span {
	font-family: var(--font-serif);
	font-size: clamp(42px, 11vw, 68px);
	font-weight: 500;
	line-height: 1.15;
}

.mobile-menu__foot {
	position: relative;
	z-index: 1;
	display: flex;
	align-self: end;
	justify-content: space-between;
	gap: 20px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 9px;
	letter-spacing: 0.1em;
}

.mobile-menu__foot p {
	margin: 0;
}

.site-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1100;
	height: 2px;
	pointer-events: none;
}

.site-progress i {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--gold);
	box-shadow: 0 0 16px rgba(200, 164, 107, 0.75);
	transform: scaleX(0);
	transform-origin: left;
}

.custom-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10030;
	width: 0;
	height: 0;
	pointer-events: none;
}

.custom-cursor__ring,
.custom-cursor__dot {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.custom-cursor__ring {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	transition:
		width 0.25s ease,
		height 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.custom-cursor__dot {
	width: 4px;
	height: 4px;
	background: var(--gold);
}

.custom-cursor.is-hovering .custom-cursor__ring {
	width: 56px;
	height: 56px;
	border-color: rgba(200, 164, 107, 0.7);
	background: rgba(200, 164, 107, 0.12);
}

/* Home hero */
.hero {
	position: relative;
	min-height: 100svh;
	background:
		radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(200, 164, 107, 0.09), transparent 25%),
		var(--ink);
	overflow: hidden;
}

.hero__canvas,
.hero__grid,
.hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__canvas {
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.hero__grid {
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: clamp(45px, 5vw, 82px) clamp(45px, 5vw, 82px);
	mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero__grid::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 61%;
	width: 1px;
	background: linear-gradient(transparent, rgba(200, 164, 107, 0.8), transparent);
	content: "";
	opacity: 0.5;
}

.hero__glow {
	filter: blur(60px);
}

.hero__glow--one {
	top: 18%;
	right: 8%;
	bottom: auto;
	left: auto;
	width: 32vw;
	height: 32vw;
	border-radius: 50%;
	background: rgba(200, 164, 107, 0.12);
	animation: ambient-drift 9s ease-in-out infinite alternate;
}

.hero__glow--two {
	top: auto;
	right: auto;
	bottom: -20%;
	left: 30%;
	width: 40vw;
	height: 20vw;
	border-radius: 50%;
	background: rgba(98, 151, 158, 0.08);
	animation: ambient-drift 12s ease-in-out 1s infinite alternate-reverse;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	min-height: 100svh;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
	align-items: center;
	gap: clamp(44px, 6vw, 110px);
	padding-top: calc(var(--header-height) + 64px);
	padding-bottom: 120px;
}

.hero__copy {
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: clamp(38px, 5vh, 66px);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.hero__eyebrow p {
	margin: 0;
}

.hero__eyebrow small {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.42);
	font-size: 8px;
	letter-spacing: 0.15em;
}

.hero__live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 0 0 rgba(168, 240, 223, 0.5);
	animation: signal-pulse 2s ease-out infinite;
}

.hero__title,
.page-hero__title h1 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(78px, 8.4vw, 142px);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.72;
}

.hero__line {
	display: block;
	padding: 0.08em 0 0.14em;
	overflow: hidden;
}

.hero__line > span {
	display: block;
	animation: title-rise 1.15s var(--ease-out) 1.8s both;
}

.hero__line:nth-child(2) > span {
	animation-delay: 1.92s;
}

.page-hero .hero__line > span {
	animation-delay: 0.18s;
}

.page-hero .hero__line:nth-child(2) > span {
	animation-delay: 0.3s;
}

.hero__line--accent {
	color: var(--gold-bright);
	font-style: italic;
}

.hero__statement {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: clamp(24px, 4vw, 62px);
	margin-top: clamp(34px, 5vh, 64px);
	padding-top: 24px;
	border-top: 1px solid var(--line-light);
	animation: fade-up 0.9s var(--ease-out) 2.16s both;
}

.hero__statement-main {
	margin: 0;
	font-size: clamp(18px, 1.7vw, 26px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.65;
}

.hero__statement-sub {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	line-height: 2;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
	animation: fade-up 0.9s var(--ease-out) 2.28s both;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.text-link i {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	transition: border-color 0.3s ease, transform 0.4s var(--ease-out);
}

.text-link i::before,
.text-link i::after {
	position: absolute;
	top: 50%;
	content: "";
}

.text-link i::before {
	left: 12px;
	width: 17px;
	height: 1px;
	background: currentColor;
}

.text-link i::after {
	right: 12px;
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: translateY(-3px) rotate(45deg);
}

.text-link:hover i {
	border-color: var(--gold);
	transform: rotate(-35deg);
}

.hero__visual {
	position: relative;
	justify-self: end;
	width: min(38vw, 610px);
	animation: visual-arrive 1.25s var(--ease-out) 1.95s both;
	transform-style: preserve-3d;
}

.hero__visual-frame {
	position: relative;
	aspect-ratio: 0.92;
	padding: clamp(14px, 1.5vw, 22px);
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.018);
}

.hero__visual-frame::before {
	position: absolute;
	inset: 9%;
	z-index: -1;
	border-radius: 50%;
	background: rgba(200, 164, 107, 0.15);
	box-shadow: 0 0 120px 50px rgba(200, 164, 107, 0.12);
	content: "";
	filter: blur(20px);
}

.hero__visual-corners i {
	position: absolute;
	z-index: 5;
	width: 25px;
	height: 25px;
	border-color: var(--gold);
	border-style: solid;
}

.hero__visual-corners i:nth-child(1) { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero__visual-corners i:nth-child(2) { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.hero__visual-corners i:nth-child(3) { right: -1px; bottom: -1px; border-width: 0 2px 2px 0; }
.hero__visual-corners i:nth-child(4) { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }

.hero__image-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 45%, rgba(238, 213, 167, 0.11), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 48%);
}

.helix-logo--hero {
	width: 100%;
	height: 100%;
	padding: 5% 16%;
}

.helix-logo--hero::before {
	inset: 13% 0;
	border-width: 1px;
	animation-duration: 18s;
}

.helix-logo--hero::after {
	inset: 24% 8%;
	border-color: rgba(168, 240, 223, 0.2);
	animation-duration: 14s;
}

.hero__logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.64));
	animation-duration: 13s;
}

.hero__visual:hover .hero__logo-image {
	filter: brightness(1.08) drop-shadow(0 28px 36px rgba(0, 0, 0, 0.68));
}

.hero__scan {
	position: absolute;
	right: 0;
	left: 0;
	z-index: 3;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
	box-shadow: 0 0 24px 6px rgba(238, 213, 167, 0.35);
	animation: scan 5.5s ease-in-out infinite;
	opacity: 0.75;
}

.hero__image-vignette {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 10, 13, 0.18), transparent 25%, transparent 68%, rgba(8, 10, 13, 0.88)),
		linear-gradient(90deg, rgba(8, 10, 13, 0.45), transparent 24%, transparent 76%, rgba(8, 10, 13, 0.45));
}

.hero__orbit {
	position: absolute;
	z-index: 4;
	border: 1px solid rgba(200, 164, 107, 0.36);
	border-radius: 50%;
	pointer-events: none;
}

.hero__orbit::after {
	position: absolute;
	top: 50%;
	left: -3px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold-bright);
	box-shadow: 0 0 15px var(--gold);
	content: "";
}

.hero__orbit--a {
	inset: 2% -11% 20% 5%;
	animation: orbit-tilt 14s linear infinite;
	transform: rotate(-20deg);
}

.hero__orbit--b {
	inset: 14% 3% 7% -14%;
	border-color: rgba(168, 240, 223, 0.18);
	animation: orbit-tilt 19s linear infinite reverse;
	transform: rotate(28deg);
}

.hero__node {
	position: absolute;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(8, 10, 13, 0.66);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.72);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.hero__node span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 8px var(--signal);
}

.hero__node--one {
	top: 17%;
	right: -7%;
	animation: node-float 4.5s ease-in-out infinite alternate;
}

.hero__node--two {
	bottom: 23%;
	left: -7%;
	animation: node-float 5.5s ease-in-out 0.8s infinite alternate-reverse;
}

.hero__visual-code {
	position: absolute;
	right: 6%;
	bottom: 6%;
	z-index: 5;
	margin: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 7px;
	letter-spacing: 0.18em;
	line-height: 1.8;
	text-align: right;
}

.hero__foot {
	position: absolute;
	right: 0;
	bottom: 26px;
	left: 0;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: end;
	color: rgba(255, 255, 255, 0.38);
	font-size: 7px;
	letter-spacing: 0.2em;
	line-height: 1.8;
}

.hero__foot > p {
	margin: 0;
	text-align: center;
}

.hero__scroll {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero__scroll i {
	position: relative;
	display: block;
	width: 60px;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
	overflow: hidden;
}

.hero__scroll i::after {
	position: absolute;
	inset: 0;
	background: var(--gold);
	content: "";
	animation: scroll-line 2.3s ease-in-out infinite;
	transform: translateX(-110%);
}

.hero__coordinate {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
}

.kinetic-rail {
	position: relative;
	z-index: 3;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--ink);
	overflow: hidden;
}

.kinetic-rail__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 28px;
	animation: marquee 28s linear infinite;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--font-serif);
	font-size: 15px;
	letter-spacing: 0.12em;
	white-space: nowrap;
}

.kinetic-rail__track i {
	width: 5px;
	height: 5px;
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

/* Home manifesto */
.manifesto {
	padding-top: clamp(120px, 14vw, 220px);
	padding-bottom: clamp(120px, 14vw, 220px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.manifesto__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line-dark);
}

.manifesto__index {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 15px;
	font-style: italic;
	letter-spacing: 0.25em;
}

.manifesto__body {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	gap: 7vw;
	padding: clamp(70px, 8vw, 130px) 0 clamp(80px, 9vw, 140px);
}

.manifesto__title {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(64px, 7vw, 118px);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.manifesto__title span {
	color: #987446;
	font-style: italic;
}

.manifesto__copy {
	align-self: end;
	max-width: 520px;
}

.manifesto__copy p {
	margin-bottom: 24px;
	color: rgba(8, 10, 13, 0.72);
	font-size: 14px;
	line-height: 2.15;
}

.manifesto__copy strong {
	color: var(--ink);
	font-weight: 700;
}

.manifesto__values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
}

.manifesto__values article {
	position: relative;
	min-height: 270px;
	padding: 32px clamp(24px, 3vw, 46px);
	border-right: 1px solid var(--line-dark);
	overflow: hidden;
	transition: color 0.5s var(--ease-out);
}

.manifesto__values article:last-child {
	border-right: 0;
}

.manifesto__values article::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--ink);
	content: "";
	transform: translateY(101%);
	transition: transform 0.55s var(--ease-out);
}

.manifesto__values article:hover {
	color: var(--paper);
}

.manifesto__values article:hover::before {
	transform: translateY(0);
}

.manifesto__values article > * {
	position: relative;
	z-index: 1;
}

.manifesto__values article > span {
	display: block;
	margin-bottom: 58px;
	color: #987446;
	font-family: var(--font-serif);
	font-size: 16px;
	font-style: italic;
}

.manifesto__values h3 {
	margin-bottom: 12px;
	font-size: 22px;
	letter-spacing: 0.05em;
}

.manifesto__values p {
	margin: 0;
	color: currentColor;
	font-size: 12px;
	line-height: 1.9;
	opacity: 0.68;
}

/* Capabilities */
.capabilities {
	position: relative;
	padding: clamp(130px, 14vw, 230px) 0;
	background:
		radial-gradient(circle at 10% 20%, rgba(200, 164, 107, 0.08), transparent 25%),
		var(--ink);
	overflow: clip;
}

.capabilities::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
	pointer-events: none;
}

.capabilities__intro {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr 0.55fr;
	gap: 8vw;
	align-items: end;
	padding-bottom: clamp(90px, 10vw, 160px);
}

.capabilities__intro h2,
.product-lab__head h2,
.process__head h2,
.company-preview__content h2,
.contact-cta__title,
.service-domain__head h2,
.origin__statement h2,
.philosophy-stage__title h2,
.values__head h2,
.contact-layout__intro h2,
.remote-support__copy h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(56px, 6.4vw, 108px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.capabilities__intro h2 em,
.product-lab__head h2 em,
.process__head h2 em,
.company-preview__content h2 em,
.contact-cta__title em,
.service-domain__head h2 em,
.philosophy-stage__title h2 em,
.values__head h2 em,
.contact-layout__intro h2 em,
.remote-support__copy h2 em {
	color: var(--gold-bright);
	font-weight: 500;
}

.capabilities__intro > p,
.product-lab__head > p,
.process__head > p,
.service-domain__head > p,
.values__head > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2.1;
}

.service-story {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(380px, 0.9fr) minmax(380px, 0.72fr);
	justify-content: space-between;
	gap: 9vw;
}

.service-story__stage {
	position: sticky;
	top: calc(var(--header-height) + 40px);
	display: grid;
	height: calc(100vh - var(--header-height) - 80px);
	min-height: 590px;
	max-height: 780px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		radial-gradient(circle at center, rgba(200, 164, 107, 0.13), transparent 38%),
		rgba(255, 255, 255, 0.015);
	overflow: hidden;
	place-items: center;
}

.service-story__stage::before,
.service-story__stage::after {
	position: absolute;
	content: "";
}

.service-story__stage::before {
	inset: 0;
	background:
		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: 40px 40px;
	mask-image: radial-gradient(circle, #000, transparent 70%);
}

.service-story__stage::after {
	top: 10%;
	bottom: 10%;
	left: 50%;
	width: 1px;
	background: linear-gradient(transparent, rgba(200, 164, 107, 0.65), transparent);
	animation: data-scan 4s ease-in-out infinite;
}

.service-orb {
	position: relative;
	width: min(66%, 440px);
	aspect-ratio: 1;
	transition: transform 0.9s var(--ease-out);
}

.service-orb__core {
	position: absolute;
	inset: 34%;
	z-index: 4;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, var(--gold-bright), #5d462b 34%, #111 72%);
	box-shadow:
		0 0 50px rgba(200, 164, 107, 0.35),
		inset -12px -15px 26px rgba(0, 0, 0, 0.55);
	animation: core-breathe 4s ease-in-out infinite;
}

.service-orb__core::before,
.service-orb__core::after {
	position: absolute;
	border-radius: 50%;
	content: "";
}

.service-orb__core::before {
	inset: 16%;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.service-orb__core::after {
	top: 18%;
	left: 22%;
	width: 20%;
	height: 10%;
	background: rgba(255, 255, 255, 0.7);
	filter: blur(5px);
	transform: rotate(-35deg);
}

.service-orb__ring {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 50%;
}

.service-orb__ring::after {
	position: absolute;
	top: 50%;
	left: -3px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold-bright);
	box-shadow: 0 0 10px var(--gold);
	content: "";
}

.service-orb__ring--one {
	inset: 16%;
	animation: sphere-spin 9s linear infinite;
	transform: rotateX(62deg) rotateZ(16deg);
}

.service-orb__ring--two {
	inset: 6%;
	border-color: rgba(168, 240, 223, 0.2);
	animation: sphere-spin 14s linear infinite reverse;
	transform: rotateY(65deg) rotateZ(-28deg);
}

.service-orb__ring--three {
	inset: 26% 2%;
	animation: sphere-spin 18s linear infinite;
	transform: rotateX(25deg) rotateZ(54deg);
}

.service-orb__bits i {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 8px currentColor;
}

.service-orb__bits i:nth-child(1) { top: 8%; left: 48%; }
.service-orb__bits i:nth-child(2) { top: 28%; right: 6%; }
.service-orb__bits i:nth-child(3) { right: 17%; bottom: 14%; }
.service-orb__bits i:nth-child(4) { bottom: 2%; left: 44%; }
.service-orb__bits i:nth-child(5) { bottom: 27%; left: 3%; }
.service-orb__bits i:nth-child(6) { top: 18%; left: 13%; }

.service-story__hud {
	position: absolute;
	top: 22px;
	right: 22px;
	left: 22px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-story__hud p,
.service-story__hud small {
	margin: 0;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.service-story__hud p {
	display: flex;
	flex-direction: column;
}

.service-story__hud p span {
	color: rgba(255, 255, 255, 0.35);
}

.service-story__hud p strong {
	color: var(--gold-bright);
	font-weight: 700;
}

.service-story__hud > div {
	display: flex;
	gap: 4px;
}

.service-story__hud > div i {
	width: 3px;
	height: 16px;
	background: var(--gold);
	animation: equalizer 1s ease-in-out infinite alternate;
}

.service-story__hud > div i:nth-child(2) { animation-delay: -0.4s; }
.service-story__hud > div i:nth-child(3) { animation-delay: -0.8s; }
.service-story__hud > div i:nth-child(4) { animation-delay: -0.2s; }
.service-story__hud > div i:nth-child(5) { animation-delay: -0.6s; }

.service-story__hud small {
	color: rgba(255, 255, 255, 0.32);
}

.service-story__number {
	position: absolute;
	right: 25px;
	bottom: -0.18em;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.05);
	font-family: var(--font-serif);
	font-size: clamp(130px, 17vw, 270px);
	line-height: 1;
	transition: opacity 0.4s ease, transform 0.6s var(--ease-out);
}

.service-story__steps {
	padding-bottom: 10vh;
}

.service-step {
	display: flex;
	min-height: 76vh;
	flex-direction: column;
	justify-content: center;
	padding: 80px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	opacity: 0.28;
	transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
	transform: translateX(20px);
}

.service-step.is-active {
	opacity: 1;
	transform: translateX(0);
}

.service-step__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 36px;
}

.service-step__meta span {
	color: var(--gold-bright);
	font-family: var(--font-serif);
	font-size: 18px;
	font-style: italic;
}

.service-step__meta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.service-step h3 {
	margin-bottom: 28px;
	font-size: clamp(32px, 3.4vw, 54px);
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.service-step > p {
	max-width: 560px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 2.15;
}

.service-step .line-link {
	align-self: flex-start;
}

/* Product lab */
.product-lab {
	padding-top: clamp(120px, 13vw, 210px);
	padding-bottom: clamp(130px, 14vw, 220px);
}

.product-lab__head,
.process__head,
.values__head {
	display: grid;
	grid-template-columns: 1.15fr 0.55fr;
	align-items: end;
	gap: 8vw;
	margin-bottom: clamp(70px, 9vw, 140px);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	perspective: 1400px;
}

.product-card {
	position: relative;
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: var(--ink-soft);
	overflow: hidden;
	transform-style: preserve-3d;
}

.product-card::after {
	position: absolute;
	inset: 0;
	border: 1px solid transparent;
	content: "";
	pointer-events: none;
	transition: border-color 0.4s ease;
}

.product-card:hover::after {
	border-color: rgba(200, 164, 107, 0.6);
}

.product-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card__top p {
	margin: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.product-card__top p span {
	margin-right: 10px;
	color: var(--gold-bright);
}

.product-card__top > i {
	padding: 3px 7px;
	border: 1px solid rgba(168, 240, 223, 0.35);
	color: var(--signal);
	font-size: 7px;
	font-style: normal;
	letter-spacing: 0.15em;
}

.product-card__visual {
	position: relative;
	display: grid;
	height: clamp(360px, 36vw, 520px);
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		#0d1014;
	background-size: 38px 38px;
	overflow: hidden;
	place-items: center;
}

.product-card__visual::after {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, transparent, rgba(8, 10, 13, 0.88) 80%);
	content: "";
}

.product-card__visual > p {
	position: absolute;
right: 20px;
	bottom: 16px;
	z-index: 3;
	margin: 0;
	color: rgba(255, 255, 255, 0.35);
	font-size: 7px;
	letter-spacing: 0.15em;
	line-height: 1.7;
	text-align: right;
}

.product-card__visual > p strong {
	color: var(--gold-bright);
	font-size: 9px;
}

.buzz-radar {
	position: relative;
	z-index: 1;
	width: 62%;
	aspect-ratio: 1;
	border: 1px solid rgba(200, 164, 107, 0.4);
	border-radius: 50%;
	background: conic-gradient(from 25deg, transparent 0 76%, rgba(200, 164, 107, 0.15) 88%, transparent);
	animation: radar-spin 9s linear infinite;
}

.buzz-radar::before,
.buzz-radar::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	content: "";
}

.buzz-radar::before { inset: 19%; }
.buzz-radar::after { inset: 39%; }

.buzz-radar i {
	position: absolute;
	background: rgba(255, 255, 255, 0.11);
}

.buzz-radar i:nth-child(1) { top: 50%; right: 0; left: 0; height: 1px; }
.buzz-radar i:nth-child(2) { top: 0; bottom: 0; left: 50%; width: 1px; }
.buzz-radar i:nth-child(3) { top: 15%; right: 15%; bottom: 15%; left: 15%; border: 1px dashed rgba(255, 255, 255, 0.09); border-radius: 50%; background: none; }
.buzz-radar i:nth-child(4) { top: 50%; left: 50%; width: 50%; height: 1px; background: var(--gold); transform: rotate(-25deg); transform-origin: left; }

.buzz-radar span {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 12px var(--signal);
	animation: radar-dot 2s ease-in-out infinite alternate;
}

.buzz-radar span:nth-of-type(1) { top: 24%; left: 38%; }
.buzz-radar span:nth-of-type(2) { top: 40%; right: 20%; animation-delay: -0.6s; }
.buzz-radar span:nth-of-type(3) { right: 34%; bottom: 27%; animation-delay: -1.1s; }
.buzz-radar span:nth-of-type(4) { bottom: 34%; left: 18%; animation-delay: -1.6s; }
.buzz-radar span:nth-of-type(5) { top: 48%; left: 46%; animation-delay: -0.3s; }

.buzz-chart {
	position: absolute;
	right: 8%;
	bottom: 11%;
	z-index: 2;
	display: flex;
	height: 72px;
	align-items: flex-end;
	gap: 4px;
}

.buzz-chart i {
	width: 4px;
	background: rgba(200, 164, 107, 0.6);
	animation: chart-bar 1.7s ease-in-out infinite alternate;
}

.buzz-chart i:nth-child(1) { height: 20%; }
.buzz-chart i:nth-child(2) { height: 45%; animation-delay: -0.5s; }
.buzz-chart i:nth-child(3) { height: 32%; animation-delay: -1.2s; }
.buzz-chart i:nth-child(4) { height: 72%; animation-delay: -0.8s; }
.buzz-chart i:nth-child(5) { height: 55%; animation-delay: -0.2s; }
.buzz-chart i:nth-child(6) { height: 90%; animation-delay: -1.4s; }
.buzz-chart i:nth-child(7) { height: 66%; animation-delay: -0.9s; }

.trendio-helix {
	position: relative;
	z-index: 2;
	width: 54%;
	height: 72%;
}

.trendio-helix::before,
.trendio-helix::after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 46%;
	border: 1px solid rgba(200, 164, 107, 0.62);
	border-radius: 50%;
	content: "";
}

.trendio-helix::before {
	left: 13%;
	animation: helix-sway 5s ease-in-out infinite alternate;
	transform: skewY(24deg);
}

.trendio-helix::after {
	right: 13%;
	border-color: rgba(202, 205, 210, 0.55);
	animation: helix-sway 5s ease-in-out infinite alternate-reverse;
	transform: skewY(-24deg);
}

.trendio-helix span {
	position: absolute;
	right: 18%;
	left: 18%;
	z-index: 3;
	height: 1px;
	background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.7));
	animation: helix-rung 3s ease-in-out infinite;
	transform-origin: center;
}

.trendio-helix span:nth-child(1) { top: 10%; }
.trendio-helix span:nth-child(2) { top: 23%; animation-delay: -0.4s; }
.trendio-helix span:nth-child(3) { top: 36%; animation-delay: -0.8s; }
.trendio-helix span:nth-child(4) { top: 49%; animation-delay: -1.2s; }
.trendio-helix span:nth-child(5) { top: 62%; animation-delay: -1.6s; }
.trendio-helix span:nth-child(6) { top: 75%; animation-delay: -2s; }
.trendio-helix span:nth-child(7) { top: 88%; animation-delay: -2.4s; }

.trendio-data {
	position: absolute;
	top: 14%;
	left: 9%;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	gap: 5px;
}

.trendio-data i {
	width: 2px;
	height: 18px;
	background: var(--signal);
	animation: equalizer 1.2s ease-in-out infinite alternate;
}

.trendio-data i:nth-child(2) { animation-delay: -0.3s; }
.trendio-data i:nth-child(3) { animation-delay: -0.7s; }
.trendio-data i:nth-child(4) { animation-delay: -0.9s; }
.trendio-data i:nth-child(5) { animation-delay: -0.1s; }

.product-card__body {
	padding: clamp(32px, 4vw, 58px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card__label {
	margin-bottom: 20px;
	color: var(--gold-bright);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.product-card__body h3 {
	margin-bottom: 24px;
	font-size: clamp(26px, 2.4vw, 38px);
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.product-card__body > p:not(.product-card__label) {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2;
}

/* Process */
.process {
	padding-top: clamp(130px, 15vw, 230px);
	padding-bottom: clamp(130px, 15vw, 230px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.process__head > p {
	color: rgba(8, 10, 13, 0.6);
}

.process__head h2 em {
	color: #987446;
}

.process__list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line-dark);
	list-style: none;
}

.process__list li {
	position: relative;
	display: grid;
	min-height: 170px;
	grid-template-columns: 80px minmax(230px, 0.7fr) 1.3fr;
	align-items: center;
	gap: 3vw;
	border-bottom: 1px solid var(--line-dark);
	overflow: hidden;
	transition: color 0.5s var(--ease-out);
}

.process__list li::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--ink);
	content: "";
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.55s var(--ease-out);
}

.process__list li:hover {
	color: var(--paper);
}

.process__list li:hover::before {
	transform: scaleY(1);
}

.process__list li > * {
	position: relative;
	z-index: 1;
}

.process__list > li > span {
	color: #987446;
	font-family: var(--font-serif);
	font-size: 18px;
	font-style: italic;
	text-align: center;
}

.process__list div {
	display: flex;
	align-items: baseline;
	gap: 30px;
}

.process__list small {
	color: #987446;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.process__list h3 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 52px;
	font-weight: 500;
}

.process__list p {
	max-width: 660px;
	margin: 0;
	padding-right: 5vw;
	font-size: 13px;
	line-height: 2;
	opacity: 0.65;
}

/* Company preview and shared CTA */
.company-preview {
	position: relative;
	min-height: 820px;
	background: #080a0d;
	overflow: hidden;
}

.company-preview__media {
	position: absolute;
	inset: 0 0 0 50%;
	overflow: hidden;
}

.company-preview__media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--ink), transparent 42%),
		linear-gradient(180deg, transparent 50%, rgba(8, 10, 13, 0.92));
	content: "";
}

.company-preview__media .helix-logo {
	position: absolute;
	top: 50%;
	left: 54%;
	width: min(42vw, 520px);
	height: min(72vw, 720px);
	transform: translate(-50%, -50%);
	opacity: 0.78;
}

.company-preview__media .helix-logo::before,
.company-preview__media .helix-logo::after {
	inset: 15% -14%;
}

.company-preview__media .helix-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation-duration: 15.5s;
}

.company-preview__light {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -20%;
	z-index: 2;
	width: 18%;
	background: linear-gradient(90deg, transparent, rgba(238, 213, 167, 0.2), transparent);
	filter: blur(18px);
	animation: light-pass 7s ease-in-out infinite;
	transform: skewX(-12deg);
}

.company-preview__content {
	position: relative;
	z-index: 3;
	display: grid;
	min-height: 820px;
	grid-template-columns: 1fr 0.45fr;
	align-items: center;
	gap: 8vw;
}

.company-preview__content h2 {
	font-size: clamp(58px, 7vw, 112px);
}

.company-preview__content > div:last-child {
	align-self: end;
	padding-bottom: 120px;
}

.company-preview__content > div:last-child > p {
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 2.1;
}

.contact-cta {
	position: relative;
	padding-top: clamp(110px, 12vw, 190px);
	padding-bottom: clamp(110px, 12vw, 190px);
	background: var(--gold);
	box-shadow: 0 0 0 100vmax var(--gold);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
	overflow: hidden;
}

.contact-cta__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.25fr 0.55fr;
	align-items: end;
	gap: 8vw;
}

.contact-cta__title em {
	display: block;
	color: var(--ink);
	font-weight: 500;
}

.contact-cta__side p {
	margin-bottom: 32px;
	font-size: 13px;
	line-height: 2.05;
}

.contact-cta__orbit {
	position: absolute;
	top: -54%;
	right: -8%;
	width: 52vw;
	aspect-ratio: 1;
	border: 1px solid rgba(8, 10, 13, 0.18);
	border-radius: 50%;
	box-shadow:
		0 0 0 9vw rgba(8, 10, 13, 0.035),
		0 0 0 18vw rgba(8, 10, 13, 0.025);
	animation: orbit-tilt 20s linear infinite;
}

.contact-cta__orbit::before,
.contact-cta__orbit::after {
	position: absolute;
	inset: 20%;
	border: 1px solid rgba(8, 10, 13, 0.15);
	border-radius: 50%;
	content: "";
}

.contact-cta__orbit::after {
	inset: 40%;
	background: rgba(8, 10, 13, 0.06);
}

/* Footer */
.site-footer {
	position: relative;
	z-index: 2;
	background: #050607;
	overflow: hidden;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	gap: 8vw;
	padding-top: 90px;
	padding-bottom: 96px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__identity {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}


.site-footer__identity .helix-logo {
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	flex: 0 0 64px;
}

.site-footer__identity .helix-logo::before,
.site-footer__identity .helix-logo::after {
	inset: 12% -22%;
	opacity: 0.56;
}

.site-footer__identity .helix-logo > img {
	width: 100%;
	height: 100%;
	padding: 3px 12px;
	object-fit: contain;
	filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.62));
}

.site-footer__identity .eyebrow {
	margin: 2px 0 10px;
}

.site-footer__identity > div > p:last-child {
	margin: 0;
	font-size: 13px;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4vw;
}

.site-footer__columns > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.site-footer__label {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.35);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.site-footer__columns a,
.site-footer__columns > div > p:not(.site-footer__label) {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 11px;
	line-height: 1.7;
	transition: color 0.25s ease;
}

.site-footer__columns a:hover {
	color: var(--gold-bright);
}

.site-footer__columns a svg {
	display: inline-block;
	width: 14px;
	margin-left: 4px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	vertical-align: middle;
}

.site-footer__word {
	display: flex;
	justify-content: center;
	padding: 30px 2vw 10px;
	color: rgba(255, 255, 255, 0.08);
	font-family: var(--font-serif);
	font-size: clamp(100px, 19vw, 310px);
	font-weight: 500;
	letter-spacing: -0.07em;
	line-height: 0.8;
	white-space: nowrap;
}

.site-footer__word em {
	color: rgba(200, 164, 107, 0.18);
	font-weight: 500;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
	color: rgba(255, 255, 255, 0.35);
	font-size: 8px;
	letter-spacing: 0.13em;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__bottom a span {
	color: var(--gold);
	font-size: 15px;
}

/* Subpage hero */
.page-hero {
	position: relative;
	min-height: min(900px, 100svh);
	background:
		radial-gradient(circle at 74% 36%, rgba(200, 164, 107, 0.11), transparent 25%),
		var(--ink);
	overflow: hidden;
}

.page-hero__grid {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.page-hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	min-height: min(900px, 100svh);
	grid-template-columns: 0.35fr 1.35fr 0.48fr;
	align-items: center;
	gap: 4vw;
	padding-top: var(--header-height);
	padding-bottom: 85px;
}

.page-hero__index {
	align-self: start;
	padding-top: calc(var(--header-height) + 80px);
}

.page-hero__index p,
.page-hero__index span {
	display: block;
	margin: 0;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.page-hero__index p {
	color: var(--gold-bright);
}

.page-hero__index span {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.34);
}

.page-hero__title {
	position: relative;
	z-index: 2;
}

.page-hero__title h1 {
	font-size: clamp(70px, 8vw, 132px);
	line-height: 0.78;
}

.page-hero__copy {
	align-self: end;
	padding-bottom: 110px;
}

.page-hero__copy p {
	margin-bottom: 18px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.7;
}

.page-hero__copy span {
	display: block;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	line-height: 2;
}

.page-hero__sequence {
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: rgba(255, 255, 255, 0.28);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.page-hero__sequence i {
	width: 38px;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.page-hero__orbit {
	position: absolute;
	top: 13%;
	right: -7%;
	width: 45vw;
	aspect-ratio: 1;
	border: 1px solid rgba(200, 164, 107, 0.2);
	border-radius: 50%;
	animation: orbit-tilt 22s linear infinite;
}

.page-hero__orbit::before,
.page-hero__orbit::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	content: "";
}

.page-hero__orbit::before { inset: 18%; }
.page-hero__orbit::after { inset: 39%; background: rgba(200, 164, 107, 0.04); }

.page-hero__orbit i {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 18px var(--gold);
}

.page-hero__orbit i:nth-child(1) { top: 20%; left: 9%; }
.page-hero__orbit i:nth-child(2) { top: 48%; right: -3px; }
.page-hero__orbit i:nth-child(3) { bottom: 12%; left: 25%; }

/* Services page */
.service-anchor {
	position: sticky;
	top: 0;
	z-index: 800;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(8, 10, 13, 0.92);
	backdrop-filter: blur(18px);
}

body.admin-bar .service-anchor {
	top: 32px;
}

.service-anchor > div {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.service-anchor a {
	display: flex;
	height: 60px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.55);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.service-anchor a:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.service-anchor a span {
	color: var(--gold);
	font-family: var(--font-serif);
	font-size: 13px;
	font-style: italic;
}

.service-anchor a:hover,
.service-anchor a:focus-visible,
.service-anchor a.is-active {
	background: rgba(200, 164, 107, 0.12);
	color: #fff;
}

.services-lead {
	padding-top: clamp(120px, 14vw, 210px);
	padding-bottom: clamp(120px, 14vw, 210px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.services-lead__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.65fr;
	gap: 10vw;
}

.services-lead__grid h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(64px, 7vw, 116px);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.services-lead__grid > div {
	align-self: end;
}

.services-lead__grid p {
	margin-bottom: 24px;
	color: rgba(8, 10, 13, 0.68);
	font-size: 14px;
	line-height: 2.15;
}

.service-domain {
	position: relative;
	padding: clamp(130px, 14vw, 220px) 0;
	overflow: clip;
}

.service-domain--ai,
.service-domain--consulting {
	background: var(--ink);
}

.service-domain--software {
	background: var(--paper);
	color: var(--ink);
}

.service-domain--subsidy {
	background: var(--gold);
	color: var(--ink);
}

.service-domain__head {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.23fr 1fr 0.55fr;
	align-items: end;
	gap: 5vw;
	margin-bottom: clamp(90px, 10vw, 160px);
}

.service-domain__number {
	color: rgba(255, 255, 255, 0.09);
	font-family: var(--font-serif);
	font-size: clamp(90px, 12vw, 180px);
	font-style: italic;
	line-height: 0.7;
}

.service-domain--software .service-domain__number,
.service-domain--subsidy .service-domain__number {
	color: rgba(8, 10, 13, 0.1);
}

.service-domain--software .service-domain__head h2 em,
.service-domain--subsidy .service-domain__head h2 em {
	color: #8b653c;
}

.service-domain--software .service-domain__head > p,
.service-domain--subsidy .service-domain__head > p {
	color: rgba(8, 10, 13, 0.64);
}

.buzz-feature,
.trendio-feature,
.software-showcase,
.consulting-map {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	align-items: center;
	gap: clamp(50px, 8vw, 130px);
}

.buzz-feature {
	margin-bottom: clamp(90px, 11vw, 170px);
}

.buzz-feature__visual,
.trendio-feature__visual,
.software-showcase__canvas,
.consulting-map__visual {
	position: relative;
	min-width: 0;
}

.dashboard-mock {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #0b0e12;
	box-shadow: 0 42px 90px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.dashboard-mock::before {
	display: block;
	padding-top: 70%;
	content: "";
}

.dashboard-mock__bar {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	height: 44px;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-mock__bar p,
.dashboard-mock__bar span {
	margin: 0;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.dashboard-mock__bar p {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dashboard-mock__bar p i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 8px var(--signal);
}

.dashboard-mock__bar span {
	color: rgba(255, 255, 255, 0.35);
}

.dashboard-mock__main {
	position: absolute;
	top: 44px;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	grid-template-columns: 50px 1fr;
}

.dashboard-mock__sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-top: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-mock__sidebar i {
	width: 13px;
	height: 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-mock__sidebar i:first-child {
	border-color: var(--gold);
	background: rgba(200, 164, 107, 0.25);
}

.dashboard-mock__content {
	padding: 18px;
}

.dashboard-mock__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.dashboard-mock__stats > div {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
}

.dashboard-mock__stats small,
.dashboard-mock__stats span {
	display: block;
	color: rgba(255, 255, 255, 0.35);
	font-size: 6px;
	letter-spacing: 0.12em;
}

.dashboard-mock__stats strong {
	display: inline-block;
	margin: 3px 10px 0 0;
	font-family: var(--font-serif);
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 500;
}

.dashboard-mock__stats span {
	display: inline;
	color: var(--signal);
}

.dashboard-mock__graph {
	position: relative;
	height: 52%;
	margin-top: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		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: 30px 30px;
	overflow: hidden;
}

.dashboard-mock__graph svg {
	position: absolute;
	inset: 12% 3% 5%;
	width: 94%;
	height: 83%;
	overflow: visible;
}

.graph-fill {
	fill: url("#graph-fill");
}

.graph-line {
	fill: none;
	stroke: var(--gold-bright);
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-width: 2;
	animation: draw-graph 4s var(--ease-out) infinite;
}

.dashboard-mock__graph i {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 9px var(--signal);
}

.dashboard-mock__graph i:nth-of-type(1) { top: 64%; left: 22%; }
.dashboard-mock__graph i:nth-of-type(2) { top: 46%; left: 49%; }
.dashboard-mock__graph i:nth-of-type(3) { top: 25%; left: 77%; }
.dashboard-mock__graph i:nth-of-type(4) { top: 12%; left: 94%; }
.dashboard-mock__graph i:nth-of-type(5) { top: 72%; left: 5%; }

.dashboard-mock__tags {
	display: flex;
	gap: 6px;
	margin-top: 9px;
}

.dashboard-mock__tags span {
	padding: 3px 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.4);
	font-size: 5px;
	letter-spacing: 0.1em;
}

.dashboard-mock__scan {
	position: absolute;
	right: 0;
	left: 0;
	z-index: 5;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--signal), transparent);
	box-shadow: 0 0 16px rgba(168, 240, 223, 0.4);
	animation: scan 5s ease-in-out infinite;
}

.product-title {
	margin-bottom: 30px;
}

.product-title span {
	display: block;
	margin-bottom: 6px;
	color: var(--gold);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.product-title h3 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(50px, 5vw, 82px);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
}

.product-title > p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 10px;
	letter-spacing: 0.2em;
}

.buzz-feature__lead {
	margin-bottom: 24px;
	color: var(--paper);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.8;
}

.buzz-feature__copy > p:last-child,
.trendio-feature__copy > p {
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2.1;
}

.feature-matrix {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: clamp(80px, 10vw, 150px);
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-matrix article {
	min-height: 320px;
	padding: 35px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	transition: background-color 0.35s ease;
}

.feature-matrix article:last-child {
	border-right: 0;
}

.feature-matrix article:hover {
	background: rgba(255, 255, 255, 0.035);
}

.feature-matrix__icon {
	position: relative;
	width: 68px;
	height: 68px;
	margin-bottom: 48px;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-matrix article > span {
	color: var(--gold);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.feature-matrix h3 {
	min-height: 64px;
	margin: 10px 0 18px;
	font-size: 17px;
	line-height: 1.7;
}

.feature-matrix p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	line-height: 1.9;
}

.feature-matrix__icon i {
	position: absolute;
}

.feature-matrix__icon--spark i {
	top: 50%;
	left: 50%;
	width: 1px;
	height: 38px;
	background: var(--gold);
	transform-origin: center;
}

.feature-matrix__icon--spark i:nth-child(1) { transform: translate(-50%, -50%); }
.feature-matrix__icon--spark i:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.feature-matrix__icon--spark i:nth-child(3) { transform: translate(-50%, -50%) rotate(-60deg); }

.feature-matrix__icon--chart {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	padding-bottom: 14px;
}

.feature-matrix__icon--chart i {
	position: static;
	width: 4px;
	background: var(--gold);
	animation: chart-bar 1.5s ease-in-out infinite alternate;
}

.feature-matrix__icon--chart i:nth-child(1) { height: 12px; }
.feature-matrix__icon--chart i:nth-child(2) { height: 24px; animation-delay: -0.4s; }
.feature-matrix__icon--chart i:nth-child(3) { height: 17px; animation-delay: -0.8s; }
.feature-matrix__icon--chart i:nth-child(4) { height: 35px; animation-delay: -1.2s; }

.feature-matrix__icon--nodes i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 8px var(--signal);
}

.feature-matrix__icon--nodes i:nth-child(1) { top: 14px; left: 31px; }
.feature-matrix__icon--nodes i:nth-child(2) { top: 31px; right: 12px; }
.feature-matrix__icon--nodes i:nth-child(3) { bottom: 12px; left: 33px; }
.feature-matrix__icon--nodes i:nth-child(4) { top: 30px; left: 12px; }

.feature-matrix__icon--nodes::after {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(168, 240, 223, 0.35);
	content: "";
	transform: rotate(45deg);
}

.feature-matrix__icon--chat i:first-child {
	inset: 17px 13px 22px;
	border: 1px solid var(--gold);
}

.feature-matrix__icon--chat i:first-child::after {
	position: absolute;
	bottom: -6px;
	left: 8px;
	width: 8px;
	height: 8px;
	border-bottom: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
	content: "";
	transform: skewY(-35deg);
}

.feature-matrix__icon--chat i:last-child {
	top: 27px;
	right: 22px;
	left: 22px;
	height: 1px;
	background: var(--gold);
	box-shadow: 0 6px 0 rgba(200, 164, 107, 0.6);
}

.pricing-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr 0.8fr;
	align-items: center;
	gap: 4vw;
	margin-bottom: clamp(110px, 13vw, 210px);
	padding: clamp(34px, 5vw, 68px);
	border: 1px solid rgba(200, 164, 107, 0.45);
	background:
		linear-gradient(120deg, rgba(200, 164, 107, 0.1), transparent 40%),
		#101318;
}

.pricing-panel h3 {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 38px);
	line-height: 1.5;
}

.pricing-panel__price {
	padding-inline: 4vw;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-panel__price small {
	color: rgba(255, 255, 255, 0.45);
	font-size: 9px;
	letter-spacing: 0.12em;
}

.pricing-panel__price > p {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 4px 0 2px;
}

.pricing-panel__price p span {
	font-size: 12px;
}

.pricing-panel__price p strong {
	font-family: var(--font-serif);
	font-size: clamp(46px, 5vw, 82px);
	font-weight: 500;
	letter-spacing: -0.04em;
}

.pricing-panel__price p em {
	font-size: 13px;
	font-style: normal;
}

.pricing-panel__price .pricing-panel__annual {
	display: block;
	margin: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 10px;
}

.pricing-panel__notes p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	font-size: 11px;
}

.pricing-panel__notes p i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 8px var(--signal);
}

.pricing-panel__notes small {
	display: block;
	margin-top: 15px;
	color: rgba(255, 255, 255, 0.35);
	font-size: 8px;
	line-height: 1.8;
}

.trendio-feature {
	grid-template-columns: 0.92fr 1.08fr;
}

.trendio-feature__copy h4 {
	margin-bottom: 20px;
	font-size: clamp(26px, 2.7vw, 43px);
	line-height: 1.5;
}

.trendio-feature__copy .trendio-feature__note {
	margin: 24px 0 32px;
	padding-left: 18px;
	border-left: 1px solid var(--gold);
	color: var(--gold-bright);
}

.trendio-feature__visual {
	display: grid;
	min-height: 580px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		#0d1014;
	background-size: 44px 44px;
	place-items: center;
}

.trendio-core {
	position: relative;
	width: 60%;
	aspect-ratio: 1;
}

.trendio-core__ring {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(200, 164, 107, 0.38);
	border-radius: 50%;
}

.trendio-core__ring::after {
	position: absolute;
	top: 50%;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 12px var(--gold);
	content: "";
}

.trendio-core__ring--a { animation: sphere-spin 10s linear infinite; transform: rotateX(68deg) rotateZ(15deg); }
.trendio-core__ring--b { animation: sphere-spin 13s linear infinite reverse; transform: rotateY(66deg) rotateZ(-25deg); }
.trendio-core__ring--c { inset: 22%; border-color: rgba(168, 240, 223, 0.3); animation: orbit-tilt 8s linear infinite; }

.trendio-core__center {
	position: absolute;
	inset: 34%;
	display: grid;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: radial-gradient(circle, #4b3a27, #0c0e11 72%);
	box-shadow: 0 0 45px rgba(200, 164, 107, 0.28);
	place-items: center;
}

.trendio-core__center span {
	font-family: var(--font-serif);
	font-size: clamp(45px, 6vw, 78px);
	color: var(--gold-bright);
}

.trendio-core > i {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--signal);
	box-shadow: 0 0 9px var(--signal);
}

.trendio-core > i:nth-of-type(1) { top: 2%; left: 48%; }
.trendio-core > i:nth-of-type(2) { top: 28%; right: 3%; }
.trendio-core > i:nth-of-type(3) { right: 18%; bottom: 8%; }
.trendio-core > i:nth-of-type(4) { bottom: 3%; left: 25%; }
.trendio-core > i:nth-of-type(5) { top: 34%; left: 2%; }

.trendio-feature__visual > p {
	position: absolute;
	right: 24px;
	bottom: 18px;
	margin: 0;
	color: rgba(255, 255, 255, 0.32);
	font-size: 8px;
	letter-spacing: 0.18em;
	text-align: right;
}

.trendio-feature__visual > p span {
	color: var(--gold);
}

.software-showcase {
	align-items: stretch;
}

.software-showcase__canvas {
	display: grid;
	min-height: 600px;
	background:
		linear-gradient(rgba(8, 10, 13, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(8, 10, 13, 0.055) 1px, transparent 1px);
	background-size: 42px 42px;
	place-items: center;
}

.software-showcase__orbit {
	position: absolute;
	width: 80%;
	aspect-ratio: 1;
	border: 1px solid rgba(139, 101, 60, 0.22);
	border-radius: 50%;
	animation: orbit-tilt 18s linear infinite;
}

.code-window {
	position: relative;
	z-index: 2;
	width: 84%;
	border: 1px solid rgba(8, 10, 13, 0.2);
	background: var(--ink);
	box-shadow: 28px 34px 0 rgba(139, 101, 60, 0.14);
}

.code-window__head {
	display: flex;
	height: 42px;
	align-items: center;
	gap: 7px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-window__head i {
	width: 7px;
	height: 7px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
}

.code-window__head span {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.3);
	font-size: 7px;
	letter-spacing: 0.15em;
}

.code-window__body {
	position: relative;
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 15px;
	padding: clamp(30px, 4vw, 58px);
	color: rgba(255, 255, 255, 0.65);
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: clamp(9px, 1vw, 14px);
	line-height: 2.5;
}

.code-window__body small {
	color: rgba(255, 255, 255, 0.22);
}

.code-window__body p {
	margin: 0;
}

.code-window__body b {
	color: var(--signal);
	font-weight: 400;
}

.code-window__body em {
	color: var(--gold-bright);
	font-style: normal;
}

.code-window__cursor {
	position: absolute;
	right: 14%;
	bottom: 48px;
	width: 8px;
	height: 18px;
	background: var(--gold);
	animation: cursor-blink 1s steps(1) infinite;
}

.software-showcase__list {
	border-top: 1px solid var(--line-dark);
}

.software-showcase__list article {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 18px;
	padding: 30px 0;
	border-bottom: 1px solid var(--line-dark);
}

.software-showcase__list article > span {
	grid-row: 1 / span 2;
	color: #8b653c;
	font-family: var(--font-serif);
	font-size: 18px;
	font-style: italic;
}

.software-showcase__list h3 {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.04em;
}

.software-showcase__list p {
	margin: 0;
	color: rgba(8, 10, 13, 0.62);
	font-size: 12px;
	line-height: 2;
}

.subsidy-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.subsidy-background span {
	position: absolute;
	right: -0.08em;
	bottom: -0.22em;
	color: rgba(8, 10, 13, 0.05);
	font-family: var(--font-serif);
	font-size: 24vw;
	font-weight: 600;
	letter-spacing: -0.08em;
	line-height: 1;
}

.subsidy-flow {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(8, 10, 13, 0.2);
	border-bottom: 1px solid rgba(8, 10, 13, 0.2);
}

.subsidy-flow article {
	min-height: 330px;
	padding: 38px;
	border-right: 1px solid rgba(8, 10, 13, 0.2);
	transition: background-color 0.4s ease, color 0.4s ease;
}

.subsidy-flow article:last-child {
	border-right: 0;
}

.subsidy-flow article:hover {
	background: var(--ink);
	color: var(--paper);
}

.subsidy-flow span {
	display: block;
	margin-bottom: 82px;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.17em;
}

.subsidy-flow h3 {
	margin-bottom: 18px;
	font-size: 23px;
}

.subsidy-flow p {
	margin: 0;
	font-size: 12px;
	line-height: 2;
	opacity: 0.65;
}

.subsidy-disclaimer {
	position: relative;
	z-index: 2;
	margin-top: 24px;
	font-size: 9px;
	letter-spacing: 0.04em;
	opacity: 0.58;
}

.consulting-map__visual {
	display: grid;
	min-height: 600px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	place-items: center;
}

.consulting-map__core {
	position: relative;
	z-index: 4;
	display: grid;
	width: 104px;
	aspect-ratio: 1;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: radial-gradient(circle, #3c2f20, var(--ink) 72%);
	box-shadow: 0 0 50px rgba(200, 164, 107, 0.2);
	color: var(--gold-bright);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	place-items: center;
}

.consulting-map__ring {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.consulting-map__ring--one { width: 45%; aspect-ratio: 1; }
.consulting-map__ring--two { width: 78%; aspect-ratio: 1; border-style: dashed; animation: radar-spin 24s linear infinite; }

.consulting-map__node {
	position: absolute;
	z-index: 3;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.6);
	font-size: 7px;
	letter-spacing: 0.16em;
}

.consulting-map__node::before {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 8px var(--signal);
	content: "";
}

.consulting-map__node--a { top: 12%; left: 45%; }
.consulting-map__node--b { top: 45%; right: 8%; }
.consulting-map__node--c { bottom: 12%; left: 42%; }
.consulting-map__node--d { top: 46%; left: 7%; }

.consulting-map__node--a::before { bottom: -21px; left: 50%; }
.consulting-map__node--b::before { top: 50%; left: -21px; }
.consulting-map__node--c::before { top: -21px; left: 50%; }
.consulting-map__node--d::before { top: 50%; right: -21px; }

.consulting-map__copy h3 {
	margin-bottom: 24px;
	font-size: clamp(25px, 2.5vw, 40px);
	line-height: 1.5;
}

.consulting-map__copy > p {
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2.1;
}

.consulting-map__copy ul {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	list-style: none;
}

.consulting-map__copy li {
	position: relative;
	padding: 14px 0 14px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 11px;
}

.consulting-map__copy li::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	border: 1px solid var(--gold);
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

/* Company page */
.company-hero-mark {
	position: absolute;
	top: 12%;
	right: 4%;
	width: min(44vw, 660px);
	aspect-ratio: 1;
	opacity: 0.52;
}

.company-hero-mark .helix-logo {
	width: 100%;
	height: 100%;
	padding: 6% 22%;
	filter: contrast(1.08);
}

.company-hero-mark .helix-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation-duration: 16s;
}

.company-hero-mark::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--ink), transparent 40%),
		radial-gradient(circle, transparent 28%, var(--ink) 79%);
	content: "";
}

.company-hero-mark__orbit {
	position: absolute;
	inset: 8%;
	z-index: 2;
	border: 1px solid rgba(200, 164, 107, 0.22);
	border-radius: 50%;
	animation: orbit-tilt 20s linear infinite;
}

.origin {
	padding-top: clamp(130px, 15vw, 230px);
	padding-bottom: clamp(130px, 15vw, 230px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.origin__label {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line-dark);
}

.origin__label span {
	font-family: var(--font-serif);
	font-size: 15px;
	font-style: italic;
	letter-spacing: 0.16em;
}

.origin__statement {
	display: grid;
	grid-template-columns: 1.1fr 0.62fr;
	gap: 10vw;
	padding: clamp(70px, 9vw, 140px) 0;
}

.origin__statement h2 {
	font-size: clamp(56px, 6.4vw, 104px);
}

.origin__statement > div {
	align-self: end;
}

.origin__statement p {
	margin-bottom: 24px;
	color: rgba(8, 10, 13, 0.68);
	font-size: 14px;
	line-height: 2.15;
}

.origin__signature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding-top: 40px;
	border-top: 1px solid var(--line-dark);
	color: rgba(8, 10, 13, 0.18);
	font-family: var(--font-serif);
	font-size: clamp(60px, 10vw, 150px);
	letter-spacing: -0.05em;
	line-height: 0.8;
}

.origin__signature i {
	width: 9px;
	height: 9px;
	background: #987446;
	transform: rotate(45deg);
}

.origin__signature em {
	color: rgba(139, 101, 60, 0.32);
	font-weight: 500;
}

.philosophy-stage {
	position: relative;
	min-height: 1000px;
	padding: clamp(140px, 16vw, 250px) 0;
	background: var(--ink);
	overflow: hidden;
}

.philosophy-stage__backdrop {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.philosophy-stage__backdrop > span {
	color: rgba(255, 255, 255, 0.025);
	font-family: var(--font-serif);
	font-size: 19vw;
	font-weight: 600;
	letter-spacing: -0.07em;
	white-space: nowrap;
}

.philosophy-stage__ring {
	position: absolute;
	border: 1px solid rgba(200, 164, 107, 0.13);
	border-radius: 50%;
}

.philosophy-stage__ring--a { width: 64vw; aspect-ratio: 1; animation: orbit-tilt 28s linear infinite; }
.philosophy-stage__ring--b { width: 43vw; aspect-ratio: 1; border-color: rgba(168, 240, 223, 0.08); animation: orbit-tilt 20s linear infinite reverse; }
.philosophy-stage__ring--c { width: 20vw; aspect-ratio: 1; background: rgba(200, 164, 107, 0.03); }

.philosophy-stage__inner {
	position: relative;
	z-index: 2;
}

.philosophy-stage__title {
	display: grid;
	grid-template-columns: 0.5fr 1.5fr;
	gap: 8vw;
	margin-top: 80px;
}

.philosophy-stage__title > p {
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
	letter-spacing: 0.08em;
}

.philosophy-stage__title h2 {
	font-size: clamp(60px, 7vw, 112px);
}

.philosophy-stage__copy {
	display: grid;
	max-width: 780px;
	grid-template-columns: repeat(2, 1fr);
	gap: 4vw;
	margin-top: 110px;
	margin-left: auto;
}

.philosophy-stage__copy p {
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2.15;
}

.philosophy-stage__copy strong {
	color: var(--gold-bright);
	font-weight: 500;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	padding-top: clamp(130px, 14vw, 220px);
	padding-bottom: clamp(130px, 14vw, 220px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.mission-card {
	position: relative;
	min-height: 800px;
	padding: clamp(40px, 5vw, 74px);
	border: 1px solid var(--line-dark);
	overflow: hidden;
}

.mission-card--ink {
	background: var(--ink);
	color: var(--paper);
}

.mission-card__number {
	margin-bottom: clamp(80px, 10vw, 150px);
	color: rgba(8, 10, 13, 0.12);
	font-family: var(--font-serif);
	font-size: clamp(72px, 8vw, 125px);
	font-style: italic;
	line-height: 0.7;
}

.mission-card--ink .mission-card__number {
	color: rgba(255, 255, 255, 0.1);
}

.mission-card h2 {
	margin-bottom: 38px;
	font-family: var(--font-serif);
	font-size: clamp(42px, 4.4vw, 72px);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.mission-card h2 em {
	color: #987446;
	font-weight: 500;
}

.mission-card--ink h2 em {
	color: var(--gold-bright);
}

.mission-card > p:not(.eyebrow) {
	max-width: 570px;
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 2.1;
	opacity: 0.65;
}

.mission-card__graphic {
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 360px;
	aspect-ratio: 1;
	border: 1px solid rgba(139, 101, 60, 0.2);
	border-radius: 50%;
}

.mission-card__graphic i {
	position: absolute;
	border: 1px solid rgba(139, 101, 60, 0.2);
	border-radius: 50%;
}

.mission-card__graphic i:nth-child(1) { inset: 18%; }
.mission-card__graphic i:nth-child(2) { inset: 36%; }
.mission-card__graphic i:nth-child(3) { top: 50%; right: -4px; width: 8px; height: 8px; background: #987446; }
.mission-card__graphic span {
	position: absolute;
	top: 46%;
	left: 30%;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.mission-card--ink .mission-card__graphic,
.mission-card--ink .mission-card__graphic i {
	border-color: rgba(200, 164, 107, 0.22);
}

.values {
	padding: clamp(130px, 15vw, 230px) 0;
	background: var(--gold);
	color: var(--ink);
}

.values__head > p {
	color: rgba(8, 10, 13, 0.62);
}

.values__head h2 em {
	color: var(--ink);
}

.values__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(8, 10, 13, 0.2);
	border-bottom: 1px solid rgba(8, 10, 13, 0.2);
}

.values__list article {
	min-height: 390px;
	padding: 36px;
	border-right: 1px solid rgba(8, 10, 13, 0.2);
	transition: background-color 0.45s ease, color 0.45s ease;
}

.values__list article:last-child {
	border-right: 0;
}

.values__list article:hover {
	background: var(--ink);
	color: var(--paper);
}

.values__list article > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 100px;
}

.values__list article span {
	font-family: var(--font-serif);
	font-size: 18px;
	font-style: italic;
}

.values__list article small {
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.values__list h3 {
	margin-bottom: 20px;
	font-family: var(--font-serif);
	font-size: clamp(32px, 3vw, 48px);
	font-weight: 500;
	line-height: 1.2;
}

.values__list p {
	margin: 0;
	font-size: 12px;
	line-height: 2;
	opacity: 0.65;
}

.company-profile {
	padding-top: clamp(130px, 15vw, 230px);
	padding-bottom: clamp(130px, 15vw, 230px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.company-profile__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 80px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line-dark);
}

.company-profile__head h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(60px, 7vw, 110px);
	font-weight: 500;
	line-height: 0.9;
}

.company-profile__head > p {
	color: rgba(8, 10, 13, 0.5);
	font-size: 10px;
	letter-spacing: 0.12em;
}

.company-profile__body {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: start;
	gap: 8vw;
}

.company-profile__logo {
	position: sticky;
	top: calc(var(--header-height) + 30px);
	overflow: visible;
	min-height: 420px;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 50% 46%, rgba(200, 164, 107, 0.13), transparent 40%),
		linear-gradient(135deg, rgba(8, 10, 13, 0.045), transparent 60%);
}

.company-profile__logo .helix-logo {
	width: 100%;
	height: 100%;
	min-height: 420px;
	padding: 7% 23%;
}

.company-profile__logo .helix-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation-duration: 14.5s;
}

.company-profile__light {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.16), transparent 62%);
	animation: light-pass 6s ease-in-out infinite;
	transform: translateX(-130%);
}

.company-profile__table {
	margin: 0;
	border-top: 1px solid var(--line-dark);
}

.company-profile__table > div {
	display: grid;
	grid-template-columns: 0.34fr 0.66fr;
	gap: 30px;
	padding: 27px 0;
	border-bottom: 1px solid var(--line-dark);
}

.company-profile__table dt {
	color: rgba(8, 10, 13, 0.48);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.company-profile__table dd {
	margin: 0;
	font-size: 13px;
	line-height: 2;
}

/* Contact page */
.contact-hero-signal {
	position: absolute;
	top: 16%;
	right: 4%;
	display: grid;
	width: min(42vw, 620px);
	aspect-ratio: 1;
	place-items: center;
}

.contact-hero-signal__rings,
.contact-hero-signal__rings i {
	position: absolute;
	border: 1px solid rgba(200, 164, 107, 0.17);
	border-radius: 50%;
}

.contact-hero-signal__rings {
	inset: 0;
}

.contact-hero-signal__rings i:nth-child(1) { inset: 14%; }
.contact-hero-signal__rings i:nth-child(2) { inset: 30%; border-color: rgba(168, 240, 223, 0.13); }
.contact-hero-signal__rings i:nth-child(3) { inset: 43%; background: rgba(200, 164, 107, 0.06); }
.contact-hero-signal__rings i:nth-child(4) {
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border: 0;
	background: var(--signal);
	box-shadow: 0 0 40px 10px rgba(168, 240, 223, 0.3);
	transform: translate(-50%, -50%);
}

.contact-hero-signal__beam {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 1px;
	background: linear-gradient(90deg, var(--gold), transparent);
	animation: radar-beam 5s linear infinite;
	transform-origin: left;
}

.contact-hero-signal > span {
	position: absolute;
	bottom: 18%;
	padding: 5px 9px;
	border: 1px solid rgba(168, 240, 223, 0.28);
	color: var(--signal);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 9vw;
	padding-top: clamp(130px, 15vw, 230px);
	padding-bottom: clamp(130px, 15vw, 230px);
	background: var(--paper);
	box-shadow: 0 0 0 100vmax var(--paper);
	clip-path: inset(0 -100vmax);
	color: var(--ink);
}

.contact-layout__aside {
	position: relative;
}

.contact-layout__intro {
	position: sticky;
	top: calc(var(--header-height) + 42px);
}

.contact-layout__intro h2 {
	margin-bottom: 36px;
	font-size: clamp(50px, 5.5vw, 86px);
}

.contact-layout__intro h2 em {
	color: #987446;
}

.contact-layout__intro > p:last-child {
	max-width: 500px;
	color: rgba(8, 10, 13, 0.63);
	font-size: 13px;
	line-height: 2.1;
}

.contact-direct {
	margin-top: 80px;
	padding-top: 20px;
	border-top: 1px solid var(--line-dark);
}

.contact-direct__label {
	margin-bottom: 20px;
	color: rgba(8, 10, 13, 0.42);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.contact-direct > a,
.contact-direct > div {
	display: grid;
	grid-template-columns: 110px 1fr 22px;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid var(--line-dark);
}

.contact-direct > div {
	grid-template-columns: 110px 1fr;
}

.contact-direct span {
	color: rgba(8, 10, 13, 0.45);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.contact-direct strong {
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 500;
}

.contact-direct svg {
	width: 18px;
	fill: none;
	stroke: #987446;
	stroke-width: 1.5;
	transition: transform 0.35s var(--ease-out);
}

.contact-direct a:hover svg {
	transform: translate(3px, -3px);
}

.contact-direct div p {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
}

.contact-layout__status {
	display: grid;
	gap: 7px;
	margin-top: 38px;
}

.contact-layout__status > div {
	display: grid;
	grid-template-columns: 7px 1fr auto;
	align-items: center;
	gap: 10px;
	color: rgba(8, 10, 13, 0.42);
	font-size: 7px;
	letter-spacing: 0.13em;
}

.contact-layout__status i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3fa786;
	box-shadow: 0 0 7px rgba(63, 167, 134, 0.45);
}

.contact-layout__status strong {
	color: #2f7c65;
	font-weight: 700;
}

.contact-form-wrap {
	position: relative;
	isolation: isolate;
	align-self: start;
	border: 1px solid var(--line-dark);
	background: var(--paper-bright);
	box-shadow: 18px 20px 0 rgba(139, 101, 60, 0.08);
}

.contact-form-wrap::before {
	position: absolute;
	top: -1px;
	right: 34px;
	width: 92px;
	height: 3px;
	background: var(--gold);
	content: "";
}

.contact-form-wrap__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	border-bottom: 1px solid var(--line-dark);
}

.contact-form-wrap__head p {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.contact-form-wrap__head span {
	color: rgba(8, 10, 13, 0.42);
	font-size: 7px;
	letter-spacing: 0.14em;
}

.contact-form-wrap__head > div span {
	display: block;
	margin-top: 2px;
}

.form-notice {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 28px 28px 0;
	padding: 16px;
	border: 1px solid rgba(130, 48, 41, 0.3);
	background: rgba(130, 48, 41, 0.06);
}

.form-notice.is-success {
	border-color: rgba(47, 124, 101, 0.35);
	background: rgba(47, 124, 101, 0.07);
}

.form-notice i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9b443b;
}

.form-notice.is-success i {
	background: #2f7c65;
}

.form-notice p {
	margin: 0;
	font-size: 11px;
}

.contact-form {
	padding: clamp(28px, 4vw, 56px);
}

.contact-form__guide {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) minmax(150px, 0.8fr);
	align-items: center;
	gap: 18px;
	margin-bottom: 54px;
	padding: 18px;
	border: 1px solid rgba(8, 10, 13, 0.14);
	background:
		linear-gradient(115deg, rgba(152, 116, 70, 0.11), rgba(152, 116, 70, 0) 46%),
		rgba(8, 10, 13, 0.025);
}

.contact-form__guide-mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-content: center;
	background: var(--ink);
	color: var(--paper);
	text-align: center;
}

.contact-form__guide-mark strong {
	display: block;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 500;
	line-height: 0.8;
}

.contact-form__guide-mark span {
	display: block;
	margin-top: 5px;
	color: var(--gold-bright);
	font-size: 6px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.contact-form__guide > div:nth-child(2) p {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.55;
}

.contact-form__guide > div:nth-child(2) > span {
	display: block;
	color: rgba(8, 10, 13, 0.52);
	font-size: 9px;
	line-height: 1.7;
}

.contact-form__guide a {
	position: relative;
	display: block;
	min-width: 0;
	padding-left: 18px;
	border-left: 1px solid rgba(8, 10, 13, 0.16);
	color: var(--ink);
}

.contact-form__guide a span,
.contact-form__guide a strong {
	display: block;
}

.contact-form__guide a span {
	margin-bottom: 5px;
	color: rgba(8, 10, 13, 0.45);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.contact-form__guide a strong {
	padding-right: 22px;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.contact-form__guide a svg {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 17px;
	fill: none;
	stroke: #987446;
	stroke-width: 1.5;
	transition: transform 0.35s var(--ease-out);
}

.contact-form__guide a:hover svg,
.contact-form__guide a:focus-visible svg {
	transform: translateX(4px);
}

.contact-form__section + .contact-form__section {
	margin-top: 52px;
}

.contact-form__section-head {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(8, 10, 13, 0.2);
}

.contact-form__section-head > span {
	color: #987446;
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.contact-form__section-head h2 {
	margin: 0 0 3px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.contact-form__section-head p {
	margin: 0;
	color: rgba(8, 10, 13, 0.48);
	font-size: 9px;
	line-height: 1.6;
}

.contact-form__section-head > small {
	white-space: nowrap;
	color: rgba(8, 10, 13, 0.47);
	font-size: 8px;
	letter-spacing: 0.05em;
}

.contact-form__section-head > small b,
.form-consent em b {
	margin-right: 4px;
	padding: 2px 4px;
	background: rgba(155, 68, 59, 0.1);
	color: #8d443d;
	font-size: 7px;
	font-style: normal;
	letter-spacing: 0.05em;
}

.form-trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

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

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 30px;
}


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

.form-row > label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 20px;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.form-required,
.form-optional {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: 16px;
	padding: 0 5px;
	font-size: 7px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.form-required {
	background: rgba(155, 68, 59, 0.1);
	color: #8d443d;
}

.form-optional {
	border: 1px solid rgba(8, 10, 13, 0.17);
	color: rgba(8, 10, 13, 0.45);
}

.field {
	position: relative;
}

.field input,
.field select,
.field textarea {
	display: block;
	width: 100%;
	border: 1px solid rgba(8, 10, 13, 0.24);
	border-radius: 0;
	outline: 0;
	background: rgba(255, 255, 255, 0.62);
	color: var(--ink);
	font-size: 13px;
	transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.field input,
.field select {
	height: 56px;
	padding: 0 15px;
}

.field textarea {
	min-height: 204px;
	padding: 15px;
	resize: vertical;
}

.field select {
	appearance: none;
	cursor: pointer;
}

.field--select select {
	padding-right: 46px;
}

.field input::placeholder,
.field textarea::placeholder {
	color: rgba(8, 10, 13, 0.3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: #987446;
	background: #fff;
	box-shadow: 5px 5px 0 rgba(152, 116, 70, 0.1);
}

.field > i {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: 0;
	left: auto;
	width: 2px;
	height: auto;
	background: #987446;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.45s var(--ease-out);
}

.field:focus-within > i {
	transform: scaleY(1);
}

.field--select svg {
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	fill: none;
	stroke: #987446;
	stroke-width: 1.5;
	transform: translateY(-50%);
	pointer-events: none;
}

.field > small {
	position: absolute;
	right: 0;
	bottom: -20px;
	color: rgba(8, 10, 13, 0.38);
	font-size: 8px;
}

.form-row--message {
	padding-bottom: 20px;
}

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 26px 0 22px;
	padding: 16px;
	border: 1px solid rgba(8, 10, 13, 0.14);
	background: rgba(8, 10, 13, 0.025);
	cursor: pointer;
}

.form-consent input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.form-consent > span {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(8, 10, 13, 0.4);
}

.form-consent > span i {
	position: absolute;
	top: 3px;
	left: 6px;
	width: 5px;
	height: 9px;
	border-right: 1px solid var(--paper);
	border-bottom: 1px solid var(--paper);
	opacity: 0;
	transform: rotate(45deg) scale(0.5);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-consent input:checked + span {
	border-color: var(--ink);
	background: var(--ink);
}

.form-consent input:checked + span i {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}

.form-consent input:focus-visible + span {
	outline: 2px solid #987446;
	outline-offset: 3px;
}

.form-consent em {
	font-size: 10px;
	font-style: normal;
	line-height: 1.8;
}

.form-submit-wrap > p {
	margin: 0 0 12px;
	color: rgba(8, 10, 13, 0.48);
	font-size: 9px;
	line-height: 1.7;
}

.form-submit {
	position: relative;
	display: flex;
	width: 100%;
	height: 76px;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0 24px 0 28px;
	border: 0;
	background: var(--ink);
	color: var(--paper);
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	overflow: hidden;
}

.form-submit::before {
	position: absolute;
	inset: 0;
	background: var(--gold);
	content: "";
	transform: translateY(102%);
	transition: transform 0.5s var(--ease-out);
}

.form-submit:hover::before,
.form-submit:focus-visible::before {
	transform: translateY(0);
}

.form-submit > * {
	position: relative;
	z-index: 1;
}

.form-submit svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.form-submit__sending {
	display: none;
}

.contact-form.is-sending .form-submit__default {
	display: none;
}

.contact-form.is-sending .form-submit__sending {
	display: inline;
}

.remote-support {
	padding: clamp(130px, 14vw, 220px) 0;
	background: var(--ink);
}

.remote-support__inner {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	align-items: center;
	gap: 9vw;
}

.remote-support__copy h2 {
	margin-bottom: 32px;
	font-size: clamp(52px, 5.8vw, 94px);
}

.remote-support__copy > p {
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 2.1;
}

.remote-support__copy > small {
	display: block;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.32);
	font-size: 8px;
}

.remote-support__visual {
	position: relative;
	display: grid;
	min-height: 600px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 42px 42px;
	place-items: center;
	overflow: hidden;
}

.remote-screen {
	position: relative;
	z-index: 3;
	width: 72%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: #0c0f13;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.remote-screen__bar {
	display: flex;
	height: 40px;
	align-items: center;
	gap: 7px;
	padding: 0 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.remote-screen__bar i {
	width: 6px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
}

.remote-screen__bar span {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.3);
	font-size: 6px;
	letter-spacing: 0.14em;
}

.remote-screen__body {
	position: relative;
	display: grid;
	min-height: 330px;
	place-items: center;
	text-align: center;
}

.remote-screen__signal {
	position: absolute;
	width: 200px;
	aspect-ratio: 1;
}

.remote-screen__signal span {
	position: absolute;
	border: 1px solid rgba(168, 240, 223, 0.2);
	border-radius: 50%;
	animation: signal-ring 2.8s ease-out infinite;
	opacity: 0;
}

.remote-screen__signal span:nth-child(1) { inset: 35%; }
.remote-screen__signal span:nth-child(2) { inset: 20%; animation-delay: 0.5s; }
.remote-screen__signal span:nth-child(3) { inset: 5%; animation-delay: 1s; }

.remote-screen__signal i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--signal);
	box-shadow: 0 0 30px var(--signal);
	transform: translate(-50%, -50%);
}

.remote-screen__body > p {
	position: relative;
	z-index: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 8px;
	letter-spacing: 0.17em;
	line-height: 2;
}

.remote-screen__body > p strong {
	color: var(--signal);
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 500;
}

.remote-screen__body > small {
	position: absolute;
	right: 14px;
	bottom: 12px;
	color: rgba(255, 255, 255, 0.22);
	font-size: 5px;
	letter-spacing: 0.15em;
}

.remote-support__beam {
	position: absolute;
	top: 50%;
	left: -25%;
	width: 150%;
	height: 80px;
	background: linear-gradient(90deg, transparent, rgba(168, 240, 223, 0.1), transparent);
	filter: blur(20px);
	animation: beam-sweep 6s ease-in-out infinite;
	transform: rotate(-24deg);
}

/* Generic and 404 */
.generic-page,
.not-found {
	min-height: 80vh;
	padding-top: calc(var(--header-height) + 150px);
	padding-bottom: 150px;
}

.generic-page h1,
.not-found h1 {
	font-family: var(--font-serif);
	font-size: clamp(58px, 8vw, 120px);
	font-weight: 500;
}

.generic-page__content {
	max-width: 860px;
	color: rgba(255, 255, 255, 0.65);
}

.post-list article {
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.post-list time {
	color: var(--gold);
	font-size: 9px;
	letter-spacing: 0.15em;
}

.post-list h2 {
	font-size: 24px;
}

.not-found {
	position: relative;
	text-align: center;
}

.not-found .eyebrow {
	justify-content: center;
}

.not-found__number {
	position: absolute;
	top: 10%;
	right: 0;
	left: 0;
	z-index: -1;
	margin: 0;
	color: rgba(255, 255, 255, 0.04);
	font-family: var(--font-serif);
	font-size: 40vw;
	line-height: 1;
}

/* Reveal system */
.motion-ready [data-reveal="up"] {
	opacity: 0;
	transform: translateY(44px);
	transition:
		opacity 0.9s var(--ease-out),
		transform 0.9s var(--ease-out);
}

.motion-ready [data-reveal="clip"] {
	clip-path: inset(0 0 100% 0);
	transition: clip-path 1.1s var(--ease-out);
}

.motion-ready [data-reveal="words"] {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.9s var(--ease-out),
		transform 0.9s var(--ease-out);
}

.motion-ready [data-reveal].is-visible {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

/* Keyframes */
@keyframes intro-letter {
	to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes intro-progress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

@keyframes intro-hide {
	0% { opacity: 1; visibility: visible; transform: translateY(0); }
	100% { opacity: 0; visibility: hidden; transform: translateY(-100%); }
}

@keyframes wipe-in {
	to { transform: translateY(0); }
}

@keyframes menu-item {
	to { opacity: 1; transform: translateY(0); }
}

@keyframes title-rise {
	from { opacity: 0; transform: translateY(110%) rotate(2deg); }
	to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes fade-up {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-arrive {
	from { opacity: 0; transform: translateX(50px) scale(0.95); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes signal-pulse {
	0% { box-shadow: 0 0 0 0 rgba(168, 240, 223, 0.5); }
	70% { box-shadow: 0 0 0 10px rgba(168, 240, 223, 0); }
	100% { box-shadow: 0 0 0 0 rgba(168, 240, 223, 0); }
}

@keyframes ambient-drift {
	to { transform: translate(5%, -6%) scale(1.1); }
}

@keyframes scan {
	0%, 12% { top: 0; opacity: 0; }
	22% { opacity: 0.85; }
	75% { opacity: 0.7; }
	88%, 100% { top: 100%; opacity: 0; }
}

@keyframes orbit-tilt {
	to { transform: rotate(340deg); }
}

@keyframes node-float {
	to { transform: translateY(-16px); }
}

@keyframes scroll-line {
	0% { transform: translateX(-110%); }
	50%, 100% { transform: translateX(110%); }
}

@keyframes marquee {
	to { transform: translateX(-50%); }
}

@keyframes data-scan {
	0%, 100% { transform: translateX(-150px); opacity: 0; }
	50% { transform: translateX(150px); opacity: 0.8; }
}

@keyframes core-breathe {
	50% { box-shadow: 0 0 75px rgba(200, 164, 107, 0.5), inset -12px -15px 26px rgba(0, 0, 0, 0.55); transform: scale(1.04); }
}

@keyframes sphere-spin {
	to { transform: rotateZ(360deg) rotateX(62deg); }
}

@keyframes equalizer {
	from { transform: scaleY(0.35); }
	to { transform: scaleY(1); }
}

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

@keyframes radar-dot {
	to { opacity: 0.25; transform: scale(0.6); }
}

@keyframes chart-bar {
	to { transform: scaleY(0.55); transform-origin: bottom; }
}

@keyframes helix-sway {
	to { transform: skewY(-24deg) rotate(7deg); }
}

@keyframes helix-rung {
	0%, 100% { transform: scaleX(0.65) rotate(14deg); opacity: 0.45; }
	50% { transform: scaleX(1) rotate(-14deg); opacity: 1; }
}

@keyframes helix-logo-spiral {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-2.5deg) rotateY(-4deg) scale(1); }
	23% { transform: translate3d(8px, -10px, 0) rotate(2.8deg) rotateY(5deg) scale(1.018); }
	49% { transform: translate3d(-6px, 3px, 0) rotate(-1.4deg) rotateY(-5deg) scale(0.992); }
	74% { transform: translate3d(5px, -5px, 0) rotate(3.1deg) rotateY(3deg) scale(1.012); }
}

@keyframes helix-orbit-one {
	to { transform: rotateX(67deg) rotateZ(342deg); }
}

@keyframes helix-orbit-two {
	to { transform: rotateX(67deg) rotateZ(-322deg); }
}

@keyframes light-pass {
	0%, 15% { transform: translateX(-160%) skewX(-12deg); }
	70%, 100% { transform: translateX(480%) skewX(-12deg); }
}

@keyframes draw-graph {
	0% { stroke-dashoffset: 1000; }
	55%, 100% { stroke-dashoffset: 0; }
}

@keyframes cursor-blink {
	50% { opacity: 0; }
}

@keyframes radar-beam {
	to { transform: rotate(360deg); }
}

@keyframes signal-ring {
	0% { opacity: 0.7; transform: scale(0.4); }
	100% { opacity: 0; transform: scale(1.4); }
}

@keyframes beam-sweep {
	0%, 100% { transform: translateY(-160px) rotate(-24deg); opacity: 0; }
	45%, 60% { opacity: 1; }
	80% { transform: translateY(160px) rotate(-24deg); opacity: 0; }
}

/* Responsive */
@media (max-width: 1180px) {
	:root {
		--shell: min(100% - 64px, 1180px);
	}

	.desktop-nav {
		gap: 18px;
	}

	.desktop-nav > a {
		font-size: 9px;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
		gap: 42px;
	}

	.hero__title,
	.page-hero__title h1 {
		font-size: clamp(68px, 8vw, 105px);
	}

	.page-hero__inner {
		grid-template-columns: 0.25fr 1.25fr 0.5fr;
	}

	.service-story {
		grid-template-columns: minmax(360px, 0.92fr) minmax(330px, 0.78fr);
		gap: 6vw;
	}

	.feature-matrix article {
		padding-inline: 20px;
	}

	.pricing-panel {
		grid-template-columns: 0.8fr 1.2fr;
	}

	.pricing-panel__notes {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.pricing-panel__notes small {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	:root {
		--shell: calc(100% - 48px);
		--header-height: 78px;
	}

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

	body.admin-bar .service-anchor {
		top: 46px;
	}

	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.site-header__inner {
		width: calc(100vw - 40px);
	}

	.custom-cursor {
		display: none;
	}

	.hero__inner {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-top: calc(var(--header-height) + 80px);
		padding-bottom: 160px;
	}

	.hero__copy {
		max-width: 720px;
	}

	.hero__eyebrow {
		margin-bottom: 34px;
	}

	.hero__title {
		font-size: clamp(70px, 14vw, 122px);
	}

	.hero__visual {
		width: min(74vw, 620px);
		margin: 20px auto 0;
		justify-self: center;
	}

	.hero__grid::after {
		left: 50%;
	}

	.hero__foot {
		grid-template-columns: 1fr auto;
	}

	.hero__foot > p {
		display: none;
	}

	.manifesto__body,
	.capabilities__intro,
	.product-lab__head,
	.process__head,
	.company-preview__content,
	.contact-cta__grid,
	.services-lead__grid,
	.origin__statement,
	.values__head,
	.remote-support__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.manifesto__values,
	.feature-matrix,
	.values__list {
		grid-template-columns: 1fr;
	}

	.manifesto__values article,
	.feature-matrix article,
	.values__list article {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid currentColor;
	}

	.manifesto__values article > span,
	.values__list article > div {
		margin-bottom: 32px;
	}

	.feature-matrix article {
		display: grid;
		grid-template-columns: 92px 1fr;
		align-items: center;
		column-gap: 24px;
		padding: 26px 0;
	}

	.feature-matrix__icon {
		grid-row: 1 / span 3;
		margin: 0 0 0 14px;
	}

	.feature-matrix h3 {
		min-height: auto;
		margin: 4px 0 7px;
	}

	.service-story {
		grid-template-columns: 1fr;
	}

	.service-story__stage {
		position: relative;
		top: auto;
		height: min(72vw, 650px);
		min-height: 480px;
	}

	.service-step {
		min-height: auto;
		padding: 80px 0;
		opacity: 1;
		transform: none;
	}

	.product-grid,
	.mission-grid {
		grid-template-columns: 1fr;
	}

	.product-card__visual {
		height: min(70vw, 560px);
	}

	.process__list li {
		grid-template-columns: 55px 0.7fr 1.3fr;
	}

	.company-preview {
		min-height: 960px;
	}

	.company-preview__media {
		inset: 38% 0 0;
	}

	.company-preview__content {
		min-height: 960px;
		align-content: start;
		padding-top: 130px;
	}

	.company-preview__content > div:last-child {
		align-self: start;
		max-width: 520px;
		padding-bottom: 0;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.page-hero {
		min-height: 820px;
	}

	.page-hero__inner {
		min-height: 820px;
		grid-template-columns: 1fr;
		align-content: center;
		gap: 28px;
	}

	.page-hero__index {
		align-self: auto;
		padding-top: 40px;
	}

	.page-hero__copy {
		max-width: 450px;
		align-self: auto;
		padding-bottom: 40px;
	}

	.page-hero__orbit,
	.company-hero-mark,
	.contact-hero-signal {
		right: -20%;
		width: 70vw;
		opacity: 0.35;
	}

	.service-domain__head {
		grid-template-columns: 0.2fr 0.8fr;
	}

	.service-domain__head > p {
		grid-column: 2;
	}

	.buzz-feature,
	.trendio-feature,
	.software-showcase,
	.consulting-map {
		grid-template-columns: 1fr;
	}

	.trendio-feature__visual {
		order: -1;
	}

	.pricing-panel {
		grid-template-columns: 1fr;
	}

	.pricing-panel__price {
		padding: 28px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-left: 0;
	}

	.pricing-panel__notes {
		grid-template-columns: 1fr;
	}

	.software-showcase__canvas,
	.consulting-map__visual {
		min-height: min(78vw, 600px);
	}

	.subsidy-flow {
		grid-template-columns: 1fr;
	}

	.subsidy-flow article {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(8, 10, 13, 0.2);
	}

	.subsidy-flow span {
		margin-bottom: 32px;
	}

	.philosophy-stage__title {
		grid-template-columns: 1fr;
	}

	.philosophy-stage__copy {
		margin-top: 80px;
	}

	.mission-card {
		min-height: 720px;
	}

	.company-profile__body {
		grid-template-columns: 0.7fr 1.3fr;
		gap: 5vw;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-layout__intro {
		position: relative;
		top: auto;
	}

	.contact-layout__aside {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}

	.contact-layout__intro {
		grid-column: 1 / -1;
	}

	.contact-direct,
	.contact-layout__status {
		margin-top: 0;
	}
}

@media (max-width: 680px) {
	:root {
		--shell: calc(100% - 32px);
	}

	body {
		font-size: 14px;
	}

	body.admin-bar .site-header,
	body.admin-bar .mobile-menu {
		top: 0;
	}

	body.admin-bar .service-anchor {
		top: 0;
	}

	.site-brand__mark {
		width: 38px;
		height: 38px;
	}

	.site-brand__type strong {
		font-size: 18px;
	}

	.site-brand__type small {
		display: none;
	}

	.mobile-menu__foot {
		flex-direction: column;
	}

	.hero__inner {
		padding-top: calc(var(--header-height) + 55px);
		padding-bottom: 135px;
	}

	.hero__eyebrow small {
		display: none;
	}

	.hero__title {
		font-size: clamp(59px, 19vw, 88px);
		line-height: 0.76;
	}

	.hero__statement {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 28px;
	}

	.hero__statement-main {
		font-size: 17px;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.text-link {
		justify-content: space-between;
	}

	.hero__visual {
		width: 100%;
	}

	.hero__node--one {
		right: 2%;
	}

	.hero__node--two {
		left: 2%;
	}

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

	.hero__coordinate {
		display: none;
	}

	.manifesto,
	.process,
	.product-lab,
	.company-profile,
	.origin,
	.contact-layout {
		padding-top: 105px;
		padding-bottom: 105px;
	}

	.manifesto__title,
	.capabilities__intro h2,
	.product-lab__head h2,
	.process__head h2,
	.company-preview__content h2,
	.contact-cta__title,
	.services-lead__grid h2,
	.service-domain__head h2,
	.origin__statement h2,
	.philosophy-stage__title h2,
	.values__head h2,
	.contact-layout__intro h2,
	.remote-support__copy h2 {
		font-size: clamp(46px, 14vw, 72px);
	}

	.manifesto__body {
		padding-top: 58px;
		padding-bottom: 70px;
	}

	.manifesto__values article {
		padding-inline: 18px;
	}

	.capabilities,
	.service-domain,
	.values,
	.remote-support {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.service-story__stage {
		height: 100vw;
		min-height: 390px;
	}

	.service-story__hud small {
		display: none;
	}

	.service-step {
		padding: 62px 0;
	}

	.product-card__visual {
		height: 92vw;
	}

	.product-card__body {
		padding: 28px 22px 34px;
	}

	.process__list li {
		grid-template-columns: 46px 1fr;
		gap: 14px;
		padding: 26px 0;
	}

	.process__list p {
		grid-column: 2;
		padding: 0 16px 0 0;
	}

	.process__list h3 {
		font-size: 42px;
	}

	.company-preview {
		min-height: 850px;
	}

	.company-preview__content {
		min-height: 850px;
		padding-top: 105px;
	}

	.company-preview__media {
		inset: 47% 0 0;
	}

	.contact-cta {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.contact-cta__orbit {
		width: 90vw;
	}

	.site-footer__columns {
		grid-template-columns: 1fr 1fr;
		gap: 45px 20px;
	}

	.site-footer__columns > div:last-child {
		grid-column: 1 / -1;
	}

	.site-footer__word {
		font-size: 23vw;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.page-hero,
	.page-hero__inner {
		min-height: 740px;
	}

	.page-hero__title h1 {
		font-size: clamp(52px, 15vw, 78px);
		line-height: 0.82;
	}

	.page-hero__sequence span:nth-of-type(2),
	.page-hero__sequence span:nth-of-type(3),
	.page-hero__sequence i:nth-of-type(2),
	.page-hero__sequence i:nth-of-type(3) {
		display: none;
	}

	.service-anchor {
		overflow-x: auto;
	}

	.service-anchor > div {
		width: max-content;
	}

	.service-anchor a {
		width: 160px;
	}

	.services-lead {
		padding-top: 105px;
		padding-bottom: 105px;
	}

	.service-domain__head {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-domain__number {
		font-size: 80px;
	}

	.service-domain__head > p {
		grid-column: auto;
	}

	.dashboard-mock__main {
		grid-template-columns: 34px 1fr;
	}

	.dashboard-mock__content {
		padding: 10px;
	}

	.dashboard-mock__stats > div {
		padding: 7px;
	}

	.dashboard-mock__tags {
		display: none;
	}

	.feature-matrix article {
		grid-template-columns: 72px 1fr;
		column-gap: 14px;
	}

	.feature-matrix__icon {
		width: 58px;
		height: 58px;
		margin-left: 0;
	}

	.pricing-panel {
		padding: 28px 20px;
	}

	.pricing-panel__price p strong {
		font-size: 50px;
	}

	.trendio-feature__visual,
	.software-showcase__canvas,
	.consulting-map__visual,
	.remote-support__visual {
		min-height: 100vw;
	}

	.code-window {
		width: 94%;
		box-shadow: 12px 16px 0 rgba(139, 101, 60, 0.14);
	}

	.code-window__body {
		grid-template-columns: 22px 1fr;
		gap: 7px;
		padding: 24px 14px;
		font-size: 8px;
	}

	.philosophy-stage {
		min-height: auto;
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.philosophy-stage__title {
		margin-top: 55px;
	}

	.philosophy-stage__copy {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 60px;
	}

	.origin__signature {
		gap: 10px;
		font-size: 17vw;
	}

	.mission-grid {
		padding-top: 105px;
		padding-bottom: 105px;
	}

	.mission-card {
		min-height: 740px;
		padding: 34px 24px;
	}

	.company-profile__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.company-profile__body {
		grid-template-columns: 1fr;
	}

	.company-profile__logo {
		position: relative;
		top: auto;
		max-width: 360px;
	}

	.company-profile__table > div {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.contact-layout__aside {
		grid-template-columns: 1fr;
	}

	.contact-layout__intro {
		grid-column: auto;
	}

	.contact-form-wrap__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.contact-form {
		padding: 26px 20px 30px;
	}

	.contact-form__guide {
		grid-template-columns: 46px 1fr;
		gap: 14px;
		margin-bottom: 42px;
		padding: 15px;
	}

	.contact-form__guide a {
		grid-column: 1 / -1;
		padding: 13px 22px 0 0;
		border-top: 1px solid rgba(8, 10, 13, 0.16);
		border-left: 0;
	}

	.contact-form__section + .contact-form__section {
		margin-top: 42px;
	}

	.contact-form__section-head {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		margin-bottom: 24px;
	}

	.contact-form__section-head > span {
		font-size: 23px;
	}

	.contact-form__section-head > small {
		grid-column: 2;
	}

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

	.form-row {
		margin: 0;
	}

	.form-consent {
		margin: 24px 0 20px;
		padding: 14px;
	}

	.form-submit {
		width: 100%;
		margin-left: 0;
	}

	.remote-screen {
		width: 88%;
	}

	.remote-screen__body {
		min-height: 260px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header,
	body.admin-bar .mobile-menu {
		top: 46px;
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header,
	body.admin-bar .mobile-menu {
		top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.intro-loader {
		display: none;
	}

	.motion-ready [data-reveal] {
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
	}

	.custom-cursor {
		display: none;
	}
}
