:root {
	--aipm-ink: #193555;
	--aipm-ink-soft: #5d7697;
	--aipm-deep: #102845;
	--aipm-cobalt: #5680b3;
	--aipm-sky: #d6e8fb;
	--aipm-frost: #f6fbff;
	--aipm-panel: rgba(255, 255, 255, 0.92);
	--aipm-panel-strong: rgba(255, 255, 255, 0.97);
	--aipm-border: rgba(77, 119, 170, 0.15);
	--aipm-shadow: rgba(20, 41, 73, 0.1);
	--aipm-shadow-strong: rgba(17, 35, 64, 0.16);
	--aipm-success-bg: #ecf8f1;
	--aipm-success-border: #b2dec3;
	--aipm-success-text: #22553a;
	--aipm-error-bg: #fff1ef;
	--aipm-error-border: #efc4bc;
	--aipm-error-text: #8a2f22;
}

.aipm-order-form-wrap,
.aipm-message-card {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	padding: 34px;
	background:
		radial-gradient(circle at top right, rgba(158, 198, 235, 0.28), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 248, 255, 0.96) 100%);
	border: 1px solid var(--aipm-border);
	border-radius: 28px;
	box-shadow: 0 28px 64px var(--aipm-shadow);
	color: var(--aipm-ink);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.aipm-order-intro h2,
.aipm-message-card h2 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 2rem;
	line-height: 1.12;
	color: var(--aipm-deep);
}

.aipm-order-intro p,
.aipm-message-card p {
	color: var(--aipm-ink-soft);
}

.aipm-order-form-wrap.aipm-guided-mode {
	padding-block: 20px;
}

.aipm-order-form-wrap.aipm-guided-mode .aipm-order-intro {
	display: none;
}

.aipm-form-notice {
	margin: 0 0 24px;
	padding: 16px 20px;
	border-radius: 18px;
}

.aipm-form-notice p {
	margin: 0;
}

.aipm-form-notice-error {
	background: var(--aipm-error-bg);
	border: 1px solid var(--aipm-error-border);
	color: var(--aipm-error-text);
}

.aipm-form-notice-success {
	background: var(--aipm-success-bg);
	border: 1px solid var(--aipm-success-border);
	color: var(--aipm-success-text);
}

.aipm-form-notice ul {
	margin: 0;
	padding-left: 20px;
}

.aipm-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.aipm-order-form p {
	margin: 0 0 20px;
}

.aipm-order-form label,
.aipm-fieldset legend,
.aipm-launch-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--aipm-deep);
}

.aipm-order-form input[type="text"],
.aipm-order-form input[type="email"],
.aipm-order-form input[type="url"],
.aipm-order-form select,
.aipm-order-form textarea,
.aipm-order-form input[type="file"],
.aipm-launch-form input[type="text"],
.aipm-launch-form input[type="email"],
.aipm-launch-form select,
.aipm-launch-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(84, 121, 168, 0.26);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
	color: var(--aipm-deep);
}

.aipm-order-form input[type="text"]:focus,
.aipm-order-form input[type="email"]:focus,
.aipm-order-form input[type="url"]:focus,
.aipm-order-form select:focus,
.aipm-order-form textarea:focus,
.aipm-launch-form input[type="text"]:focus,
.aipm-launch-form input[type="email"]:focus,
.aipm-launch-form select:focus,
.aipm-launch-form textarea:focus {
	outline: 0;
	border-color: rgba(77, 120, 169, 0.5);
	box-shadow: 0 0 0 4px rgba(117, 164, 215, 0.16);
}

.aipm-order-form textarea {
	min-height: 120px;
	resize: vertical;
}

.aipm-launch-form textarea {
	min-height: 100px;
	resize: vertical;
}

.aipm-fieldset {
	margin: 0 0 24px;
	padding: 0;
	border: 0;
}

.aipm-package-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.aipm-currency-panel {
	padding: 18px;
}

.aipm-currency-panel-compact {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0;
}

.aipm-currency-panel-compact .aipm-option-kicker {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.14em;
}

.aipm-currency-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.aipm-currency-card {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 116px;
	padding: 12px 14px;
	border: 1px solid rgba(75, 112, 158, 0.18);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--aipm-deep);
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.aipm-currency-card.is-selected {
	border-color: rgba(62, 104, 152, 0.42);
	box-shadow: 0 12px 26px rgba(28, 53, 89, 0.1);
}

.aipm-currency-card input {
	margin: 0;
}

.aipm-currency-card span {
	font-weight: 800;
}

.aipm-currency-card strong {
	margin-left: auto;
	color: var(--aipm-cobalt);
}

.aipm-currency-panel-compact .aipm-currency-grid {
	gap: 8px;
}

.aipm-currency-panel-compact .aipm-currency-card {
	min-width: 76px;
	padding: 8px 10px;
	border-radius: 999px;
}

.aipm-currency-panel-compact .aipm-currency-card span,
.aipm-currency-panel-compact .aipm-currency-card strong {
	font-size: 13px;
}

