:root {
	color-scheme: light;
	--paper: #f2f0e8;
	--ink: #191b18;
	--muted: #686b61;
	--line: #c9c8be;
	--accent: #00bbff;
	--hero-dots: #c7c6bc;
	--copy: #45483f;
	--section-bg: #191b18;
	--section-text: #f2f0e8;
	--section-muted: #b5b5aa;
	--section-label: #aaa99f;
	--section-line: #50524a;
	--panel-text: #101719;
	--mono: "DM Mono", monospace;
	--sans: "DM Sans", sans-serif;
	--display: "Space Grotesk", sans-serif;
}

:root[data-theme="dark"] {
	color-scheme: dark;
	--paper: #111719;
	--ink: #eff4f5;
	--muted: #a2afb2;
	--line: #354145;
	--hero-dots: #354145;
	--copy: #c2ccce;
	--section-bg: #090e10;
	--section-text: #eff4f5;
	--section-muted: #a2afb2;
	--section-label: #8c9a9e;
	--section-line: #303c40;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.topbar, .footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 7.2%;
}
.topbar { height: 82px; border-bottom: 1px solid var(--line); }
.wordmark {
	font: 700 19px var(--display);
	text-decoration: none;
	letter-spacing: 0;
}
.wordmark span { color: var(--accent); }
.topbar nav { display: flex; gap: 34px; }
.topbar nav a, .top-note {
	font: 500 11px var(--mono);
	text-decoration: none;
}
.topbar nav a { color: var(--muted); transition: color .18s ease; }
.topbar nav a:hover { color: var(--ink); }
.theme-toggle {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font: 19px/1 var(--sans);
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent); transform: rotate(-10deg); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.top-note { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.tiny-square { width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(290px, .75fr);
	align-items: center;
	gap: 8%;
	min-height: 620px;
	padding: 70px 12% 92px;
	background-image: radial-gradient(var(--hero-dots) 0.7px, transparent 0.7px);
	background-size: 20px 20px;
	background-position: 9px 10px;
}
.hero-copy { max-width: 580px; animation: rise-in .65s ease both; }
.eyebrow, .section-label, .id-panel-top, .id-panel-bottom {
	font: 500 10px var(--mono);
	letter-spacing: .06em;
}
.eyebrow { display: flex; justify-content: space-between; gap: 18px; max-width: 445px; margin: 0 0 23px; color: var(--muted); }
.eyebrow i { padding: 0 4px; color: var(--accent); font-style: normal; }
.hero h1 {
	margin: 0;
	font: 700 clamp(76px, 9vw, 124px)/.82 var(--display);
	letter-spacing: -.065em;
}
.hero h1 > span { color: var(--accent); }
.hero-period { color: var(--ink); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; max-width: 445px; margin-top: 37px; }
.intro { margin: 0; font-size: 17px; line-height: 1.65; }
.intro strong { font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.round-link {
	display: grid;
	width: 46px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid var(--ink);
	border-radius: 50%;
	font: 22px var(--sans);
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}
.round-link:hover { background: var(--accent); transform: translateY(3px); }
.id-panel {
	position: relative;
	width: min(100%, 350px);
	justify-self: center;
	padding: 17px 18px 14px;
	border: 1px solid var(--ink);
	background: var(--accent);
	color: var(--panel-text);
	box-shadow: 9px 9px 0 var(--ink);
	transform: rotate(2.5deg);
	animation: panel-in .7s .12s ease both;
}
.id-panel-top, .id-panel-bottom { display: flex; justify-content: space-between; }
.id-panel-top { padding-bottom: 10px; border-bottom: 1px solid rgb(25 27 24 / 35%); }
.initials { display: flex; align-items: center; justify-content: center; min-height: 205px; gap: 24px; font: 700 124px/.8 var(--display); letter-spacing: -.07em; }
.initials > span:last-child { color: var(--panel-text); }
.initials i { width: 2px; height: 118px; background: var(--ink); transform: rotate(14deg); }
.id-panel-bottom { padding-top: 11px; border-top: 1px solid rgb(25 27 24 / 35%); }
.panel-corner { position: absolute; right: -17px; top: -19px; display: grid; min-width: 42px; min-height: 34px; place-items: center; padding: 7px 9px; border: 0; background: var(--ink); color: var(--paper); cursor: pointer; font: 500 12px var(--mono); transform: rotate(9deg); transition: background .18s ease, color .18s ease; }
.panel-corner:hover { background: var(--paper); color: var(--ink); }
.panel-corner:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.section-wrap { padding-right: 12%; padding-left: 12%; }
.about { padding-top: 105px; padding-bottom: 120px; }
.section-label { display: flex; align-items: center; gap: 18px; color: var(--muted); }
.label-line { width: 62px; height: 1px; background: currentColor; opacity: .45; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; margin-top: 43px; }
h2 { margin: 0; font: 600 49px/1.08 var(--display); letter-spacing: -.045em; }
h2 em { color: var(--accent); font-style: normal; }
.about-copy { max-width: 520px; }
.about-copy p { margin: 0 0 18px; color: var(--copy); font-size: 16px; line-height: 1.8; }
.about-copy strong { color: var(--ink); }
.about-copy .aside-note { margin-top: 27px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font: 12px/1.7 var(--mono); }
.aside-note span { padding-right: 9px; color: var(--accent); }
.about-loadout { margin-top: 52px; border-top: 1px solid var(--line); }
.loadout-heading { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; color: var(--muted); font: 10px var(--mono); }
.loadout-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.loadout-item { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 7px; padding: 19px 18px 5px 0; }
.loadout-item + .loadout-item { padding-left: 18px; border-left: 1px solid var(--line); }
.loadout-label { color: var(--muted); font: 10px var(--mono); }
.loadout-item strong { color: var(--ink); font: 600 18px var(--display); }
.loadout-item small { color: var(--copy); font-size: 12px; line-height: 1.55; }
.secret-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.secret-dialog { width: min(460px, calc(100% - 32px)); max-width: none; padding: 0; border: 1px solid var(--accent); background: var(--section-bg); box-shadow: 8px 8px 0 var(--accent); color: var(--section-text); }
.secret-dialog::backdrop { background: rgb(6 11 13 / 72%); backdrop-filter: blur(3px); }
.secret-window-bar { display: flex; align-items: center; justify-content: space-between; min-height: 43px; padding: 0 15px; border-bottom: 1px solid var(--section-line); color: var(--accent); font: 10px var(--mono); }
.secret-close { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--section-line); background: transparent; color: var(--section-text); cursor: pointer; font: 21px/1 var(--sans); }
.secret-window-content { padding: 25px 24px 24px; }
.secret-kicker, .secret-prompt { color: var(--section-label); font: 10px var(--mono); }
.secret-kicker { margin: 0 0 18px; }
.secret-window-content h2 { font-size: 37px; }
.secret-window-content h2 span { color: var(--accent); }
.secret-prompt { margin: 22px 0 7px; color: var(--accent); }
.secret-answer { margin: 0; color: var(--section-muted); font-size: 14px; line-height: 1.75; }
.secret-achievement { display: flex; align-items: center; gap: 12px; margin-top: 23px; padding-top: 16px; border-top: 1px solid var(--section-line); color: var(--accent); }
.secret-achievement > span:first-child { font-size: 22px; }
.secret-achievement strong, .secret-achievement small { display: block; }
.secret-achievement strong { color: var(--section-text); font: 600 13px var(--display); }
.secret-achievement small { margin-top: 4px; color: var(--section-muted); font: 10px var(--mono); }
.interests { padding: 96px 0 86px; background: var(--section-bg); color: var(--section-text); }
.section-label-light { color: var(--section-label); }
.interests h2 { margin-top: 43px; font-size: 46px; }
.interests h2 em { color: var(--accent); }
.timeline-intro { margin: 17px 0 0; color: var(--section-muted); font-size: 14px; }
.interest-list { margin-top: 47px; border-top: 1px solid var(--section-line); }
.interest-row {
	display: grid;
	grid-template-columns: 58px minmax(190px, .9fr) minmax(230px, 1fr) 72px;
	align-items: center;
	gap: 18px;
	min-height: 111px;
	border-bottom: 1px solid var(--section-line);
}
.interest-number { color: var(--accent); font: 12px var(--mono); }
.interest-row h3 { margin: 0; font: 600 21px var(--display); }
.interest-row p { max-width: 330px; margin: 0; color: var(--section-muted); font-size: 13px; line-height: 1.65; }
.interest-mark { justify-self: end; color: var(--accent); }
.timeline-list { margin-top: 34px; }
.timeline-row { grid-template-columns: 92px minmax(0, 1fr) 100px; min-height: 112px; }
.timeline-row .interest-number { position: relative; align-self: stretch; display: flex; flex-direction: column; justify-content: center; font-size: 13px; line-height: 1.35; }
.timeline-row .interest-number::after { position: absolute; top: 50%; right: 17px; width: 7px; height: 7px; border: 2px solid var(--section-bg); border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent); content: ""; transform: translateY(-50%); }
.timeline-row:not(:last-child) .interest-number::before { position: absolute; top: calc(50% + 6px); right: 20px; bottom: calc(-50% + 5px); width: 1px; background: var(--section-line); content: ""; }
.timeline-row .interest-number small { color: var(--section-label); font: inherit; }
.timeline-copy h3 { margin: 0 0 7px; font: 600 19px var(--display); }
.timeline-copy p { max-width: 570px; }
.timeline-tag { justify-self: end; padding: 7px 9px; border: 1px solid var(--section-line); color: var(--accent); font: 10px var(--mono); }
.code-mark { font: 500 25px var(--mono); }
.game-mark { position: relative; display: grid; width: 34px; height: 25px; place-items: center; border: 1px solid var(--accent); border-radius: 9px; font: 16px var(--mono); }
.game-mark i { position: absolute; right: 6px; top: 7px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.music-mark { font: 34px var(--sans); }
.interest-foot { display: flex; align-items: center; gap: 10px; margin: 23px 0 0 76px; color: var(--section-label); font: 11px var(--mono); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgb(0 187 255 / 16%); }
.find-me { padding-top: 105px; padding-bottom: 118px; }
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; margin-top: 43px; }
.find-grid h2 { font-size: 47px; }
.find-copy { margin: 24px 0 0; color: var(--muted); font-size: 15px; }
.link-list { border-top: 1px solid var(--line); }
.link-list a { display: grid; grid-template-columns: minmax(100px, 1fr) minmax(110px, 1fr) 20px; align-items: center; gap: 12px; min-height: 58px; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .2s ease, color .2s ease; }
.link-list a:hover { padding-right: 4px; padding-left: 8px; color: var(--accent); }
.link-list a > span:first-child { font: 600 15px var(--display); }
.link-handle { color: var(--muted); font: 11px var(--mono); }
.link-arrow { justify-self: end; font: 17px var(--sans); }
.imprint { padding-top: 54px; padding-bottom: 72px; border-top: 1px solid var(--line); }
.imprint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; margin-top: 30px; }
.imprint h2 { font-size: 35px; }
.imprint h2 span { color: var(--accent); }
.imprint-caption { margin: 10px 0 0; color: var(--muted); font: 11px var(--mono); }
.imprint address { color: var(--copy); font-size: 14px; font-style: normal; line-height: 1.8; }
.imprint address strong { color: var(--ink); }
.imprint-contact { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; }
.imprint a { text-decoration-color: var(--line); text-underline-offset: 3px; }
.privacy-link { display: inline-block; margin-top: 15px; color: var(--muted); font: 11px var(--mono); }
.footer-links { display: flex; align-items: center; gap: 25px; }
.footer { min-height: 88px; border-top: 1px solid var(--line); }
.footer p { margin: 0; color: var(--muted); font: 11px var(--mono); }
.back-top { color: var(--muted); font: 11px var(--mono); text-decoration: none; }
.back-top span { padding-left: 6px; color: var(--accent); }

