@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("pt-sans-400-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("pt-sans-400-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("pt-sans-700-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("pt-sans-700-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--red: #d7141a;
	--blue: #11457e;
	--ink: #22262b;
	--mid: #5a6068;
	--line: #e1e3e6;
	--wash: #f2f3f5;
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	/* 100vh counts the strip behind the mobile URL bar, so the page ends up
	   taller than the screen and scrolls. dvh tracks the real viewport. */
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	padding: 32px 16px;
	background: var(--wash);
	color: var(--ink);
	font-family: "PT Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

/* auto margins centre the card but still let it scroll when a short screen
   cannot fit it — align-items: center would clip the top instead. */
.page {
	width: 100%;
	max-width: 520px;
	margin: auto;
	padding: 48px 32px;
	background: #fff;
	text-align: center;
}

.logo {
	display: block;
	width: 270px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.claim {
	margin: 8px 0 0;
	font-size: 15px;
	color: var(--mid);
}

.title {
	margin: 32px 0 0;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.14;
	color: var(--blue);
}

.lead {
	margin: 16px 0 0;
	font-size: 18px;
	line-height: 1.5;
	color: var(--mid);
	text-wrap: pretty;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
	padding: 14px 24px;
	background: var(--red);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.button:hover,
.button:focus-visible {
	background: var(--blue);
}

.button:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 2px;
}

.button__icon {
	flex: none;
}

.note {
	margin: 32px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	font-size: 14px;
	color: var(--mid);
}

@media (max-width: 479px) {
	body {
		padding: 16px 12px;
	}

	.page {
		padding: 32px 20px;
	}

	.logo {
		width: 220px;
	}

	.title {
		margin-top: 24px;
		font-size: 26px;
	}

	.lead {
		font-size: 16px;
	}

	.button {
		width: 100%;
		margin-top: 24px;
	}

	.note {
		margin-top: 24px;
		padding-top: 20px;
	}
}

/* Short phones in landscape have no room for the full rhythm. */
@media (max-height: 560px) {
	body {
		padding-block: 16px;
	}

	.page {
		padding-block: 24px;
	}

	.logo {
		width: 200px;
	}

	.title {
		margin-top: 16px;
		font-size: 26px;
	}

	.lead {
		margin-top: 10px;
		font-size: 16px;
	}

	.button,
	.note {
		margin-top: 16px;
	}

	.note {
		padding-top: 14px;
	}
}