.aipm-currency-panel-top {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 4px;
	border: 1px solid rgba(75, 112, 158, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 14px 28px rgba(24, 47, 81, 0.1);
	backdrop-filter: blur(10px);
}

.aipm-currency-panel-top .aipm-option-kicker {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.aipm-currency-panel-top .aipm-currency-grid {
	gap: 3px;
}

.aipm-currency-panel-top .aipm-currency-card {
	min-width: 0;
	padding: 6px 8px 6px 6px;
	border-color: transparent;
	background: transparent;
	box-shadow: none;
	gap: 6px;
}

.aipm-currency-panel-top .aipm-currency-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.aipm-currency-panel-top .aipm-currency-card.is-selected {
	background: #1a3559;
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(24, 47, 81, 0.2);
}

.aipm-currency-panel-top .aipm-currency-card:focus-within {
	outline: 2px solid rgba(86, 128, 179, 0.55);
	outline-offset: 2px;
}

.aipm-currency-panel-top .aipm-currency-card > strong {
	display: none;
}

.aipm-currency-code,
.aipm-currency-symbol {
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.aipm-currency-symbol {
	color: inherit;
	opacity: 0.72;
}

.aipm-currency-flag {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	overflow: hidden;
	flex: 0 0 auto;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(16, 40, 69, 0.16);
}

.aipm-currency-flag-usd {
	background:
		linear-gradient(90deg, #3c3b6e 0 44%, transparent 44%),
		repeating-linear-gradient(180deg, #b22234 0 2px, #ffffff 2px 4px);
}

.aipm-currency-flag-gbp {
	background:
		linear-gradient(135deg, transparent 0 40%, #ffffff 40% 47%, #c8102e 47% 53%, #ffffff 53% 60%, transparent 60%),
		linear-gradient(45deg, transparent 0 40%, #ffffff 40% 47%, #c8102e 47% 53%, #ffffff 53% 60%, transparent 60%),
		linear-gradient(90deg, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%),
		linear-gradient(180deg, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%),
		#012169;
}

.aipm-package-card {
	display: block;
	padding: 20px;
	border: 1px solid rgba(71, 110, 157, 0.2);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 245, 255, 0.9) 100%);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aipm-package-card.is-selected,
.aipm-length-card.is-selected {
	border-color: rgba(62, 104, 152, 0.42);
	box-shadow: 0 18px 38px rgba(28, 53, 89, 0.12);
}

.aipm-package-card:hover {
	transform: translateY(-2px);
	border-color: rgba(77, 120, 169, 0.38);
	box-shadow: 0 16px 36px rgba(37, 62, 98, 0.12);
}

.aipm-package-card:has(input[name="pet_status"][value="remembered"]) {
	order: -1;
}

.aipm-package-card input {
	margin-right: 8px;
}

.aipm-package-title {
	display: block;
	margin-top: 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--aipm-deep);
}

.aipm-package-copy {
	display: block;
	margin-top: 10px;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--aipm-ink-soft);
}

.aipm-package-meta {
	display: block;
	margin-top: 10px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #4b6a90;
}

.aipm-package-price {
	display: block;
	margin-top: 14px;
	color: var(--aipm-cobalt);
	font-size: 1.1rem;
	font-weight: 700;
}

.aipm-length-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.aipm-length-card {
	display: block;
	padding: 18px;
	border: 1px solid rgba(75, 112, 158, 0.18);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.86);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aipm-length-card:hover {
	transform: translateY(-2px);
	border-color: rgba(77, 120, 169, 0.34);
	box-shadow: 0 14px 32px rgba(30, 54, 91, 0.1);
}

.aipm-length-card.is-hidden {
	display: none;
}

.aipm-length-card input {
	margin-right: 8px;
}

.aipm-choice-title {
	display: block;
	margin-top: 8px;
	font-weight: 700;
	color: var(--aipm-deep);
}

.aipm-choice-copy {
	display: block;
	margin-top: 8px;
	font-size: 0.93rem;
	line-height: 1.6;
	color: var(--aipm-ink-soft);
}

.aipm-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #1a3559;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aipm-order-form small {
	display: block;
	margin-top: 8px;
	font-size: 0.85rem;
	line-height: 1.55;
	color: #5f7898;
}

.aipm-upload-feedback {
	display: block;
	margin-top: 10px;
	padding: 12px 14px;
	border-radius: 16px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
}

.aipm-upload-feedback.is-error {
	border: 1px solid var(--aipm-error-border);
	background: var(--aipm-error-bg);
	color: var(--aipm-error-text);
}

.aipm-upload-feedback.is-info {
	border: 1px solid rgba(82, 127, 178, 0.2);
	background: rgba(235, 245, 255, 0.88);
	color: var(--aipm-ink);
}

.aipm-upload-feedback.is-success {
	border: 1px solid var(--aipm-success-border);
	background: var(--aipm-success-bg);
	color: var(--aipm-success-text);
}

.aipm-upload-feedback[hidden] {
	display: none;
}

.aipm-order-form input[aria-invalid="true"] {
	border-color: var(--aipm-error-border);
	box-shadow: 0 0 0 3px rgba(239, 196, 188, 0.36);
}

.aipm-order-form p.has-missing-selection > label,
.aipm-fieldset.has-missing-selection legend,
.aipm-checklist label.has-missing-selection {
	color: var(--aipm-error-text);
}

.aipm-order-form p.has-missing-selection input:not([type="checkbox"]):not([type="radio"]),
.aipm-order-form p.has-missing-selection select,
.aipm-order-form p.has-missing-selection textarea {
	border-color: var(--aipm-error-border);
	background: var(--aipm-error-bg);
	box-shadow: 0 0 0 3px rgba(239, 196, 188, 0.36);
}

.aipm-fieldset.has-missing-selection {
	border-color: var(--aipm-error-border);
	background:
		radial-gradient(circle at top right, rgba(255, 241, 239, 0.9), transparent 38%),
		rgba(255, 249, 248, 0.92);
	box-shadow: 0 0 0 3px rgba(239, 196, 188, 0.2);
}

.aipm-checklist label.has-missing-selection {
	margin: -6px -8px;
	padding: 8px;
	border: 1px solid var(--aipm-error-border);
	border-radius: 14px;
	background: var(--aipm-error-bg);
	font-weight: 700;
}

.aipm-upload-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.aipm-upload-preview-grid[hidden] {
	display: none;
}

.aipm-upload-preview-card {
	overflow: hidden;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 26px rgba(27, 59, 100, 0.08);
}

.aipm-upload-preview-image {
	aspect-ratio: 4 / 3;
	background: #eaf4ff;
}

.aipm-upload-preview-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aipm-upload-preview-meta {
	display: grid;
	gap: 5px;
	padding: 11px 12px 13px;
}

.aipm-upload-preview-meta strong {
	overflow: hidden;
	color: var(--aipm-ink);
	font-size: 0.85rem;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aipm-upload-preview-meta span {
	color: #5f7898;
	font-size: 0.78rem;
	font-weight: 700;
}

.aipm-upload-preview-meta em {
	justify-self: start;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aipm-upload-preview-meta em.is-ready {
	background: rgba(82, 127, 178, 0.12);
	color: #315a89;
}

.aipm-upload-preview-meta em.is-optimised {
	background: var(--aipm-success-bg);
	color: var(--aipm-success-text);
}

.aipm-option-panel {
	margin: 0 0 24px;
	padding: 22px 24px;
	border: 1px solid rgba(78, 119, 169, 0.16);
	border-radius: 22px;
	background: rgba(235, 245, 255, 0.72);
}

.aipm-option-panel.is-hidden {
	display: none;
}

.aipm-order-form p.is-hidden {
	display: none;
}

.aipm-voice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.aipm-voice-card {
	display: grid !important;
	gap: 8px;
	margin: 0 !important;
	padding: 16px;
	border: 1px solid rgba(75, 112, 158, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	cursor: pointer;
}

.aipm-voice-card.is-selected {
	border-color: rgba(62, 104, 152, 0.42);
	box-shadow: 0 16px 30px rgba(28, 53, 89, 0.1);
}

.aipm-voice-card input {
	width: auto !important;
}

.aipm-voice-card strong {
	color: var(--aipm-deep);
}

.aipm-voice-card span {
	color: var(--aipm-ink-soft);
	font-size: 0.92rem;
	line-height: 1.45;
}

.aipm-voice-sample-player {
	width: 100%;
	max-width: 100%;
	height: 34px;
	border-radius: 999px;
}

.aipm-voice-card em {
	color: var(--aipm-cobalt);
	font-style: normal;
	font-weight: 800;
}

.aipm-small-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(82, 127, 178, 0.12);
	color: var(--aipm-deep);
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration: none;
}

.aipm-option-kicker {
	margin: 0 0 6px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #4c6f99;
}

.aipm-option-copy {
	margin: 0 0 16px !important;
	color: var(--aipm-ink-soft);
}

.aipm-option-checkbox {
	display: flex !important;
	gap: 12px;
	align-items: flex-start;
	margin: 0;
}

.aipm-option-checkbox input {
	width: auto !important;
	margin-top: 4px;
}

.aipm-inline-choice-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	padding-left: 28px;
}

.aipm-inline-choice-group label {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	color: var(--aipm-ink-soft);
	font-size: 0.92rem;
	font-weight: 700;
}

.aipm-inline-choice-group input {
	width: auto !important;
}

.aipm-checklist {
	display: grid;
	gap: 10px;
	margin: 24px 0;
	padding: 20px;
	border-radius: 22px;
	background: rgba(234, 245, 255, 0.72);
	border: 1px solid rgba(78, 119, 169, 0.14);
}

.aipm-checklist label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	font-weight: 500;
	color: var(--aipm-ink);
}

.aipm-checklist input {
	margin-top: 3px;
}

.aipm-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.aipm-form-actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.aipm-guided-builder[hidden],
.aipm-guided-progress[hidden],
.aipm-guided-staging[hidden] {
	display: none;
}

.aipm-guided-builder {
	display: grid;
	gap: 12px;
}

.aipm-guided-progress {
	display: grid;
	gap: 8px;
	padding-right: 150px;
	color: #5f7898;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.aipm-guided-progress-track {
	overflow: hidden;
	height: 8px;
	border-radius: 999px;
	background: rgba(82, 127, 178, 0.13);
}

.aipm-guided-progress-track span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(135deg, #6f9ccf 0%, #1f436f 100%);
	transition: width 240ms ease;
}

.aipm-guided-card {
	box-sizing: border-box;
	display: grid;
	gap: 12px;
	min-height: clamp(320px, 48vh, 390px);
	padding: clamp(18px, 2.2vw, 26px);
	border: 1px solid rgba(78, 119, 169, 0.18);
	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(208, 231, 252, 0.66), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.96) 100%);
	box-shadow: 0 26px 58px rgba(19, 41, 72, 0.1);
}

.aipm-guided-card-header {
	display: grid;
	gap: 6px;
}

.aipm-guided-kicker {
	margin: 0;
	color: #4c6f99;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.aipm-guided-card h3 {
	margin: 0;
	max-width: min(100%, 31ch);
	color: var(--aipm-deep);
	font-size: clamp(1.6rem, 2.7vw, 2.1rem);
	line-height: 1.06;
}

.aipm-guided-copy {
	margin: 0;
	max-width: 58ch;
	color: var(--aipm-ink-soft);
	font-size: 1rem;
	line-height: 1.6;
}

.aipm-guided-card-body {
	display: grid;
	gap: 12px;
	align-self: start;
}

.aipm-guided-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.aipm-guided-choice {
	position: relative;
	display: grid;
	gap: 8px;
	min-height: 92px;
	padding: 14px;
	border: 2px solid rgba(75, 112, 158, 0.18);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 30px rgba(19, 41, 72, 0.06);
	color: var(--aipm-deep);
	text-align: left;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aipm-guided-choice:hover,
.aipm-guided-choice:focus {
	transform: translateY(-2px);
	border-color: rgba(77, 120, 169, 0.38);
	box-shadow: 0 18px 38px rgba(28, 53, 89, 0.12);
	outline: 0;
}

.aipm-guided-choice.is-selected {
	border-color: #1f436f;
	background:
		radial-gradient(circle at top right, rgba(183, 217, 250, 0.9), transparent 42%),
		linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
	box-shadow:
		0 0 0 4px rgba(87, 134, 188, 0.18),
		0 22px 46px rgba(28, 53, 89, 0.18);
}

.aipm-guided-choice strong {
	font-size: 1.03rem;
	line-height: 1.35;
}

.aipm-guided-choice-copy,
.aipm-guided-choice-price {
	color: var(--aipm-ink-soft);
	font-size: 0.9rem;
	line-height: 1.4;
}

.aipm-guided-choice-price {
	color: var(--aipm-cobalt);
	font-weight: 800;
}

.aipm-guided-badge {
	justify-self: start;
	padding: 5px 9px;
	border-radius: 999px;
	background: #1a3559;
	color: #ffffff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aipm-guided-label {
	display: grid !important;
	gap: 10px;
	margin: 0 !important;
	color: var(--aipm-deep);
	font-size: 1rem;
	font-weight: 800;
}

.aipm-guided-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(84, 121, 168, 0.26);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--aipm-deep);
	font: inherit;
	font-size: 1rem;
	line-height: 1.6;
}

