.ptp-submit-page {
	--ptp-submit-primary: var(--theme-palette-color-1, #2872fa);
	--ptp-submit-primary-dark: var(--theme-palette-color-2, #1559ed);
	--ptp-submit-pink: #db2777;
	--ptp-submit-purple: #7c3aed;
	--ptp-submit-green: #15803d;
	--ptp-submit-heading: var(--theme-headings-color, #192a3d);
	--ptp-submit-text: var(--theme-text-color, #3a4f66);
	--ptp-submit-muted: #607086;
	--ptp-submit-border: #dfe6ef;
	--ptp-submit-soft: #f6f8fc;
	--ptp-submit-surface: #fff;
	overflow: hidden;
	background: var(--ptp-submit-surface);
	color: var(--ptp-submit-text);
}

.ptp-submit-page *,
.ptp-submit-page *::before,
.ptp-submit-page *::after {
	box-sizing: border-box;
}

.ptp-submit-page h1,
.ptp-submit-page h2,
.ptp-submit-page p,
.ptp-submit-page ul,
.ptp-submit-page figure {
	margin: 0;
}

.ptp-submit-page h1,
.ptp-submit-page h2 {
	color: var(--ptp-submit-heading);
	font-family: inherit;
	letter-spacing: -.025em;
}

.ptp-submit-page svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ptp-submit-page a {
	color: var(--ptp-submit-primary);
	font-weight: 700;
	text-underline-offset: 3px;
}

.ptp-submit-page :where(a, button, input, textarea):focus-visible {
	border-radius: 5px;
	outline: 3px solid #f59e0b;
	outline-offset: 3px;
}

.ptp-submit-container {
	width: min(100% - 40px, 980px);
	margin-inline: auto;
}

.ptp-submit-container--hero {
	width: min(100% - 40px, 940px);
	text-align: center;
}

.ptp-submit-hero {
	position: relative;
	padding: 72px 0 78px;
	background:
		radial-gradient(circle at 10% 12%, rgb(236 72 153 / 16%), transparent 30%),
		radial-gradient(circle at 90% 14%, rgb(79 70 229 / 14%), transparent 31%),
		linear-gradient(135deg, #fff8fc 0%, #f8f7ff 52%, #f4f9ff 100%);
}

.ptp-submit-hero::after {
	position: absolute;
	right: -130px;
	bottom: -190px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgb(40 114 250 / 4%);
	content: "";
	pointer-events: none;
}

.ptp-submit-hero__icon,
.ptp-submit-success__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 22px;
	background: linear-gradient(145deg, #fce7f3, #ede9fe);
	box-shadow: 0 14px 30px rgb(82 55 139 / 12%);
	color: var(--ptp-submit-pink);
}

.ptp-submit-hero__icon svg,
.ptp-submit-success__icon svg {
	width: 38px;
	height: 38px;
}

.ptp-submit-eyebrow {
	margin-bottom: 10px !important;
	color: var(--ptp-submit-pink);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.ptp-submit-hero h1 {
	font-size: clamp(42px, 6vw, 64px);
	line-height: 1.08;
}

.ptp-submit-hero__intro {
	max-width: 820px;
	margin: 22px auto 0 !important;
	color: #526377;
	font-size: clamp(17px, 1.8vw, 20px);
	line-height: 1.75;
}

.ptp-submit-hero__notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 830px;
	margin: 30px auto 0;
	padding: 17px 20px;
	border: 1px solid rgb(40 114 250 / 15%);
	border-radius: 14px;
	background: rgb(255 255 255 / 86%);
	box-shadow: 0 12px 30px rgb(34 56 101 / 7%);
	text-align: left;
}

.ptp-submit-hero__notice svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	color: var(--ptp-submit-primary);
}

.ptp-submit-hero__notice p {
	color: #526377;
	font-size: 14px;
	line-height: 1.65;
}

.ptp-submit-section {
	padding: 64px 0;
}

.ptp-submit-section--eligibility {
	padding: 58px 0;
	background: #fff;
}

.ptp-submit-info-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px;
	padding: 30px 32px;
	border: 1px solid #dce6f5;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 44px rgb(29 51 84 / 7%);
}

.ptp-submit-info-card__icon,
.ptp-submit-policy-card__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: #dbeafe;
	color: var(--ptp-submit-primary);
}

.ptp-submit-info-card__icon svg,
.ptp-submit-policy-card__icon svg {
	width: 27px;
	height: 27px;
}

.ptp-submit-info-card h2 {
	margin-bottom: 12px;
	font-size: 27px;
	line-height: 1.25;
}

.ptp-submit-info-card p {
	color: #526377;
	font-size: 15px;
	line-height: 1.75;
}

.ptp-submit-info-card p + p {
	margin-top: 12px;
}

.ptp-submit-section--form {
	padding: 72px 0 82px;
	background:
		radial-gradient(circle at 4% 10%, rgb(40 114 250 / 5%), transparent 25%),
		var(--ptp-submit-soft);
}

.ptp-submit-form {
	display: grid;
	gap: 24px;
}

.ptp-submit-card {
	padding: 34px;
	border: 1px solid var(--ptp-submit-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 38px rgb(29 51 84 / 6%);
}

.ptp-submit-card__heading {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid #e8edf3;
}

.ptp-submit-card__heading > span {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--ptp-submit-primary), #6366f1);
	box-shadow: 0 8px 18px rgb(40 114 250 / 22%);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.ptp-submit-card__heading h2 {
	font-size: 25px;
	line-height: 1.25;
}

.ptp-submit-card__heading p {
	margin-top: 4px;
	color: var(--ptp-submit-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ptp-submit-fields {
	display: grid;
	gap: 24px;
}

.ptp-submit-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ptp-submit-field label:not(.ptp-submit-inline-check) {
	display: block;
	margin-bottom: 8px;
	color: #25384d;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
}

.ptp-submit-field label strong {
	color: #dc2626;
}

.ptp-submit-field label > span {
	color: #77879a;
	font-size: 12px;
	font-weight: 500;
}

.ptp-submit-field input[type="text"],
.ptp-submit-field input[type="email"],
.ptp-submit-field input[type="url"],
.ptp-submit-field input[type="date"],
.ptp-submit-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1.5px solid #cfd9e5;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgb(15 23 42 / 3%);
	color: #26384b;
	font: inherit;
	font-size: 15px;
	line-height: 1.5;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.ptp-submit-field textarea {
	min-height: 106px;
	resize: vertical;
}

.ptp-submit-field input:focus,
.ptp-submit-field textarea:focus {
	border-color: var(--ptp-submit-primary);
	box-shadow: 0 0 0 4px rgb(40 114 250 / 11%);
	outline: 0;
}

.ptp-submit-field input[aria-invalid="true"],
.ptp-submit-field textarea[aria-invalid="true"] {
	border-color: #ef4444;
	background: #fffafa;
}

.ptp-submit-help {
	margin-top: 7px !important;
	color: #6b7c90;
	font-size: 12.5px;
	line-height: 1.55;
}

.ptp-submit-inline-check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 11px;
	color: #53667c;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.55;
}

.ptp-submit-inline-check input,
.ptp-submit-confirmation input {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin: 1px 0 0;
	accent-color: var(--ptp-submit-primary);
}

.ptp-submit-error {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin-top: 8px !important;
	color: #dc2626;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
}

.ptp-submit-error svg {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
}

.ptp-submit-global-error,
.ptp-submit-unavailable {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 17px 19px;
	border: 1px solid #fecaca;
	border-radius: 13px;
	background: #fef2f2;
	color: #b91c1c;
}

.ptp-submit-global-error svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
}

.ptp-submit-global-error p {
	color: inherit;
	font-size: 14px;
	font-weight: 650;
}

.ptp-submit-unavailable {
	display: block;
	text-align: center;
}

.ptp-submit-unavailable h2 {
	margin-bottom: 8px;
	font-size: 28px;
}

.ptp-submit-dropzone {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 28px;
	border: 2px dashed #aebfd4;
	border-radius: 16px;
	background: #f9fbfe;
	color: #52677f;
	text-align: center;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ptp-submit-dropzone:hover,
.ptp-submit-dropzone.is-dragging {
	border-color: var(--ptp-submit-primary);
	background: #f1f6ff;
}

.ptp-submit-dropzone.is-dragging {
	transform: scale(1.005);
}

.ptp-submit-dropzone input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.ptp-submit-dropzone > svg {
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	padding: 9px;
	border-radius: 12px;
	background: #dbeafe;
	color: var(--ptp-submit-primary);
}

.ptp-submit-dropzone strong {
	color: #2a3f57;
	font-size: 16px;
}

.ptp-submit-dropzone span {
	margin-top: 7px;
	color: #708197;
	font-size: 12.5px;
}

.ptp-submit-upload-list {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.ptp-submit-upload {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px solid #d9e2ed;
	border-radius: 12px;
	background: #fff;
}

.ptp-submit-upload--error {
	border-color: #fecaca;
	background: #fffafa;
}

.ptp-submit-upload__thumb {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border-radius: 9px;
	background: #eaf1fb;
	color: var(--ptp-submit-primary);
}

.ptp-submit-upload__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ptp-submit-upload__thumb svg {
	width: 25px;
	height: 25px;
}

.ptp-submit-upload__info {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.ptp-submit-upload__info strong {
	overflow: hidden;
	color: #30455e;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ptp-submit-upload__info span {
	color: #6f8094;
	font-size: 12px;
}

.ptp-submit-progress {
	height: 4px;
	margin-top: 4px;
	overflow: hidden;
	border-radius: 999px;
	background: #e5eaf1;
}

.ptp-submit-progress span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--ptp-submit-primary);
	transition: width 100ms linear;
}

.ptp-submit-upload > button,
.ptp-submit-upload__actions button,
.ptp-submit-video-row > button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #718197;
	cursor: pointer;
}

.ptp-submit-upload > button:hover,
.ptp-submit-upload__actions button:hover,
.ptp-submit-video-row > button:hover {
	background: #fee2e2;
	color: #dc2626;
}

.ptp-submit-upload > button svg,
.ptp-submit-upload__actions button svg,
.ptp-submit-video-row > button svg {
	width: 18px;
	height: 18px;
}

.ptp-submit-upload__actions {
	display: flex;
	align-items: center;
	gap: 2px;
}

.ptp-submit-sensitive-note {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 20px 0 24px;
	padding: 14px 16px;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	background: #fff7ed;
}

.ptp-submit-sensitive-note svg {
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	color: #c2410c;
}

.ptp-submit-sensitive-note p {
	color: #7c3d12;
	font-size: 13px;
	line-height: 1.6;
}

.ptp-submit-video-links {
	display: grid;
	gap: 10px;
	margin-top: 10px;
}

.ptp-submit-video-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 7px;
}

.ptp-submit-add-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 11px;
	padding: 7px 0;
	border: 0;
	background: transparent;
	color: var(--ptp-submit-primary);
	font-family: inherit;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
}

.ptp-submit-add-link svg {
	width: 17px;
	height: 17px;
}

.ptp-submit-card--confirmations {
	border-color: #e2d9fb;
}

.ptp-submit-confirmations {
	display: grid;
	gap: 12px;
}

.ptp-submit-confirmation {
	padding: 15px 17px;
	border: 1px solid #dfe5ee;
	border-radius: 12px;
	background: #fbfcfe;
}

.ptp-submit-confirmation[data-error="true"] {
	border-color: #fca5a5;
	background: #fffafa;
}

.ptp-submit-confirmation label {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: #41566d;
	cursor: pointer;
	font-size: 13.5px;
	line-height: 1.65;
}

.ptp-submit-confirmation label strong {
	color: #2d4057;
}

.ptp-submit-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
	padding: 8px 0 0;
	text-align: center;
}

