/**
 * picu Download Page – Styles
 * Matches the visual language of the picu cancellation survey
 */

/**
 * Page chrome
 */
.picu-dl-body {
	margin: 0;
	padding: 0;
	background: #f7f7f7;
	-webkit-font-smoothing: antialiased;
}

#picu-dl-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/**
 *Logo
 */
.picu-dl-logo {
	margin-bottom: 24px;
}

.picu-dl-logo svg {
	display: block;
	width: 40px;
	height: 32px;
}

/**
 * Main / card
 */
.picu-dl-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 20px;
}

.picu-dl-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	max-width: 460px;
	width: 100%;
	padding: 48px 40px;
	animation: picuDlFadeIn 0.25s ease;
}

@keyframes picuDlFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/**
 * Download icon
 */
.picu-dl-download-icon {
	width: 56px;
	height: 56px;
	background: #f2fafb;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	color: #179CBC;
}

.picu-dl-download-icon svg {
	width: 26px;
	height: 26px;
}

/**
 * Typography
 */
.picu-dl-card h1 {
	margin: 0 0 20px;
	font-size: 26px;
	font-weight: 600;
	color: #16181b;
	line-height: 1.2;
}

.picu-dl-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.picu-dl-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #444;
	line-height: 1.4;
}

.picu-dl-features li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-color: #179CBC;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 11px 11px;
	background-position: center;
}

/**
 * Form fields
 */
.picu-dl-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.picu-dl-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.picu-dl-field .picu-dl-paragraph {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}

.picu-dl-field label {
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.picu-dl-field input[type="email"] {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	color: #16181b;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	box-sizing: border-box;
	-webkit-appearance: none;
}

.picu-dl-field input[type="email"]::placeholder {
	color: #bbb;
}

.picu-dl-field input[type="email"]:focus {
	outline: none;
	border-color: #179CBC;
	box-shadow: 0 0 0 3px rgba(23, 156, 188, 0.12);
}

/**
 * Buttons
 */
.picu-dl-btn-primary {
	display: block;
	width: 100%;
	padding: 14px 24px;
	background: #16181b;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	transition: background 0.15s, transform 0.1s;
	-webkit-appearance: none;
	margin-top: 4px;
}

.picu-dl-btn-primary:hover {
	background: #2c2f33;
}

.picu-dl-btn-primary:active {
	transform: scale(0.99);
}

.picu-dl-btn-primary:disabled {
	background: #c8c9ca;
	cursor: not-allowed;
	transform: none;
}

/* Skip link */
.picu-dl-skip {
	display: block;
	text-align: center;
	font-size: 13px;
	color: #999;
	text-decoration: none;
	transition: color 0.15s;
}

.picu-dl-skip:hover {
	color: #555;
	text-decoration: underline;
}

/**
 * Success state
 */
.picu-dl-success-icon {
	width: 56px;
	height: 56px;
	background: #46b450;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	color: #fff;
}

.picu-dl-success-icon svg {
	width: 28px;
	height: 28px;
}

.picu-dl-not-started {
	margin: 24px 0 0;
	font-size: 13px;
	color: #999;
}

.picu-dl-not-started a {
	color: #179CBC;
	text-decoration: none;
}

.picu-dl-not-started a:hover {
	text-decoration: underline;
}

/**
* Mobile
*/
@media (max-width: 520px) {
	.picu-dl-main {
		padding: 24px 16px;
		align-items: flex-start;
	}

	.picu-dl-card {
		padding: 32px 24px;
		border-radius: 8px;
	}

	.picu-dl-card h1 {
		font-size: 22px;
	}
}
