blockquote.blockquote-inverse p,
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:hover,
a,
a:focus,
a:hover {
	transition: all 0.4s ease;
}

.navbar-default .navbar-nav>li>a,
.new-logo,
.new-logo a.navbar-brand,
a.login_link {
	display: inline-block;
}

body {
	margin: 0;
	background: #f4f8fa;
	color: #666;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 20px;
	scroll-behavior: smooth;
	line-height: 26px;
}

h1 {
	font-family: "Outfit", sans-serif;
	font-size: 34px;
}

.container {
	display: none;
	width: 1000px;
	margin: 0 auto;
	margin-top: 30px;
}

:root {
	--ink: #0b1719;
	--ink-2: #0e1f21;
	--paper: #ece7dc;
	--muted: #7e938f;
	--accent: #e9ae4e;
	--accent-dim: rgba(233, 174, 78, 0.14);
	--line: rgba(236, 231, 220, 0.12);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	background: var(--ink);
	color: var(--paper);
	font-family: "Instrument Sans", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: hidden;
}

/* instrument-panel depth: subtle vignette */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(120% 90% at 50% 42%,
			transparent 55%,
			rgba(0, 0, 0, 0.45) 100%);
	z-index: 2;
}

/* the signature: a faint concentric-ring dial, a signal propagating out */
.signal {
	position: fixed;
	top: 44%;
	left: 50%;
	translate: -50% -50%;
	width: min(140vh, 140vw);
	aspect-ratio: 1;
	z-index: 0;
	pointer-events: none;
}

.signal circle {
	fill: none;
	stroke: var(--line);
	stroke-width: 1;
}

.signal .live {
	stroke: var(--accent);
	opacity: 0.22;
}

.signal .pulse {
	stroke: var(--accent);
	transform-origin: center;
	transform-box: fill-box;
	opacity: 0;
	animation: ring 6s cubic-bezier(0.2, 0.6, 0.2, 1) infinite;
}

@keyframes ring {
	0% {
		transform: scale(0.18);
		opacity: 0.5;
	}

	70% {
		opacity: 0;
	}

	100% {
		transform: scale(1.05);
		opacity: 0;
	}
}

.wrap {
	position: relative;
	z-index: 3;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: clamp(2rem, 5vw, 4rem) 1.5rem;
	gap: clamp(1.4rem, 3vw, 2.2rem);
}

.brand {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 0.65em;
	padding: 1.5rem clamp(1.5rem, 4vw, 2.6rem);
	font-family: "IBM Plex Mono", monospace;
	font-weight: 500;
	font-size: 1.02rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--paper);

}

.brand a {
	color: #fff;
	text-decoration: none;

}

.brand a span {

	vertical-align: 8px;
}

.brand .glyph {
	width: 30px;
	height: 30px;
	flex: none;
	overflow: visible;
}

.brand .glyph circle {
	fill: none;
	stroke: var(--paper);
	stroke-width: 1.4;
	opacity: 0.45;
}

.brand .glyph .ring-a {
	stroke: var(--accent);
	opacity: 0.9;
}

.brand .glyph .dot {
	fill: var(--accent);
	stroke: none;
	filter: drop-shadow(0 0 6px var(--accent));
	animation: blink 3.2s ease-in-out infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.35;
	}
}

h1 {
	font-family: "Instrument Serif", Georgia, serif;
	font-weight: 400;
	font-size: clamp(2.5rem, 6.6vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.01em;
	max-width: 15ch;
	text-wrap: balance;
}

h1 .em {
	font-style: italic;
	color: var(--accent);
}

.sub {
	font-size: clamp(1rem, 1.7vw, 1.22rem);
	line-height: 1.55;
	color: var(--muted);
	max-width: 46ch;
	text-wrap: pretty;
}

.sub strong {
	color: inherit;
	font-weight: inherit;
}

.cta {
	margin-top: 0.4rem;
	display: inline-flex;
	align-items: center;
	gap: 0.8em;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--paper);
	text-decoration: none;
	padding: 0.95em 1.8em;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.cta .arw {
	transition: transform 0.25s ease;
}

.cta:hover {
	background: var(--accent);
	transform: translateY(-1px);
}

.cta:hover .arw {
	transform: translateX(4px);
}

.cta:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

footer {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.6rem clamp(1.5rem, 4vw, 2.6rem);
	border-top: 1px solid var(--line);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}

footer .mark {
	color: var(--paper);
	letter-spacing: 0.24em;
}

@media (max-width: 520px) {
	footer {
		flex-direction: column;
		gap: 0.6rem;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.signal .pulse {
		animation: none;
		opacity: 0;
	}

	.eyebrow::before,
	.brand .glyph .dot {
		animation: none;
	}

	.cta {
		transition: none;
	}
}