textarea.aipm-guided-input {
	min-height: 135px;
	resize: vertical;
}

.aipm-guided-input:focus {
	outline: 0;
	border-color: rgba(77, 120, 169, 0.5);
	box-shadow: 0 0 0 4px rgba(117, 164, 215, 0.16);
}

.aipm-guided-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.aipm-guided-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	align-self: end;
}

.aipm-guided-primary-button,
.aipm-guided-secondary-button,
.aipm-guided-skip-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 24px;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.aipm-guided-primary-button {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: linear-gradient(135deg, #3d6999 0%, #1a3559 100%);
	box-shadow: 0 16px 30px rgba(24, 47, 81, 0.2);
	color: #ffffff;
}

.aipm-guided-secondary-button,
.aipm-guided-skip-button {
	border: 1px solid rgba(82, 127, 178, 0.18);
	background: rgba(255, 255, 255, 0.9);
	color: #173255;
}

.aipm-guided-skip-button {
	background: rgba(232, 242, 252, 0.92);
	color: #41648c;
}

.aipm-guided-primary-button:hover,
.aipm-guided-secondary-button:hover,
.aipm-guided-skip-button:hover,
.aipm-guided-primary-button:focus,
.aipm-guided-secondary-button:focus,
.aipm-guided-skip-button:focus {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(24, 47, 81, 0.14);
	outline: 0;
}

.aipm-guided-error {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--aipm-error-border);
	border-radius: 16px;
	background: var(--aipm-error-bg);
	color: var(--aipm-error-text);
	font-weight: 800;
}

.aipm-guided-error[hidden] {
	display: none;
}

.aipm-guided-live-node {
	margin: 0 !important;
}

.aipm-guided-live-node.aipm-option-panel,
.aipm-guided-live-node.aipm-checklist {
	background: rgba(255, 255, 255, 0.86);
}

.aipm-guided-review-summary {
	display: grid;
	gap: 16px;
	padding: 20px;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.88);
}

.aipm-guided-review-summary p {
	margin: 0;
	color: var(--aipm-ink);
	font-size: 1rem;
	line-height: 1.75;
}

.aipm-guided-review-fields {
	display: grid;
	gap: 18px;
}

.aipm-guided-review-fields .aipm-form-footer {
	padding-top: 6px;
}

.aipm-order-total {
	min-width: 260px;
	padding: 14px 18px;
	border: 1px solid rgba(82, 127, 178, 0.18);
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(215, 234, 252, 0.78), transparent 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.92));
	box-shadow: 0 14px 32px rgba(30, 54, 91, 0.1);
}

.aipm-order-total-label,
.aipm-order-total-note {
	display: block;
	color: var(--aipm-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.aipm-order-total strong {
	display: block;
	margin: 3px 0;
	color: var(--aipm-ink);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1;
}

.aipm-order-total-note {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: none;
}

.aipm-submit-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 24px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: linear-gradient(135deg, #3d6999 0%, #1a3559 100%);
	background-size: 180% 180%;
	box-shadow: 0 16px 30px rgba(24, 47, 81, 0.24);
	color: #f8fbff;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.aipm-submit-button[disabled],
.aipm-order-form.is-submitting .aipm-submit-button {
	cursor: wait;
	opacity: 0.92;
	animation: aipm-button-pulse 1.4s ease-in-out infinite;
}

.aipm-order-form.is-submitting .aipm-submit-button::after {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.48);
	border-top-color: #ffffff;
	border-radius: 999px;
	flex: 0 0 auto;
	animation: aipm-button-spin 0.75s linear infinite;
}

@keyframes aipm-button-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes aipm-button-pulse {
	0%,
	100% {
		background-position: 0% 50%;
		box-shadow: 0 16px 30px rgba(24, 47, 81, 0.24);
	}

	50% {
		background-position: 100% 50%;
		box-shadow: 0 20px 38px rgba(24, 47, 81, 0.34);
	}
}

.aipm-submit-button-light {
	background: linear-gradient(135deg, #d8e9fb 0%, #a8c9ee 100%);
	border-color: rgba(20, 38, 66, 0.12);
	color: #173050;
}

.aipm-launch-body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(183, 215, 247, 0.28), transparent 22%),
		radial-gradient(circle at 88% 14%, rgba(219, 236, 252, 0.9), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #fbfdff 56%, #f2f8ff 100%);
	color: var(--aipm-deep);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.aipm-launch-shell {
	position: relative;
	min-height: 100vh;
	padding: 28px;
	overflow: hidden;
}

.aipm-launch-shell::before,
.aipm-launch-shell::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(18px);
	pointer-events: none;
}

.aipm-launch-shell::before {
	top: 120px;
	left: -80px;
	width: 260px;
	height: 260px;
	background: rgba(192, 220, 248, 0.34);
}

.aipm-launch-shell::after {
	right: -70px;
	bottom: 80px;
	width: 320px;
	height: 320px;
	background: rgba(126, 175, 230, 0.12);
}

.aipm-launch-topbar {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1220px;
	margin: 0 auto 28px;
}

.aipm-launch-branding,
.aipm-launch-topbar-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.aipm-launch-brandmark {
	width: 58px;
	height: 58px;
	object-fit: contain;
	filter: drop-shadow(0 10px 18px rgba(20, 40, 72, 0.12));
}

.aipm-launch-eyebrow {
	margin: 0 0 6px;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(22, 48, 79, 0.68);
}

.aipm-launch-brand {
	margin: 0;
	font-size: 1.18rem;
	font-weight: 800;
	color: var(--aipm-deep);
}

.aipm-launch-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(64, 103, 150, 0.12);
	background: rgba(255, 255, 255, 0.86);
	color: var(--aipm-deep);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
}

.aipm-launch-pill-muted {
	color: rgba(22, 48, 79, 0.72);
}

.aipm-launch-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
	gap: 24px;
	max-width: 1220px;
	margin: 0 auto;
}

