@font-face {
	font-family: Poppins;
	src: url("/poppins-400.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: Poppins;
	src: url("/poppins-500.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: Poppins;
	src: url("/poppins-600.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}
:root {
	color-scheme: light dark;
	--bg: #fff;
	--fg: #0a0a0a;
	--muted: #6b7280;
	--line: rgba(0, 0, 0, 0.1);
	--tint: rgba(0, 0, 0, 0.025);
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: Poppins, system-ui, sans-serif;
	line-height: 1.6;
}
.shell {
	max-width: 44rem;
	min-height: 100dvh;
	margin: auto;
	padding: 0 1.25rem;
	display: flex;
	flex-direction: column;
}
header,
footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.85rem;
}
footer {
	margin-top: auto;
	border-top: 1px solid var(--line);
	border-bottom: 0;
	color: var(--muted);
}
main {
	padding: 4rem 0 5rem;
}
h1 {
	margin: 0.25rem 0 1rem;
	font-size: clamp(2rem, 7vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.035em;
	font-weight: 600;
}
h2 {
	margin: 0.2rem 0;
	font-size: 1.3rem;
}
p {
	color: var(--muted);
}
a {
	color: inherit;
}
.wordmark {
	text-decoration: none;
	font-weight: 600;
	letter-spacing: -0.02em;
}
.pill {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.15rem 0.65rem;
	color: var(--muted);
	font-size: 0.75rem;
}
.hero,
.empty {
	max-width: 38rem;
}
.eyebrow {
	margin: 0 0 0.6rem;
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
}
.button {
	display: inline-block;
	margin-top: 1rem;
	border: 1px solid var(--fg);
	border-radius: 999px;
	padding: 0.7rem 1.35rem;
	background: var(--fg);
	color: var(--bg);
	text-decoration: none;
	font: inherit;
	cursor: pointer;
	transition: opacity 0.18s ease;
}
.button:hover {
	opacity: 0.8;
}
.button.secondary {
	background: transparent;
	color: var(--fg);
}
.mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.78rem;
	color: var(--muted);
	word-break: break-all;
}
.profile-head {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin-bottom: 3rem;
}
.profile-head .avatar {
	width: 6rem;
	height: 6rem;
}
.avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	object-fit: cover;
	flex: none;
}
.monogram {
	display: grid;
	place-items: center;
	background: hsl(205 45% 86%);
	color: hsl(205 45% 28%);
	font-weight: 600;
}
section {
	margin-bottom: 2.25rem;
}
.notice {
	margin: 2.5rem 0;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--tint);
	color: var(--muted);
	font-size: 0.85rem;
}
.links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
}
.lede {
	max-width: 36rem;
}
form {
	margin-top: 2rem;
}
label {
	display: block;
	margin: 1.1rem 0 0.35rem;
	font-size: 0.85rem;
	font-weight: 500;
}
label span,
.field-note {
	font-weight: 400;
	color: var(--muted);
}
input,
select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	padding: 0.75rem 0.85rem;
	background: transparent;
	color: inherit;
	font: inherit;
}
input:focus,
select:focus {
	outline: 2px solid var(--fg);
	outline-offset: 2px;
}
.photo-field {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--tint);
}
.photo-preview {
	width: 5rem;
	height: 5rem;
}
.photo-field input[type="file"] {
	background: var(--bg);
}
.text-button {
	margin: 0.7rem 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--fg);
	font: inherit;
	font-size: 0.82rem;
	text-decoration: underline;
	cursor: pointer;
}
.text-button:hover {
	opacity: 0.7;
}
.share-button {
	margin: 0;
	font-size: inherit;
}
.check {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 400;
}
.check input {
	width: auto;
}
.field-note,
#form-status {
	font-size: 0.8rem;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0a0a0a;
		--fg: #ededed;
		--muted: #b8b8b8;
		--line: rgba(255, 255, 255, 0.12);
		--tint: rgba(255, 255, 255, 0.035);
	}
}
@media (max-width: 32rem) {
	.photo-field {
		grid-template-columns: 1fr;
	}
}