body, .topbar, .footer, .about, .find-me, .imprint, .hero, .id-panel, .interests {
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

@keyframes rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(16px) rotate(2.5deg); } to { opacity: 1; transform: translateY(0) rotate(2.5deg); } }

@media (max-width: 760px) {
	.topbar, .footer { padding-right: 6%; padding-left: 6%; }
	.topbar { height: 68px; }
	.topbar nav { gap: 16px; }
	.topbar nav a { font-size: 10px; }
	.topbar nav a:nth-child(2) { display: none; }
	.theme-toggle { width: 33px; height: 33px; }
	.top-note { font-size: 9px; }
	.hero { grid-template-columns: 1fr; gap: 57px; min-height: auto; padding: 75px 9% 82px; }
	.hero h1 { font-size: clamp(80px, 17vw, 118px); }
	.eyebrow { max-width: 100%; }
	.hero-bottom { max-width: 100%; }
	.id-panel { width: min(78%, 330px); }
	.initials { min-height: 170px; font-size: 105px; }
	.initials i { height: 100px; }
	.section-wrap { padding-right: 9%; padding-left: 9%; }
	.about, .find-me { padding-top: 77px; padding-bottom: 83px; }
	.imprint { padding-top: 45px; padding-bottom: 53px; }
	.about-grid, .find-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 34px; }
	.about-loadout { margin-top: 34px; }
	.loadout-item { padding-top: 15px; padding-bottom: 4px; }
	.loadout-item + .loadout-item { padding-left: 12px; }
	.loadout-item strong { font-size: 16px; }
	.loadout-item small { font-size: 11px; }
	.loadout-label { font-size: 9px; }
	.secret-window-content { padding: 22px 19px 20px; }
	.secret-window-content h2 { font-size: 32px; }
	.imprint-grid { grid-template-columns: 1fr; gap: 23px; margin-top: 27px; }
	h2, .interests h2, .find-grid h2 { font-size: 39px; }
	.interests { padding: 76px 0 67px; }
	.interests h2 { margin-top: 34px; }
	.interest-list { margin-top: 34px; }
	.interest-row { grid-template-columns: 32px minmax(0, 1fr) 42px; gap: 8px 12px; padding: 19px 0; }
	.interest-number { grid-row: 1 / span 2; align-self: start; padding-top: 4px; }
	.interest-row h3 { font-size: 18px; }
	.interest-row p { grid-column: 2; font-size: 12px; }
	.interest-mark { grid-column: 3; grid-row: 1 / span 2; }
	.timeline-intro { max-width: 320px; font-size: 13px; line-height: 1.7; }
	.timeline-row { grid-template-columns: 66px minmax(0, 1fr); gap: 9px 12px; min-height: 0; padding: 21px 0; }
	.timeline-row .interest-number { grid-row: 1; align-self: start; padding-top: 3px; font-size: 11px; }
	.timeline-row .interest-number::after { top: 8px; right: 5px; width: 6px; height: 6px; }
	.timeline-row:not(:last-child) .interest-number::before { top: 19px; right: 8px; bottom: -43px; }
	.timeline-copy h3 { font-size: 17px; }
	.timeline-copy p { grid-column: auto; font-size: 12px; }
	.timeline-tag { grid-column: 2; justify-self: start; padding: 5px 7px; font-size: 9px; }
	.interest-foot { margin-left: 44px; font-size: 10px; line-height: 1.7; }
	.footer { min-height: 76px; flex-wrap: wrap; gap: 12px; }
	.footer p { display: none; }
	.footer-links { gap: 18px; }
}

@media (max-width: 390px) {
	.topbar nav { gap: 10px; }
	.topbar nav a { font-size: 9px; }
	.top-note { display: none; }
	.eyebrow { font-size: 9px; }
	.link-list a { grid-template-columns: minmax(85px, 1fr) minmax(95px, 1fr) 18px; gap: 8px; }
	.link-list a > span:first-child { font-size: 14px; }
	.link-handle { font-size: 10px; }
}

@media (max-width: 420px) {
	.loadout-heading { font-size: 9px; }
	.loadout-grid { grid-template-columns: 1fr; }
	.loadout-item, .loadout-item + .loadout-item { padding-right: 0; padding-left: 0; }
	.loadout-item + .loadout-item { border-top: 1px solid var(--line); border-left: 0; }
}

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