.aipm-launch-hero,
.aipm-launch-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(73, 113, 162, 0.11);
	border-radius: 32px;
	box-shadow: 0 26px 58px rgba(19, 41, 72, 0.08);
}

.aipm-launch-hero {
	padding: 40px;
	background:
		radial-gradient(circle at top right, rgba(201, 225, 249, 0.62), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 251, 255, 1) 100%);
}

.aipm-launch-hero-brand {
	padding: 22px 24px;
	margin-bottom: 28px;
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.98) 100%);
	border: 1px solid rgba(92, 131, 177, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.aipm-launch-lockup {
	display: block;
	width: min(100%, 420px);
	height: auto;
	filter: drop-shadow(0 18px 24px rgba(34, 64, 103, 0.1));
}

.aipm-launch-status {
	margin: 18px 0 0;
	max-width: 40ch;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--aipm-ink-soft);
}

.aipm-launch-hero h1 {
	margin: 0 0 16px;
	max-width: 11ch;
	font-size: clamp(2.75rem, 5vw, 5rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: var(--aipm-deep);
}

.aipm-launch-copy {
	max-width: 54ch;
	margin: 0 0 28px;
	font-size: 1.06rem;
	line-height: 1.75;
	color: var(--aipm-ink-soft);
}

.aipm-launch-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.aipm-launch-point {
	padding: 18px 20px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 255, 0.96) 100%);
	border: 1px solid rgba(89, 129, 177, 0.12);
}

.aipm-launch-point strong,
.aipm-launch-point span {
	display: block;
}

.aipm-launch-point strong {
	margin-bottom: 6px;
	font-size: 1rem;
	color: var(--aipm-deep);
}

.aipm-launch-point span {
	color: var(--aipm-ink-soft);
	line-height: 1.58;
}

.aipm-launch-panel {
	display: grid;
	gap: 18px;
	align-content: start;
}

.aipm-launch-card {
	padding: 28px;
	background:
		radial-gradient(circle at top right, rgba(212, 231, 250, 0.42), transparent 32%),
		var(--aipm-panel);
}

.aipm-launch-card h2 {
	margin: 0 0 10px;
	font-size: 1.5rem;
	color: var(--aipm-deep);
}

.aipm-launch-card > p {
	margin: 0 0 18px;
	color: var(--aipm-ink-soft);
	line-height: 1.62;
}

.aipm-launch-card-accent {
	background:
		radial-gradient(circle at top left, rgba(194, 220, 246, 0.58), transparent 28%),
		linear-gradient(180deg, rgba(236, 245, 255, 0.98) 0%, rgba(216, 232, 249, 0.98) 100%);
	color: #f4f9ff;
	box-shadow: 0 28px 56px rgba(40, 74, 118, 0.1);
}

.aipm-launch-card-accent h2,
.aipm-launch-card-accent > p,
.aipm-launch-card-accent label {
	color: var(--aipm-deep);
}

.aipm-launch-card-accent input[type="text"],
.aipm-launch-card-accent input[type="email"] {
	border-color: rgba(101, 140, 189, 0.18);
	background: rgba(255, 255, 255, 0.98);
	color: var(--aipm-deep);
}

.aipm-launch-form p {
	margin: 0 0 16px;
}

