:root {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #173c36;
	background: #f3f5ef;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
}
main {
	max-width: 680px;
	margin: auto;
	padding: 40px 20px;
}
header {
	padding: 16px 2px 24px;
}
.eyebrow {
	font-size: 11px;
	letter-spacing: 0.16em;
	font-weight: 700;
	color: #576d64;
}
h1 {
	font-size: clamp(34px, 7vw, 50px);
	line-height: 1.06;
	letter-spacing: -0.04em;
	margin: 20px 0;
}
h2 {
	font-size: 21px;
	margin: 8px 0 16px;
}
h3 {
	font-size: 16px;
	margin-top: 28px;
}
p {
	line-height: 1.6;
}
.card {
	background: #fff;
	border: 1px solid #dbe2d9;
	padding: 24px;
	border-radius: 18px;
	margin-bottom: 18px;
}
dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	font-size: 14px;
}
dd {
	margin: 0;
	text-align: right;
	font-weight: 600;
	overflow-wrap: anywhere;
}
label {
	display: block;
	margin: 16px 0 7px;
	font-size: 14px;
	font-weight: 600;
}
input,
select {
	width: 100%;
	font: inherit;
	font-size: 16px;
	border: 1px solid #aebeb4;
	border-radius: 9px;
	padding: 13px;
	background: #fcfdfb;
}
button {
	width: 100%;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid #174c40;
	border-radius: 10px;
	background: #174c40;
	color: white;
	margin-top: 16px;
}
button.secondary {
	background: white;
	color: #174c40;
}
button:disabled {
	opacity: 0.5;
	cursor: wait;
}
:focus-visible {
	outline: 3px solid #d3a52a;
	outline-offset: 3px;
}
.hint,
footer {
	color: #5c6d64;
	font-size: 13px;
	line-height: 1.6;
}
ul {
	padding: 0;
	list-style: none;
}
li {
	padding: 14px 0;
	border-top: 1px solid #e0e6df;
	font-size: 13px;
	overflow-wrap: anywhere;
}
li button {
	width: auto;
	display: block;
	min-height: 44px;
	font-size: 13px;
	margin-top: 8px;
}
#status {
	padding: 4px 8px;
	font-weight: 600;
}
#status[data-error="true"] {
	color: #9e342e;
}
summary {
	cursor: pointer;
	font-weight: 600;
	line-height: 1.5;
}
pre {
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	font-size: 12px;
	line-height: 1.6;
	background: #f3f5ef;
	padding: 14px;
	border-radius: 10px;
}
[hidden] {
	display: none;
}
@media (max-width: 400px) {
	main {
		padding: 20px 14px;
	}
	.card {
		padding: 19px;
	}
}