.ptp-submit-actions p {
	color: #697b90;
	font-size: 12.5px;
}

.ptp-submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 55px;
	padding: 13px 28px;
	border: 2px solid transparent;
	border-radius: 11px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ptp-submit-button svg {
	width: 20px;
	height: 20px;
}

.ptp-submit-button--primary {
	background: var(--ptp-submit-primary);
	box-shadow: 0 12px 26px rgb(40 114 250 / 23%);
	color: #fff !important;
}

.ptp-submit-button--primary:hover {
	transform: translateY(-2px);
	background: var(--ptp-submit-primary-dark);
	box-shadow: 0 16px 32px rgb(40 114 250 / 29%);
}

.ptp-submit-button:disabled {
	opacity: .58;
	cursor: not-allowed;
	transform: none;
}

.ptp-submit-spinner {
	width: 19px;
	height: 19px;
	border: 2px solid rgb(255 255 255 / 45%);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ptp-submit-spin 650ms linear infinite;
}

@keyframes ptp-submit-spin {
	to { transform: rotate(360deg); }
}

.ptp-submit-section--after {
	padding: 80px 0;
	background: #fff;
}

.ptp-submit-after-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ptp-submit-policy-card {
	padding: 28px;
	border: 1px solid var(--ptp-submit-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 32px rgb(29 51 84 / 5%);
}

.ptp-submit-policy-card__icon {
	margin-bottom: 18px;
}

.ptp-submit-policy-card__icon--pink { background: #fce7f3; color: var(--ptp-submit-pink); }
.ptp-submit-policy-card__icon--blue { background: #dbeafe; color: var(--ptp-submit-primary); }
.ptp-submit-policy-card__icon--green { background: #dcfce7; color: var(--ptp-submit-green); }
.ptp-submit-policy-card__icon--purple { background: #ede9fe; color: var(--ptp-submit-purple); }

.ptp-submit-policy-card h2 {
	margin-bottom: 12px;
	font-size: 23px;
	line-height: 1.3;
}

.ptp-submit-policy-card p,
.ptp-submit-policy-card li {
	color: #5a6c81;
	font-size: 14px;
	line-height: 1.7;
}

.ptp-submit-policy-card p + p {
	margin-top: 10px;
}

.ptp-submit-policy-card ul {
	padding-left: 20px;
}

.ptp-submit-policy-card li + li {
	margin-top: 5px;
}

.ptp-submit-success {
	min-height: 680px;
	padding: 96px 0;
	background:
		radial-gradient(circle at 12% 16%, rgb(34 197 94 / 10%), transparent 28%),
		radial-gradient(circle at 88% 10%, rgb(79 70 229 / 10%), transparent 30%),
		linear-gradient(135deg, #f8fffb, #f8f8ff);
}

.ptp-submit-container--success {
	width: min(100% - 40px, 760px);
	padding: 48px;
	border: 1px solid #d9e7df;
	border-radius: 24px;
	background: rgb(255 255 255 / 94%);
	box-shadow: 0 22px 60px rgb(31 62 48 / 10%);
	text-align: center;
}

.ptp-submit-success__icon {
	background: #dcfce7;
	color: var(--ptp-submit-green);
}

.ptp-submit-success h1 {
	font-size: clamp(31px, 4vw, 43px);
	line-height: 1.18;
}

.ptp-submit-success > .ptp-submit-container > p:not(.ptp-submit-eyebrow) {
	max-width: 610px;
	margin: 18px auto 0 !important;
	color: #5d6f82;
	font-size: 16px;
	line-height: 1.7;
}

.ptp-submit-reference {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	margin: 30px 0;
	padding: 22px;
	border: 1px dashed #9fb9ad;
	border-radius: 15px;
	background: #f5fbf7;
}

.ptp-submit-reference > span:first-child {
	color: #5c7167;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ptp-submit-reference strong {
	color: #183c2c;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: clamp(20px, 4vw, 28px);
	letter-spacing: .06em;
}

.ptp-submit-copy {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	padding: 6px 9px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: var(--ptp-submit-primary);
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 750;
	cursor: pointer;
}

.ptp-submit-copy:hover { background: #e8f1ff; }
.ptp-submit-copy svg { width: 16px; height: 16px; }
.ptp-submit-honeypot { position: absolute !important; left: -99999px !important; }

@media (max-width: 760px) {
	.ptp-submit-hero { padding: 56px 0 62px; }
	.ptp-submit-section { padding: 52px 0; }
	.ptp-submit-section--form { padding: 56px 0 64px; }
	.ptp-submit-info-card { grid-template-columns: 1fr; padding: 25px; }
	.ptp-submit-card { padding: 26px 22px; }
	.ptp-submit-field-grid,
	.ptp-submit-after-grid { grid-template-columns: 1fr; }
	.ptp-submit-container--success { padding: 38px 24px; }
}

@media (max-width: 480px) {
	.ptp-submit-container { width: min(100% - 28px, 980px); }
	.ptp-submit-card__heading { gap: 11px; }
	.ptp-submit-card__heading > span { width: 34px; height: 34px; }
	.ptp-submit-dropzone { min-height: 195px; padding: 22px 14px; }
	.ptp-submit-reference { padding: 18px 10px; }
	.ptp-submit-reference strong { letter-spacing: .025em; }
}

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