@media (max-width: 860px) {
	.aipm-launch-topbar,
	.aipm-launch-topbar-actions {
		flex-direction: column;
	}

	.aipm-launch-grid {
		grid-template-columns: 1fr;
	}

	.aipm-launch-topbar {
		align-items: flex-start;
	}

	.aipm-launch-topbar-actions {
		align-items: stretch;
	}

	.aipm-launch-points {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.aipm-order-form-wrap,
	.aipm-message-card {
		padding: 24px 18px;
	}

	.aipm-currency-panel-top {
		top: 10px;
		right: 12px;
	}

	.aipm-guided-progress {
		padding-right: 0;
		padding-top: 34px;
	}

	.aipm-grid,
	.aipm-package-grid,
	.aipm-length-grid,
	.aipm-voice-grid,
	.aipm-guided-choice-grid,
	.aipm-guided-field-grid {
		grid-template-columns: 1fr;
	}

	.aipm-guided-card {
		min-height: 0;
		padding: 24px 18px;
		border-radius: 24px;
	}

	.aipm-guided-card h3 {
		max-width: none;
		font-size: 2rem;
	}

	.aipm-guided-choice {
		min-height: 0;
		padding: 18px;
	}

	.aipm-guided-actions,
	.aipm-guided-primary-button,
	.aipm-guided-secondary-button,
	.aipm-guided-skip-button {
		width: 100%;
	}

	.aipm-guided-actions {
		display: grid;
	}

	.aipm-form-footer {
		align-items: flex-start;
	}

	.aipm-form-footer > p,
	.aipm-form-actions,
	.aipm-order-total,
	.aipm-submit-button {
		width: 100%;
	}

	.aipm-launch-shell {
		padding: 18px;
	}

	.aipm-launch-branding {
		align-items: flex-start;
	}

	.aipm-launch-brandmark {
		width: 48px;
		height: 48px;
	}

	.aipm-launch-hero,
	.aipm-launch-card {
		padding: 24px 20px;
		border-radius: 26px;
	}

	.aipm-launch-hero-brand {
		padding: 18px;
	}
}

.apm-home-page {
	--apm-ink: #163154;
	--apm-ink-soft: #5a7495;
	--apm-cobalt: #527fb2;
	--apm-sky: #d9e9fb;
	--apm-frost: #f6fbff;
	--apm-border: rgba(82, 127, 178, 0.14);
	--apm-shadow: rgba(18, 42, 74, 0.1);
	--apm-shadow-strong: rgba(18, 42, 74, 0.16);
	color: var(--apm-ink);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body.page-id-63 .apm-site-header {
	padding: 0 !important;
}

body.page-id-63 .apm-header-wrap {
	min-height: 72px !important;
	padding: 6px 18px !important;
	gap: 18px !important;
}

body.page-id-63 .apm-site-logo img {
	height: 56px !important;
	max-width: 180px !important;
}

body.page-id-63 .apm-main-nav {
	gap: 18px !important;
}

body.page-id-63 .apm-main-nav a {
	padding: 0 !important;
	font-size: 14px !important;
}

body.page-id-63 .apm-cta-btn {
	padding: 0.5rem 1rem !important;
	font-size: 14px !important;
}

body.page-id-63 .apm-main-content {
	padding-top: 0.5rem !important;
	padding-bottom: 3rem !important;
}

.page-id-63 .ast-main-header-wrap .main-header-bar,
.page-id-63 .site-primary-header-wrap,
.page-id-63 .ast-primary-header-bar {
	padding-top: 4px;
	padding-bottom: 4px;
}

.page-id-63 .site-primary-header-wrap .ast-builder-grid-row,
.page-id-63 .site-primary-header-wrap .ast-builder-grid-row-container-inner,
.page-id-63 .site-primary-header-wrap .ast-builder-layout-element {
	min-height: 0 !important;
	align-items: center;
}

.page-id-63 .site-primary-header-wrap .ast-builder-grid-row {
	min-height: 72px !important;
}

.page-id-63 .site-branding,
.page-id-63 .ast-site-identity,
.page-id-63 .site-logo-img,
.page-id-63 .custom-logo-link {
	margin: 0;
	padding: 0;
}

.page-id-63 .custom-logo-link,
.page-id-63 .site-logo-img {
	display: flex;
	align-items: center;
}

.page-id-63 .custom-logo-link img,
.page-id-63 .site-logo-img img {
	max-height: 56px !important;
	width: auto;
}

.page-id-63 .main-header-menu > .menu-item > .menu-link,
.page-id-63 .ast-builder-menu-1 .menu-item > .menu-link,
.page-id-63 .menu-item .menu-link {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 14px;
	padding-right: 14px;
	line-height: 1.2;
}

.page-id-63 .ast-button-wrap .menu-link,
.page-id-63 .ast-custom-button-link,
.page-id-63 .menu-item a.ast-button {
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 22px;
	padding-right: 22px;
	border-radius: 999px;
}

.apm-home-page *,
.aipm-order-landing * {
	box-sizing: border-box;
}

.apm-home-page section,
.aipm-order-landing section {
	padding: 60px 28px;
}

.apm-home-wrap,
.aipm-order-landing-wrap {
	max-width: 1180px;
	margin: 0 auto;
}

.apm-home-hero {
	background:
		radial-gradient(circle at top left, rgba(192, 220, 248, 0.34), transparent 24%),
		radial-gradient(circle at 85% 10%, rgba(218, 234, 251, 0.82), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.apm-home-hero.apm-home-hero,
.apm-home-page .apm-home-hero {
	padding-top: 28px;
}

.apm-home-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	gap: 28px;
	align-items: start;
}

.apm-home-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--apm-border);
	color: var(--apm-ink-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.apm-home-eyebrow img {
	width: 18px;
	height: 18px;
}

.apm-home-lockup,
.aipm-order-landing-lockup {
	display: block;
	width: min(100%, 430px);
	height: auto;
}

.apm-home-headline,
.aipm-order-landing-title {
	margin: 0 0 18px;
	font-size: clamp(42px, 7vw, 72px);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: #102845;
}

.apm-home-headline {
	max-width: 9.8ch;
}

.apm-home-subcopy,
.aipm-order-landing-copy {
	max-width: 54ch;
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 1.68;
	color: var(--apm-ink-soft);
}

.apm-home-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.apm-home-actions-centered {
	justify-content: center;
	margin-bottom: 0;
}

.apm-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.apm-home-button:hover {
	transform: translateY(-1px);
}

.apm-home-button-primary {
	background: linear-gradient(135deg, #4c78ac 0%, #173255 100%);
	box-shadow: 0 18px 34px rgba(19, 49, 84, 0.18);
	color: #ffffff;
}

.apm-home-button-secondary {
	border: 1px solid var(--apm-border);
	background: rgba(255, 255, 255, 0.9);
	color: var(--apm-ink);
}

.apm-home-microproof {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	color: var(--apm-ink-soft);
	font-size: 14px;
}

.apm-home-microproof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.apm-home-brand-band {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 18px;
	padding: 16px 18px;
	border: 1px solid var(--apm-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 18px 32px rgba(18, 42, 74, 0.06);
}

.apm-home-brand-band .apm-home-lockup {
	width: min(100%, 240px);
	flex: 0 0 auto;
}

.apm-home-brand-band p {
	margin: 0;
	color: var(--apm-ink-soft);
	font-size: 15px;
	line-height: 1.7;
}

.apm-home-hero-card {
	padding: 26px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--apm-border);
	box-shadow: 0 28px 52px var(--apm-shadow);
	margin-top: 0;
}

.apm-home-hero-media {
	display: block;
	width: 100%;
	border-radius: 24px;
	aspect-ratio: 4 / 4.3;
	overflow: hidden;
	background: #102845;
	box-shadow: 0 16px 28px rgba(19, 49, 84, 0.12);
}

.apm-home-hero-media video,
.apm-home-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.apm-home-hero-poster {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.apm-home-hero-media video {
		display: none;
	}

	.apm-home-hero-poster {
		display: block;
	}
}

.apm-home-card-title {
	margin: 18px 0 10px;
	font-size: 24px;
	line-height: 1.15;
	color: #102845;
}

.apm-home-card-copy {
	margin: 0 0 18px;
	color: var(--apm-ink-soft);
	line-height: 1.7;
}

.apm-home-chip-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.apm-home-chip {
	padding: 10px 14px;
	border-radius: 999px;
	background: #f1f7ff;
	border: 1px solid rgba(82, 127, 178, 0.12);
	color: var(--apm-ink);
	font-size: 13px;
	font-weight: 600;
}

.apm-home-strip {
	padding-top: 8px;
}

.apm-home-strip-grid,
.apm-home-process-grid,
.apm-home-trust-grid,
.apm-home-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.apm-home-strip-card,
.apm-home-process-step,
.apm-home-trust-card,
.apm-home-link-card {
	padding: 24px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid var(--apm-border);
	box-shadow: 0 18px 34px rgba(21, 43, 77, 0.06);
}

.apm-home-strip-card strong,
.apm-home-strip-card span,
.apm-home-link-card strong,
.apm-home-link-card span {
	display: block;
}

.apm-home-strip-card strong,
.apm-home-link-card strong {
	margin-bottom: 8px;
	font-size: 17px;
	color: #102845;
}

.apm-home-strip-card span,
.apm-home-link-card span {
	color: var(--apm-ink-soft);
	line-height: 1.65;
}

.apm-home-section-heading {
	margin: 0 0 16px;
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #102845;
	text-align: center;
}

.apm-home-section-copy {
	max-width: 56ch;
	margin: 0 auto 46px;
	text-align: center;
	color: var(--apm-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.apm-home-offerings,
.apm-home-links {
	background: #ffffff;
}

.apm-home-offering-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.apm-home-offering {
	padding: 30px;
	border-radius: 30px;
	border: 1px solid var(--apm-border);
	background:
		radial-gradient(circle at top right, rgba(214, 232, 251, 0.75), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
	box-shadow: 0 24px 44px rgba(18, 42, 74, 0.07);
}

.apm-home-offering-mark {
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
}

.apm-home-offering h3,
.apm-home-process-step h3,
.apm-home-trust-card h3 {
	margin: 0 0 10px;
	color: #102845;
}

.apm-home-offering h3 {
	font-size: 28px;
}

.apm-home-offering p,
.apm-home-process-step p,
.apm-home-trust-card p {
	margin: 0;
	color: var(--apm-ink-soft);
	line-height: 1.7;
}

.apm-home-offering p {
	margin-bottom: 18px;
}

.apm-home-price {
	margin: 0 0 18px;
	font-size: 30px;
	font-weight: 800;
	color: #1b3b64;
}

.apm-home-list {
	margin: 0;
	padding-left: 18px;
	color: var(--apm-ink);
	line-height: 1.9;
}

.apm-home-process,
.apm-home-trust-band {
	background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.apm-home-process-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.apm-home-process-step {
	padding: 28px;
	border-radius: 28px;
	box-shadow: 0 22px 40px rgba(18, 42, 74, 0.06);
}

.apm-home-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #4c78ac 0%, #173255 100%);
	color: #ffffff;
	font-weight: 800;
}

.apm-home-trust-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apm-home-link-card {
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.apm-home-link-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 40px rgba(21, 43, 77, 0.09);
}

.apm-home-final {
	background:
		radial-gradient(circle at top left, rgba(197, 222, 247, 0.42), transparent 20%),
		linear-gradient(180deg, #eef6ff 0%, #e0edf9 100%);
}

.apm-home-final-shell {
	padding: 42px;
	border-radius: 34px;
	border: 1px solid var(--apm-border);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 28px 56px rgba(18, 42, 74, 0.1);
	text-align: center;
}

.apm-home-final-shell h2 {
	margin: 0 0 14px;
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #102845;
}

.apm-home-final-shell p {
	max-width: 42ch;
	margin: 0 auto 28px;
	color: var(--apm-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.aipm-order-landing {
	background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.aipm-order-landing-wrap {
	max-width: 920px;
}

.aipm-order-landing .aipm-order-landing-form {
	padding-top: clamp(20px, 3vw, 30px);
	padding-bottom: 24px;
}

.aipm-order-landing .aipm-order-landing-note {
	padding-top: 18px;
	padding-bottom: 70px;
	background: #ffffff;
	text-align: center;
}

.aipm-order-landing-note p {
	margin: 0;
	color: #5a7495;
	font-size: 15px;
	line-height: 1.8;
}

.apm-story-page {
	--apm-ink: #163154;
	--apm-ink-soft: #5a7495;
	--apm-cobalt: #527fb2;
	--apm-border: rgba(82, 127, 178, 0.14);
	--apm-shadow: rgba(18, 42, 74, 0.1);
	color: var(--apm-ink);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.apm-story-page *,
.apm-story-page *::before,
.apm-story-page *::after {
	box-sizing: border-box;
}

.apm-story-page section {
	padding: 60px 28px;
}

.apm-story-wrap {
	max-width: 1180px;
	margin: 0 auto;
}

.apm-story-hero {
	background:
		radial-gradient(circle at top left, rgba(192, 220, 248, 0.34), transparent 24%),
		radial-gradient(circle at 85% 10%, rgba(218, 234, 251, 0.82), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.apm-story-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	gap: 28px;
	align-items: start;
}

.apm-story-eyebrow,
.apm-story-card-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--apm-ink-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.apm-story-title,
.apm-story-heading {
	margin: 0 0 18px;
	color: #102845;
	line-height: 0.96;
	letter-spacing: -0.05em;
}

.apm-story-title {
	max-width: 12ch;
	font-size: clamp(42px, 6vw, 72px);
}

.apm-story-heading {
	font-size: clamp(34px, 5vw, 54px);
	text-align: center;
}

.apm-story-copy {
	max-width: 56ch;
	margin: 0;
	color: var(--apm-ink-soft);
	font-size: 18px;
	line-height: 1.7;
}

.apm-story-copy-centered {
	margin: 0 auto;
	text-align: center;
}

.apm-story-section-intro {
	margin-bottom: 44px;
}

.apm-story-card,
.apm-story-step,
.apm-story-media-card,
.apm-story-price-card,
.apm-story-feature-card,
.apm-story-faq-group,
.apm-story-contact-card {
	padding: 28px;
	border-radius: 28px;
	border: 1px solid var(--apm-border);
	background: #ffffff;
	box-shadow: 0 22px 40px rgba(18, 42, 74, 0.06);
}

.apm-story-card-soft,
.apm-story-price-card-primary {
	background:
		radial-gradient(circle at top right, rgba(214, 232, 251, 0.68), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.apm-story-card h2,
.apm-story-step h3,
.apm-story-media-card h2,
.apm-story-price-card h2,
.apm-story-feature-card h3,
.apm-story-faq-group h2,
.apm-story-contact-card h2,
.apm-story-cta-shell h2 {
	margin: 0 0 12px;
	color: #102845;
}

.apm-story-card h2,
.apm-story-media-card h2,
.apm-story-price-card h2 {
	font-size: 28px;
	line-height: 1.15;
}

.apm-story-card p,
.apm-story-step p,
.apm-story-media-card p,
.apm-story-price-card p,
.apm-story-feature-card p,
.apm-story-contact-card p,
.apm-story-cta-shell p {
	margin: 0;
	color: var(--apm-ink-soft);
	line-height: 1.72;
}

.apm-story-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding-left: 18px;
	color: var(--apm-ink);
	line-height: 1.82;
}

.apm-story-section-white {
	background: #ffffff;
}

.apm-story-section-soft {
	background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.apm-story-two-column,
.apm-story-pricing-grid,
.apm-story-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.apm-story-steps-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.apm-story-tribute-steps {
	margin-top: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apm-story-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #4c78ac 0%, #173255 100%);
	color: #ffffff;
	font-weight: 800;
}

.apm-story-video-frame {
	overflow: hidden;
	border-radius: 24px;
	background: #0b1627;
	box-shadow: 0 16px 30px rgba(18, 42, 74, 0.14);
	aspect-ratio: 16 / 9;
}

.apm-story-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.apm-story-caption {
	margin-top: 16px !important;
}

.apm-story-media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.apm-story-price-tag {
	margin: 0 0 18px;
	font-size: 36px;
	font-weight: 800;
	color: #1b3b64;
}

.apm-story-feature-grid,
.apm-story-contact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.apm-story-contact-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apm-story-faq-grid {
	align-items: start;
}

.apm-story-faq-item {
	padding: 18px 20px;
	border: 1px solid rgba(82, 127, 178, 0.12);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.98) 100%);
}

.apm-story-faq-item + .apm-story-faq-item {
	margin-top: 12px;
}

.apm-story-faq-item summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	color: #102845;
}

.apm-story-faq-item summary::-webkit-details-marker {
	display: none;
}

.apm-story-faq-item summary::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 22px;
	line-height: 1;
	color: #527fb2;
}

.apm-story-faq-item[open] summary::after {
	content: "−";
}

.apm-story-faq-item summary {
	display: block;
	position: relative;
	width: 100%;
	padding-right: 42px;
	line-height: 1.45;
}

.apm-story-faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	text-align: center;
	transform: translateY(-50%);
}

.apm-story-faq-item[open] summary::after {
	content: "\2212";
}

.apm-story-faq-answer p {
	margin-top: 14px;
}

.apm-story-email-link {
	color: #102845;
	text-decoration: none;
}

.apm-story-link-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.apm-story-link-list a {
	display: block;
	padding: 16px 18px;
	border-radius: 18px;
	border: 1px solid var(--apm-border);
	background: rgba(255, 255, 255, 0.92);
	color: var(--apm-ink);
	text-decoration: none;
	font-weight: 700;
}

.apm-story-cta {
	background:
		radial-gradient(circle at top left, rgba(197, 222, 247, 0.42), transparent 20%),
		linear-gradient(180deg, #eef6ff 0%, #e0edf9 100%);
}

.apm-story-cta-shell {
	padding: 42px;
	border-radius: 34px;
	border: 1px solid var(--apm-border);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 28px 56px rgba(18, 42, 74, 0.1);
	text-align: center;
}

.apm-story-cta-shell p {
	max-width: 44ch;
	margin: 0 auto 28px;
	font-size: 17px;
}

.apm-track-notice {
	margin-top: 20px;
	margin-bottom: 20px;
}

.apm-track-lookup-form {
	display: grid;
	gap: 18px;
	margin-top: 22px;
}

.apm-track-lookup-form p {
	margin: 0;
}

.apm-track-lookup-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: #102845;
}

.apm-track-lookup-form input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(84, 121, 168, 0.26);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
	color: #102845;
}

.apm-track-lookup-form input:focus {
	outline: 0;
	border-color: rgba(77, 120, 169, 0.5);
	box-shadow: 0 0 0 4px rgba(117, 164, 215, 0.16);
}

button.apm-home-button {
	border: 0;
	cursor: pointer;
	font-family: inherit;
}

.apm-track-shell {
	display: flex;
	flex-direction: column;
	padding: 32px;
	border-radius: 30px;
	border: 1px solid var(--apm-border);
	background:
		radial-gradient(circle at top right, rgba(214, 232, 251, 0.54), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 255, 1) 100%);
	box-shadow: 0 22px 48px rgba(19, 41, 72, 0.08);
}

.apm-story-page-track section.apm-track-complete-section {
	padding-top: 8px;
	padding-bottom: 36px;
}

.apm-track-shell-delivery-complete {
	padding: 0 16px 18px;
	border-radius: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.apm-track-header {
	order: -30;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
}

.apm-track-header h2 {
	margin: 0 0 10px;
	font-size: 32px;
	color: #102845;
}

.apm-track-header p {
	margin: 0;
	color: var(--apm-ink-soft);
	max-width: 48ch;
}

.apm-track-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.apm-track-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #4c78ac 0%, #173255 100%);
	box-shadow: 0 16px 30px rgba(24, 47, 81, 0.18);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.apm-track-pill-muted {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--apm-border);
	box-shadow: none;
	color: #193555;
}

.apm-track-detail-grid {
	order: 10;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.apm-track-detail-card {
	padding: 18px 20px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid var(--apm-border);
}

.apm-track-detail-card strong,
.apm-track-detail-card span {
	display: block;
}

.apm-track-detail-card strong {
	margin-bottom: 8px;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--apm-ink-soft);
}

.apm-track-detail-card span {
	color: #102845;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.apm-track-timeline {
	order: 20;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.apm-track-delivery {
	order: 40;
	display: grid;
	gap: 18px;
	margin-bottom: 24px;
}

.apm-track-delivery-copy h3 {
	margin: 0 0 10px;
	font-size: 24px;
	color: #102845;
}

.apm-track-delivery-copy p {
	margin: 0;
	max-width: 60ch;
	color: var(--apm-ink-soft);
	line-height: 1.7;
}

.apm-track-video-shell {
	width: min(100%, 1080px);
	margin: 0 auto;
	padding: 14px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--apm-border);
	box-shadow: 0 18px 34px rgba(19, 41, 72, 0.08);
}

.apm-track-shell-delivery-complete .apm-track-delivery {
	order: -10;
	margin-bottom: 18px;
}

.apm-track-shell-delivery-complete .apm-track-delivery-copy {
	display: none;
}

.apm-track-shell-delivery-complete .apm-track-video-shell {
	width: min(100%, 920px);
	padding: 8px;
	border-radius: 22px;
}

.apm-track-video-frame {
	position: relative;
	overflow: hidden;
	padding-top: 56.25%;
	border-radius: 22px;
	background: #0f2038;
}

.apm-track-video-frame iframe,
.apm-track-video-frame video {
	position: absolute !important;
	inset: 0 !important;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	border: 0;
}

.apm-track-video-frame video {
	background: #0f2038;
	object-fit: cover;
}

.apm-track-video-poster {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: #0f2038;
	cursor: pointer;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transition: opacity 420ms ease, visibility 420ms ease;
}

.apm-track-video-poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apm-track-video-poster-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	background: rgba(16, 32, 56, 0.86);
	box-shadow: 0 16px 34px rgba(15, 32, 56, 0.28);
	transform: translate(-50%, -50%);
}

.apm-track-video-poster-play::before {
	content: "";
	position: absolute;
	left: 29px;
	top: 22px;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 21px solid #fff;
}

.apm-track-video-frame.is-playing .apm-track-video-poster {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.apm-track-video-shell:fullscreen,
.apm-track-video-shell:-webkit-full-screen {
	width: 100vw;
	height: 100vh;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #0f2038;
	box-shadow: none;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

.apm-track-video-shell:fullscreen .apm-track-video-frame,
.apm-track-video-shell:-webkit-full-screen .apm-track-video-frame {
	width: 100%;
	height: 100%;
	padding-top: 0;
	border-radius: 0;
}

.apm-track-video-shell:fullscreen iframe,
.apm-track-video-shell:fullscreen video,
.apm-track-video-shell:-webkit-full-screen iframe,
.apm-track-video-shell:-webkit-full-screen video {
	width: 100%;
	height: 100%;
}

.apm-track-stage {
	padding: 20px;
	border-radius: 24px;
	border: 1px solid var(--apm-border);
	background: rgba(255, 255, 255, 0.92);
}

.apm-track-stage strong {
	display: block;
	margin-bottom: 10px;
	color: #102845;
	font-size: 17px;
}

.apm-track-stage p {
	margin: 0;
	color: var(--apm-ink-soft);
	line-height: 1.65;
}

.apm-track-stage-dot {
	display: inline-flex;
	width: 12px;
	height: 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(133, 161, 195, 0.38);
}

.apm-track-stage-complete .apm-track-stage-dot {
	background: #3f74ab;
}

.apm-track-stage-current {
	border-color: rgba(68, 109, 158, 0.28);
	box-shadow: 0 18px 34px rgba(37, 62, 98, 0.08);
}

.apm-track-stage-current .apm-track-stage-dot {
	background: #2f8f5b;
}

.apm-track-stage-attention {
	border-color: rgba(192, 120, 94, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 243, 0.98) 100%);
}

.apm-track-stage-attention .apm-track-stage-dot {
	background: #b26246;
}

.apm-track-phase {
	display: grid;
	gap: 18px;
	margin: 0 0 24px;
	padding: 24px;
	border: 1px solid var(--apm-border);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 34px rgba(19, 41, 72, 0.06);
}

.apm-track-notice {
	order: -20;
}

.apm-track-phase-stills,
.apm-track-phase-tribute {
	order: -10;
	border-color: rgba(76, 120, 172, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 100%);
	box-shadow: 0 24px 46px rgba(19, 41, 72, 0.09);
}

.apm-track-messages {
	order: 30;
}

.apm-track-feedback {
	order: 50;
}

.apm-track-feedback-details {
	order: 55;
	width: min(100%, 920px);
	margin: 0 auto 18px;
	text-align: center;
}

.apm-track-feedback-details summary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 16px 30px rgba(19, 41, 72, 0.08);
	color: #173255;
	font-weight: 800;
	list-style: none;
	cursor: pointer;
}

.apm-track-feedback-details summary::-webkit-details-marker {
	display: none;
}

.aipm-js .apm-track-feedback-details > summary {
	display: none;
}

.aipm-js .apm-track-feedback-details:not([open]) {
	margin-bottom: 0;
}

.apm-track-feedback-details .apm-track-feedback,
.apm-track-shell-delivery-complete .apm-track-feedback {
	order: 10;
	width: 100%;
	margin: 14px 0 0;
	text-align: left;
}

.apm-track-shell > .apm-home-actions {
	order: 45;
}

.apm-track-delivery-actions {
	order: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	width: min(100%, 920px);
	margin: 0 auto 12px;
	text-align: center;
}

.apm-track-delivery-actions .apm-home-button {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	font-size: 15px;
	line-height: 1.2;
}

.apm-track-download-button.is-loading {
	pointer-events: none;
	opacity: 0.82;
}

.apm-track-download-button.is-loading::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 8px;
	border: 2px solid rgba(23, 50, 85, 0.22);
	border-top-color: #173255;
	border-radius: 999px;
	animation: aipm-spin 700ms linear infinite;
}

.apm-track-download-button-disabled {
	opacity: 0.62;
	cursor: not-allowed;
	box-shadow: none;
}

.apm-track-share {
	order: 5;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 14px;
	width: min(100%, 920px);
	margin: 0 auto 18px;
	padding: 10px 14px;
	border: 1px solid rgba(82, 127, 178, 0.14);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(22, 49, 85, 0.06);
}

.apm-track-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 32px;
	padding: 5px 8px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #627692;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.apm-track-share-button:hover {
	background: rgba(86, 128, 179, 0.1);
	color: #173255;
	transform: translateY(-1px);
	text-decoration: none;
}

.apm-track-share-icon {
	display: inline-flex;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	color: currentColor;
}

.apm-track-share-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.apm-track-share-button-whatsapp {
	color: #2f8f5b;
}

.apm-track-share-button-facebook {
	color: #3567a8;
}

.apm-track-share-button-facebook .apm-track-share-icon svg {
	fill: currentColor;
	stroke: none;
}

.apm-track-share-button.is-copied {
	color: #22553a;
}

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

.apm-track-stills-form,
.apm-track-feedback-form,
.apm-track-message-form,
.apm-track-tribute-form {
	display: grid;
	gap: 18px;
}

.apm-track-stills-form > .apm-home-button,
.apm-track-tribute-form > .apm-home-button,
.apm-track-message-form > .apm-home-button,
.apm-track-feedback-form > .apm-home-button {
	justify-self: start;
	min-width: min(100%, 260px);
}

.apm-track-message-thread {
	display: grid;
	gap: 14px;
}

.apm-track-message {
	max-width: min(760px, 100%);
	padding: 18px;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 16px 30px rgba(19, 41, 72, 0.06);
}

.apm-track-message-admin {
	margin-right: auto;
	border-color: rgba(82, 127, 178, 0.24);
}

.apm-track-message-customer {
	margin-left: auto;
	background: linear-gradient(180deg, rgba(234, 244, 255, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.apm-track-message header {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: baseline;
	margin-bottom: 10px;
}

.apm-track-message header strong {
	color: #102845;
	font-size: 15px;
}

.apm-track-message header time {
	color: var(--apm-ink-soft);
	font-size: 12px;
	font-weight: 700;
}

.apm-track-message p {
	margin: 0;
	color: #223a5c;
	line-height: 1.7;
}

.apm-track-message-attachments {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.apm-track-message-media,
.apm-track-message-file {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 18px;
	background: #f8fbff;
	color: #173255;
	font-weight: 800;
	text-decoration: none;
}

.apm-track-message-image img,
.apm-track-message-video video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.apm-track-message-video a,
.apm-track-message-file {
	padding: 12px 14px;
}

.apm-track-message-form {
	padding-top: 4px;
	border-top: 1px solid rgba(82, 127, 178, 0.12);
}

.apm-track-message-form p {
	margin: 0;
}

.apm-track-stills-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.apm-track-still-card {
	position: relative;
	display: grid;
	overflow: hidden;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 34px rgba(19, 41, 72, 0.07);
}

.apm-track-still-card.is-selected {
	border-color: rgba(45, 92, 143, 0.45);
	box-shadow: 0 22px 42px rgba(19, 41, 72, 0.13);
}

.apm-track-still-image {
	display: block;
	aspect-ratio: 16 / 10;
	background: #eaf4ff;
}

.apm-track-still-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apm-track-still-meta {
	display: grid;
	gap: 8px;
	padding: 14px 14px 10px;
}

.apm-track-still-meta input {
	width: auto;
	margin: 0;
}

.apm-track-still-meta label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #173255;
	font-weight: 800;
}

.apm-track-still-meta strong,
.apm-track-still-meta span,
.apm-track-still-meta em {
	display: block;
}

.apm-track-still-meta strong {
	color: #102845;
	font-size: 15px;
}

.apm-track-still-meta span {
	color: var(--apm-ink-soft);
	font-size: 13px;
	line-height: 1.45;
}

.apm-track-still-meta em {
	justify-self: start;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(82, 127, 178, 0.12);
	color: #254b79;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.apm-track-still-download {
	display: block;
	padding: 0 14px 14px;
	color: #173255;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.apm-track-phase-note {
	margin: 0;
	color: var(--apm-ink-soft);
	font-weight: 700;
}

.apm-track-tribute-text {
	padding: 18px;
	border: 1px solid rgba(82, 127, 178, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--apm-ink);
	line-height: 1.7;
}

.apm-track-feedback-form p {
	margin: 0;
}

.apm-track-feedback-form label,
.apm-track-message-form label,
.apm-track-tribute-form label,
.apm-track-feedback-consent {
	display: block;
	margin-bottom: 8px;
	color: #102845;
	font-weight: 700;
}

.apm-track-feedback-form select,
.apm-track-feedback-form textarea,
.apm-track-message-form textarea,
.apm-track-tribute-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(84, 121, 168, 0.26);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	color: #102845;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.7;
}

.apm-track-feedback-form textarea,
.apm-track-message-form textarea {
	min-height: 120px;
	resize: vertical;
}

.apm-track-tribute-form textarea {
	min-height: 360px;
	resize: vertical;
}

.apm-track-feedback-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	color: var(--apm-ink-soft);
	font-weight: 600;
	line-height: 1.55;
}

.apm-track-feedback-consent input {
	margin-top: 4px;
}

@media (max-width: 960px) {
	.apm-home-hero-grid,
	.apm-home-offering-grid,
	.apm-home-process-grid,
	.apm-home-trust-grid,
	.apm-home-strip-grid,
	.apm-home-links-grid,
	.apm-story-hero-grid,
	.apm-story-two-column,
	.apm-story-pricing-grid,
	.apm-story-faq-grid,
	.apm-story-media-grid,
	.apm-story-steps-grid,
	.apm-story-feature-grid,
	.apm-story-contact-grid,
	.apm-track-detail-grid,
	.apm-track-timeline,
	.apm-track-stills-grid,
	.apm-track-message-attachments {
		grid-template-columns: 1fr;
	}

	.apm-track-header,
	.apm-track-badges {
		flex-direction: column;
		align-items: flex-start;
	}

	.apm-track-delivery-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.apm-home-page section,
	.aipm-order-landing section,
	.apm-story-page section {
		padding: 48px 20px;
	}

	.apm-home-headline,
	.aipm-order-landing-title,
	.apm-story-title,
	.apm-story-heading {
		max-width: none;
		font-size: 44px;
	}

	.apm-home-subcopy,
	.apm-home-section-copy,
	.apm-home-final-shell p,
	.aipm-order-landing-copy,
	.apm-story-copy,
	.apm-story-cta-shell p {
		font-size: 16px;
	}

	.apm-home-hero-card,
	.apm-home-offering,
	.apm-home-process-step,
	.apm-home-strip-card,
	.apm-home-trust-card,
	.apm-home-link-card,
	.apm-home-final-shell,
	.apm-story-card,
	.apm-story-step,
	.apm-story-media-card,
	.apm-story-price-card,
	.apm-story-feature-card,
	.apm-story-faq-group,
	.apm-story-contact-card,
	.apm-story-cta-shell {
		padding: 24px;
		border-radius: 24px;
	}

	.apm-home-brand-band {
		flex-direction: column;
		align-items: flex-start;
	}

	.apm-home-brand-band .apm-home-lockup {
		width: min(100%, 220px);
	}

	.apm-track-shell-delivery-complete {
		padding-inline: 0;
	}

	.apm-track-delivery-actions {
		gap: 10px;
		margin-bottom: 10px;
	}

	.apm-track-delivery-actions .apm-home-button {
		min-height: 48px;
		padding-inline: 12px;
		font-size: 13px;
	}

	.apm-track-share {
		gap: 6px 10px;
		margin-bottom: 12px;
		padding: 9px 10px;
		border-radius: 18px;
	}

	.apm-track-share-button {
		min-height: 30px;
		padding: 5px 7px;
		font-size: 13px;
	}

	.apm-track-share-icon {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
	}
}
