:root {
	--wpt3-ink: #111815;
	--wpt3-ink-soft: #26302b;
	--wpt3-night: #07110e;
	--wpt3-paper: #f2eee4;
	--wpt3-paper-soft: #e7e1d5;
	--wpt3-white: #fffdf7;
	--wpt3-signal: #f4bb32;
	--wpt3-signal-dark: #d79d13;
	--wpt3-marine: #22a6a1;
	--wpt3-marine-dark: #0b5d62;
	--wpt3-training: #f05a3c;
	--wpt3-training-dark: #9f2d1c;
	--wpt3-line: rgba(17, 24, 21, .18);
	--wpt3-line-light: rgba(255, 253, 247, .18);
	--wpt3-sans: "Inter", Arial, sans-serif;
	--wpt3-serif: "Playfair Display", Georgia, serif;
	--wpt3-mono: var(--wpt3-sans);
	--wpt3-radius-sm: 12px;
	--wpt3-radius-md: 18px;
	--wpt3-radius-lg: 26px;
	--wpt3-radius-pill: 999px;
	--wpt3-shadow: 0 24px 70px rgba(5, 13, 10, .14);
	--wpt3-shadow-soft: 0 12px 34px rgba(5, 13, 10, .08);
}

html { scroll-behavior: smooth; }

.wpt3 section[id],
.wpt3 [id].wpt3-form-card { scroll-margin-top: 94px; }

body.wpt3 {
	margin: 0;
	background: var(--wpt3-paper);
	color: var(--wpt3-ink);
	font-family: var(--wpt3-sans);
	-webkit-font-smoothing: antialiased;
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact;
	overflow-x: hidden;
}

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

.wpt3 img { display: block; width: 100%; }
.wpt3 a:not(.wpt3-button) { color: inherit; }
.wpt3 button,
.wpt3 input,
.wpt3 textarea,
.wpt3 select { font: inherit; }

.wpt3 h1,
.wpt3 h2,
.wpt3 h3,
.wpt3 h4,
.wpt3 p,
.wpt3 ul { margin-top: 0; }

.wpt3 h1,
.wpt3 h2,
.wpt3 h3,
.wpt3 h4 { color: inherit; line-height: 1.02; }

.wpt3 h1,
.wpt3 h2 { letter-spacing: -.04em; }

.wpt3 p { line-height: 1.55; }

.wpt3-shell {
	width: min(100% - 48px, 1240px);
	margin-inline: auto;
}

.wpt3-skip {
	position: fixed;
	left: 16px;
	top: -100px;
	z-index: 1000;
	padding: 12px 16px;
	border-radius: var(--wpt3-radius-sm);
	background: var(--wpt3-signal);
	color: var(--wpt3-ink);
	font-family: var(--wpt3-mono);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.wpt3-skip:focus { top: 12px; }

.wpt3-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 76px;
	border-bottom: 1px solid transparent;
	color: var(--wpt3-white);
	transition: background-color .2s ease, border-color .2s ease;
}

.wpt3-header.is-scrolled {
	background: rgba(7, 17, 14, .94);
	border-color: var(--wpt3-line-light);
	backdrop-filter: blur(14px);
}

.wpt3-header.is-solid {
	background: rgba(7, 17, 14, .98);
	border-color: var(--wpt3-line-light);
}

.wpt3-header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.wpt3-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex: 0 0 auto;
}

.wpt3-brand-logo {
	width: auto;
	height: 31px;
	object-fit: contain;
}

.wpt3-brand-divider {
	width: 1px;
	height: 20px;
	margin-left: 2px;
	background: currentColor;
	opacity: .38;
}

.wpt3-brand-suffix {
	font-family: var(--wpt3-serif);
	font-size: 16px;
	font-style: italic;
	opacity: .84;
}

.wpt3-nav-wrap,
.wpt3-nav {
	display: flex;
	align-items: center;
}

.wpt3-nav-wrap { gap: 30px; }
.wpt3-nav { gap: 25px; }

.wpt3-nav a,
.wpt3-footer nav a,
.wpt3-footer-parent {
	text-decoration: none;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .78;
	transition: opacity .18s ease;
}

.wpt3-nav a:hover,
.wpt3-nav a:focus,
.wpt3-footer nav a:hover,
.wpt3-footer nav a:focus { opacity: 1; }

.wpt3-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	background: none;
	border: 0;
	color: inherit;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
}

.wpt3-menu-toggle i {
	position: relative;
	width: 22px;
	height: 12px;
	border-top: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
}

.wpt3-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid var(--wpt3-signal);
	border-radius: var(--wpt3-radius-sm);
	background: var(--wpt3-signal);
	color: var(--wpt3-ink);
	text-decoration: none;
	font-family: var(--wpt3-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.wpt3-button:hover,
.wpt3-button:focus {
	background: var(--wpt3-signal-dark);
	border-color: var(--wpt3-signal-dark);
	color: var(--wpt3-ink);
	transform: translateY(-2px);
}

.wpt3-button i {
	font-size: .9em;
	line-height: 1;
}

.wpt3-button:focus-visible,
.wpt3-nav a:focus-visible,
.wpt3-route-card:focus-visible,
.wpt3-text-link:focus-visible {
	outline: 3px solid var(--wpt3-signal);
	outline-offset: 4px;
}

.wpt3-button-small {
	min-height: 40px;
	padding-inline: 16px;
	gap: 12px;
	font-size: 9px;
}

.wpt3-button-ghost {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.wpt3-button-ghost:hover,
.wpt3-button-ghost:focus {
	background: var(--wpt3-white);
	border-color: var(--wpt3-white);
	color: var(--wpt3-ink);
}

.wpt3-button-dark {
	background: var(--wpt3-ink);
	border-color: var(--wpt3-ink);
	color: var(--wpt3-white);
}

.wpt3-button-dark:hover,
.wpt3-button-dark:focus {
	background: #000;
	border-color: #000;
	color: var(--wpt3-white);
}

.wpt3-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.wpt3-kicker::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.wpt3-index {
	display: block;
	margin-bottom: 18px;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .62;
}

.wpt3-section {
	position: relative;
	padding: 104px 0;
}

.wpt3-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
	gap: 56px;
	align-items: end;
	margin-bottom: 50px;
}

.wpt3-section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(42px, 5.6vw, 76px);
	font-weight: 600;
	max-width: 900px;
}

.wpt3-section-heading p {
	margin-bottom: 0;
	font-size: 17px;
	max-width: 520px;
}

.wpt3-serif { font-family: var(--wpt3-serif); font-weight: 500; }
.wpt3-serif-italic { font-family: var(--wpt3-serif); font-style: italic; font-weight: 500; }

.wpt3-hero {
	position: relative;
	min-height: 760px;
	padding: 155px 0 94px;
	background: var(--wpt3-night);
	color: var(--wpt3-white);
	overflow: hidden;
}

.wpt3-hero::before,
.wpt3-dark-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 253, 247, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 253, 247, .055) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.wpt3-hero::after {
	content: "";
	position: absolute;
	left: max(24px, calc((100vw - 1240px) / 2));
	right: max(24px, calc((100vw - 1240px) / 2));
	bottom: 32px;
	height: 1px;
	background: var(--wpt3-line-light);
}

.wpt3-hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
	gap: 72px;
	align-items: center;
}

.wpt3-hero-copy h1 {
	margin-bottom: 30px;
	font-size: clamp(58px, 7.2vw, 104px);
	font-weight: 600;
	line-height: .96;
	max-width: 830px;
}

.wpt3-hero-copy > p {
	margin-bottom: 34px;
	max-width: 650px;
	color: rgba(255, 253, 247, .72);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
}

.wpt3-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wpt3-terms-line {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 38px;
}

.wpt3-terms-line span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 12px;
	border: 1px solid var(--wpt3-line-light);
	border-radius: var(--wpt3-radius-pill);
	font-family: var(--wpt3-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.wpt3-hero-visual {
	position: relative;
	min-height: 520px;
}

.wpt3-photo-frame {
	position: absolute;
	overflow: hidden;
	border: 1px solid rgba(255, 253, 247, .26);
	border-radius: var(--wpt3-radius-lg);
	background: var(--wpt3-ink-soft);
	box-shadow: var(--wpt3-shadow);
}

.wpt3-photo-frame img {
	height: 100%;
	object-fit: cover;
	filter: saturate(.84) contrast(1.03);
}

.wpt3-photo-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 17, 14, .5), transparent 55%);
	pointer-events: none;
}

.wpt3-photo-marine {
	z-index: 1;
	inset: 0 92px 92px 0;
}

.wpt3-photo-training {
	z-index: 2;
	width: 52%;
	height: 51%;
	right: 0;
	bottom: 0;
	border-color: var(--wpt3-signal);
}

.wpt3-photo-training img { object-position: 58% center; }

.wpt3-photo-caption {
	position: absolute;
	z-index: 3;
	left: 18px;
	right: 18px;
	bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--wpt3-white);
	font-family: var(--wpt3-mono);
	font-size: 9px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wpt3-photo-caption span:last-child { opacity: .64; }

.wpt3-coordinate {
	position: absolute;
	z-index: 4;
	top: 36px;
	right: -28px;
	writing-mode: vertical-rl;
	font-family: var(--wpt3-mono);
	font-size: 9px;
	letter-spacing: .13em;
	text-transform: uppercase;
	opacity: .55;
}

.wpt3-route-section {
	background: var(--wpt3-paper);
	border-bottom: 1px solid var(--wpt3-line);
}

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

.wpt3-route-heading { grid-template-columns: 1fr; }

.wpt3-route-card {
	position: relative;
	min-height: 580px;
	overflow: hidden;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-lg);
	color: var(--wpt3-white);
	text-decoration: none;
	box-shadow: var(--wpt3-shadow-soft);
}

.wpt3 a.wpt3-route-card,
.wpt3 a.wpt3-route-card:hover,
.wpt3 a.wpt3-route-card:focus { color: var(--wpt3-white); }

.wpt3-route-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2, .75, .2, 1), filter .3s ease;
}

.wpt3-route-card-training img { object-position: 48% center; }

.wpt3-route-card::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 17, 14, .08) 0%, rgba(7, 17, 14, .88) 92%);
}

.wpt3-route-card::after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: var(--wpt3-radius-md);
	pointer-events: none;
}

.wpt3-route-card:hover img,
.wpt3-route-card:focus img {
	transform: scale(1.035);
	filter: saturate(1.08);
}

.wpt3-route-content {
	position: absolute;
	z-index: 3;
	left: 52px;
	right: 52px;
	bottom: 48px;
}

.wpt3-route-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 253, 247, .46);
	border-radius: var(--wpt3-radius-pill);
	background: rgba(7, 17, 14, .42);
	color: var(--wpt3-white);
	font-size: 17px;
	backdrop-filter: blur(8px);
}

.wpt3-route-number {
	display: block;
	margin-bottom: 18px;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.wpt3-route-content h3 {
	margin-bottom: 13px;
	color: var(--wpt3-white);
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 600;
	letter-spacing: -.05em;
}

.wpt3-route-content p {
	max-width: 470px;
	margin-bottom: 25px;
	color: rgba(255, 253, 247, .78);
	font-size: 16px;
}

.wpt3-text-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid currentColor;
	padding-bottom: 5px;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wpt3-system-section {
	background: var(--wpt3-white);
	border-bottom: 1px solid var(--wpt3-line);
}

.wpt3-about-section {
	background: var(--wpt3-white);
	border-bottom: 1px solid var(--wpt3-line);
}

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

.wpt3-about-card { min-height: 300px; }

.wpt3-team-section {
	background: var(--wpt3-white);
	border-bottom: 1px solid var(--wpt3-line);
}

.wpt3-team-layout {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	gap: 72px;
	align-items: center;
}

.wpt3-team-copy h2 {
	max-width: 760px;
	margin-bottom: 22px;
	font-size: clamp(44px, 5.4vw, 72px);
	font-weight: 600;
	letter-spacing: -.045em;
}

.wpt3-team-copy p {
	max-width: 680px;
	margin-bottom: 0;
	color: rgba(17, 24, 21, .7);
	font-size: 17px;
}

.wpt3-team-roles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpt3-team-roles li {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 138px;
	padding: 20px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
	background: var(--wpt3-paper);
}

.wpt3-team-roles .wpt3-icon-badge {
	width: 38px;
	height: 38px;
	margin-bottom: 24px;
	background: var(--wpt3-white);
	font-size: 14px;
}

.wpt3-team-roles strong {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -.01em;
}

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

.wpt3-system-step {
	min-height: 310px;
	padding: 30px 28px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
	background: var(--wpt3-white);
}

.wpt3-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 42px;
}

.wpt3-card-meta .wpt3-index,
.wpt3-card-meta .wpt3-build-code { margin-bottom: 0; }

.wpt3-icon-badge {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border: 1px solid var(--wpt3-line);
	border-radius: 13px;
	background: var(--wpt3-paper);
	color: var(--wpt3-ink);
	font-size: 16px;
}

.wpt3-marine .wpt3-icon-badge { color: var(--wpt3-marine-dark); }
.wpt3-training .wpt3-icon-badge { color: var(--wpt3-training-dark); }

.wpt3-system-step h3 {
	margin-bottom: 14px;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -.03em;
}

.wpt3-system-step p {
	margin-bottom: 0;
	color: rgba(17, 24, 21, .69);
	font-size: 14px;
}

.wpt3-pricing-section {
	background: var(--wpt3-ink);
	color: var(--wpt3-white);
}

.wpt3-price-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: end;
	margin-bottom: 54px;
}

.wpt3-price-intro h2 {
	margin-bottom: 0;
	font-size: clamp(46px, 6vw, 80px);
	max-width: 800px;
}

.wpt3-price-intro p {
	margin-bottom: 0;
	max-width: 390px;
	color: rgba(255, 253, 247, .66);
}

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

.wpt3-price-card {
	position: relative;
	min-height: 610px;
	padding: 34px;
	overflow: hidden;
	border: 1px solid var(--wpt3-line-light);
	border-radius: var(--wpt3-radius-md);
}

.wpt3-price-card-featured {
	background: var(--wpt3-white);
	color: var(--wpt3-ink);
	box-shadow: var(--wpt3-shadow-soft);
}

.wpt3-price-card-featured::before {
	content: "Best fit";
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 8px 11px;
	border-radius: var(--wpt3-radius-pill);
	background: var(--wpt3-signal);
	font-family: var(--wpt3-mono);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.wpt3-price-name {
	display: block;
	margin-bottom: 28px;
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.wpt3-price {
	margin-bottom: 22px;
	font-size: 56px;
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: 1;
}

.wpt3-price sup {
	top: -.8em;
	margin-right: 4px;
	font-family: var(--wpt3-mono);
	font-size: 14px;
}

.wpt3-price small {
	font-family: var(--wpt3-mono);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .62;
}

.wpt3-price-promise {
	display: block;
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.35;
}

.wpt3-price-summary {
	min-height: 92px;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	line-height: 1.5;
	opacity: .74;
}

.wpt3-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpt3-feature-list li {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	margin-bottom: 13px;
	font-size: 13px;
	line-height: 1.5;
}

.wpt3-feature-list li i {
	margin-top: 4px;
	color: var(--wpt3-signal);
	font-size: 10px;
}

.wpt3-pricing-note {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 24px;
	overflow: hidden;
	border: 1px solid var(--wpt3-line-light);
	border-radius: var(--wpt3-radius-md);
}

.wpt3-pricing-note span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 17px 18px;
	text-align: center;
	font-family: var(--wpt3-mono);
	font-size: 9px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.wpt3-pricing-note i {
	color: var(--wpt3-signal);
	font-size: 11px;
}

.wpt3-marine .wpt3-feature-list li i,
.wpt3-marine .wpt3-pricing-note i { color: var(--wpt3-marine); }

.wpt3-training .wpt3-feature-list li i,
.wpt3-training .wpt3-pricing-note i { color: var(--wpt3-training); }

.wpt3-pricing-note span + span { border-left: 1px solid var(--wpt3-line-light); }

.wpt3-advanced-box {
	display: grid;
	grid-template-columns: minmax(210px, .52fr) minmax(0, 1.48fr);
	gap: 28px 48px;
	margin-top: 32px;
	padding: 28px;
	border: 1px solid var(--wpt3-line-light);
	border-radius: var(--wpt3-radius-md);
	background: rgba(255, 253, 247, .025);
}

.wpt3-advanced-header {
	max-width: 330px;
}

.wpt3-advanced-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 20px;
	border: 1px solid var(--wpt3-line-light);
	border-radius: 12px;
	background: rgba(255, 253, 247, .06);
	color: var(--wpt3-accent);
	font-size: 12px;
}

.wpt3-advanced-header .wpt3-index {
	margin-bottom: 10px;
	color: rgba(255, 253, 247, .56);
}

.wpt3-advanced-header h3 {
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.15;
}

.wpt3-advanced-header p {
	margin: 0;
	color: rgba(255, 253, 247, .68);
	font-size: 13px;
}

.wpt3-advanced-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.wpt3-advanced-card {
	min-width: 0;
}

.wpt3-advanced-card-icon {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin-bottom: 13px;
	border: 1px solid var(--wpt3-line-light);
	border-radius: 10px;
	background: rgba(255, 253, 247, .06);
	color: var(--wpt3-accent);
	font-size: 11px;
}

.wpt3-advanced-card h4 {
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.25;
}

.wpt3-advanced-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpt3-advanced-card li {
	display: grid;
	grid-template-columns: 13px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	padding: 0 0 9px;
	color: rgba(255, 253, 247, .72);
	font-size: 12px;
	line-height: 1.4;
}

.wpt3-advanced-card li i {
	margin-top: 4px;
	color: var(--wpt3-accent);
	font-size: 8px;
}

.wpt3-advanced-footer {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid var(--wpt3-line-light);
	color: rgba(255, 253, 247, .56);
}

.wpt3-advanced-footer i {
	color: var(--wpt3-accent);
	font-size: 13px;
}

.wpt3-advanced-footer p {
	margin: 0;
	font-size: 12px;
}

.wpt3-proof-section {
	background: var(--wpt3-paper-soft);
	border-bottom: 1px solid var(--wpt3-line);
}

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

.wpt3-proof-card {
	min-height: 360px;
	padding: 32px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
	background: rgba(255, 253, 247, .34);
}

.wpt3-proof-result {
	display: block;
	margin-bottom: 42px;
	font-family: var(--wpt3-sans);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.18;
}

.wpt3-proof-icon { margin-bottom: 24px; }

.wpt3-proof-card blockquote {
	margin: 0 0 28px;
	padding: 0;
	border: 0;
	color: var(--wpt3-ink);
	font-size: 15px;
	line-height: 1.55;
}

.wpt3-proof-person {
	font-family: var(--wpt3-mono);
	font-size: 9px;
	line-height: 1.7;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wpt3-proof-person strong { display: block; font-size: 10px; }

.wpt3-final {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background: var(--wpt3-signal);
	color: var(--wpt3-ink);
}

.wpt3-final::after {
	content: "↗";
	position: absolute;
	right: -35px;
	bottom: -150px;
	font-family: var(--wpt3-serif);
	font-size: 380px;
	line-height: 1;
	opacity: .12;
}

.wpt3-final-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: end;
}

.wpt3-final h2 {
	margin-bottom: 18px;
	font-size: clamp(52px, 7vw, 92px);
	max-width: 890px;
}

.wpt3-final p {
	max-width: 660px;
	margin-bottom: 0;
	font-size: 18px;
}

.wpt3-footer {
	padding: 58px 0 26px;
	background: var(--wpt3-night);
	color: var(--wpt3-white);
}

.wpt3-footer-top,
.wpt3-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.wpt3-footer-top {
	align-items: flex-start;
	padding-bottom: 48px;
}

.wpt3-brand-footer { color: var(--wpt3-white); }

.wpt3-footer-top > p {
	max-width: 430px;
	margin-bottom: 0;
	color: rgba(255, 253, 247, .66);
	font-family: var(--wpt3-serif);
	font-size: 20px;
	line-height: 1.45;
}

.wpt3-footer-bottom {
	align-items: center;
	padding-top: 22px;
	border-top: 1px solid var(--wpt3-line-light);
}

.wpt3-footer-bottom > p {
	margin-bottom: 0;
	color: rgba(255, 253, 247, .52);
	font-family: var(--wpt3-mono);
	font-size: 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wpt3-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

/* Vertical pages */
.wpt3-marine { --wpt3-accent: var(--wpt3-marine); }
.wpt3-training { --wpt3-accent: var(--wpt3-training); }

.wpt3-vertical-hero {
	position: relative;
	min-height: 790px;
	padding: 158px 0 82px;
	background: var(--wpt3-night);
	color: var(--wpt3-white);
	overflow: hidden;
}

.wpt3-vertical-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 253, 247, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 253, 247, .05) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to right, #000 0%, transparent 70%);
}

.wpt3-vertical-hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
	gap: 68px;
	align-items: center;
}

.wpt3-vertical-hero h1 {
	margin-bottom: 28px;
	font-size: clamp(58px, 7vw, 102px);
	font-weight: 600;
	line-height: .96;
}

.wpt3-marine .wpt3-vertical-hero h1 em {
	font-family: var(--wpt3-serif);
	font-weight: 500;
	color: #7dd7d1;
}

.wpt3-training .wpt3-vertical-hero h1 em {
	font-family: var(--wpt3-serif);
	font-weight: 500;
	color: #ff8f72;
}

.wpt3-vertical-hero-copy {
	max-width: 640px;
	margin-bottom: 34px;
	color: rgba(255, 253, 247, .72);
	font-size: 18px;
}

.wpt3-vertical-visual {
	position: relative;
	min-height: 535px;
}

.wpt3-vertical-photo {
	position: absolute;
	inset: 0 0 40px 40px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: var(--wpt3-radius-lg);
	box-shadow: var(--wpt3-shadow);
}

.wpt3-vertical-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 17, 14, .7), transparent 58%);
}

.wpt3-vertical-photo img {
	height: 100%;
	object-fit: cover;
}

.wpt3-training .wpt3-vertical-photo img { object-position: 48% center; }

.wpt3-vertical-data {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	width: 76%;
	padding: 22px 24px;
	border: 1px solid var(--wpt3-accent);
	border-radius: var(--wpt3-radius-md);
	background: var(--wpt3-night);
	box-shadow: var(--wpt3-shadow-soft);
}

.wpt3-vertical-data strong {
	display: block;
	margin-bottom: 8px;
	font-size: 20px;
	letter-spacing: -.02em;
}

.wpt3-vertical-data span {
	font-family: var(--wpt3-mono);
	font-size: 9px;
	letter-spacing: .085em;
	text-transform: uppercase;
	opacity: .65;
}

.wpt3-decision-section {
	background: var(--wpt3-white);
	border-bottom: 1px solid var(--wpt3-line);
}

.wpt3-decision-grid {
	display: grid;
	grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
	gap: 16px;
}

.wpt3-decision-lead {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 510px;
	padding: 38px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-lg);
	background: var(--wpt3-ink);
	color: var(--wpt3-white);
}

.wpt3-decision-lead h2 {
	margin-bottom: 0;
	font-size: clamp(46px, 5.3vw, 72px);
}

.wpt3-decision-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.wpt3-decision {
	min-height: 255px;
	padding: 32px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
}

.wpt3-decision h3 {
	margin-bottom: 13px;
	font-size: 23px;
	letter-spacing: -.025em;
}

.wpt3-decision p {
	margin-bottom: 0;
	color: rgba(17, 24, 21, .67);
	font-size: 14px;
}

.wpt3-build-section { background: var(--wpt3-paper); }

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

.wpt3-build-card {
	min-height: 330px;
	padding: 34px 30px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
}

.wpt3-build-card:nth-child(4),
.wpt3-build-card:nth-child(5),
.wpt3-build-card:nth-child(6) { background: var(--wpt3-white); }

.wpt3-build-card h3 {
	margin-bottom: 15px;
	font-size: 27px;
	font-weight: 600;
	letter-spacing: -.035em;
}

.wpt3-build-card p {
	margin-bottom: 0;
	color: rgba(17, 24, 21, .68);
	font-size: 14px;
}

.wpt3-build-code {
	display: block;
	margin-bottom: 56px;
	color: var(--wpt3-accent);
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.wpt3-card-meta-build { margin-bottom: 48px; }

.wpt3-process-section {
	background: var(--wpt3-paper-soft);
	border-top: 1px solid var(--wpt3-line);
	border-bottom: 1px solid var(--wpt3-line);
}

.wpt3-process-layout {
	display: grid;
	grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr);
	gap: 80px;
}

.wpt3-process-copy h2 {
	margin-bottom: 24px;
	font-size: clamp(44px, 5vw, 70px);
}

.wpt3-process-copy p { max-width: 440px; }

.wpt3-process-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpt3-process-list li {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 24px;
	padding: 22px 24px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-md);
	background: rgba(255, 253, 247, .42);
}

.wpt3-process-list strong {
	font-size: 18px;
	letter-spacing: -.02em;
}

.wpt3-process-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var(--wpt3-white);
	color: var(--wpt3-marine-dark);
	font-size: 15px;
	box-shadow: var(--wpt3-shadow-soft);
}

.wpt3-process-list p {
	margin: 7px 0 0;
	color: rgba(17, 24, 21, .66);
	font-size: 14px;
}

.wpt3-marine .wpt3-button-accent {
	background: var(--wpt3-marine);
	border-color: var(--wpt3-marine);
	color: var(--wpt3-night);
}

.wpt3-training .wpt3-button-accent {
	background: var(--wpt3-training);
	border-color: var(--wpt3-training);
	color: var(--wpt3-white);
}

.wpt3-marine .wpt3-button-accent:hover,
.wpt3-marine .wpt3-button-accent:focus {
	background: #40beb8;
	border-color: #40beb8;
}

.wpt3-training .wpt3-button-accent:hover,
.wpt3-training .wpt3-button-accent:focus {
	background: #ff7658;
	border-color: #ff7658;
	color: var(--wpt3-white);
}

.wpt3-vertical-final { background: var(--wpt3-accent); }
.wpt3-training .wpt3-vertical-final { color: var(--wpt3-white); }

/* Forms and simple pages */
.wpt3-simple {
	min-height: 100vh;
	padding: 150px 0 100px;
	background: var(--wpt3-paper);
}

.wpt3-simple-layout {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
	gap: 78px;
	align-items: start;
}

.wpt3-simple-copy { padding-top: 30px; }

.wpt3-simple-copy h1 {
	margin-bottom: 24px;
	font-size: clamp(52px, 6vw, 82px);
}

.wpt3-simple-copy > p {
	max-width: 580px;
	font-size: 18px;
}

.wpt3-simple-points {
	margin: 34px 0 0;
	padding: 0;
	border-top: 1px solid var(--wpt3-line);
	list-style: none;
}

.wpt3-simple-points li {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 15px 0;
	border-bottom: 1px solid var(--wpt3-line);
	font-family: var(--wpt3-mono);
	font-size: 10px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.wpt3-simple-points li i {
	width: 16px;
	color: var(--wpt3-signal-dark);
	font-size: 13px;
	text-align: center;
}

.wpt3-marine .wpt3-simple-points li i { color: var(--wpt3-marine-dark); }
.wpt3-training .wpt3-simple-points li i { color: var(--wpt3-training-dark); }

.wpt3-form-card {
	padding: 38px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-lg);
	background: var(--wpt3-white);
	box-shadow: var(--wpt3-shadow);
}

.wpt3-form-card h2 {
	margin-bottom: 12px;
	font-size: 35px;
}

.wpt3-form-card > p {
	margin-bottom: 30px;
	color: rgba(17, 24, 21, .67);
}

.wpt3-form label {
	display: block;
	margin: 0 0 7px;
	color: var(--wpt3-ink);
	font-family: var(--wpt3-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wpt3-form label span { opacity: .5; }

.wpt3-form input,
.wpt3-form textarea,
.wpt3-form select {
	width: 100%;
	height: auto;
	min-height: 52px;
	margin: 0 0 19px;
	padding: 13px 14px;
	border: 1px solid rgba(17, 24, 21, .26);
	border-radius: var(--wpt3-radius-sm);
	background: var(--wpt3-paper);
	box-shadow: none;
	color: var(--wpt3-ink);
}

.wpt3-form textarea { min-height: 132px; resize: vertical; }

.wpt3-form input:focus,
.wpt3-form textarea:focus,
.wpt3-form select:focus {
	border-color: var(--wpt3-ink);
	background: var(--wpt3-white);
	box-shadow: 0 0 0 2px rgba(244, 187, 50, .45);
}

.wpt3-form .wpt3-button {
	width: 100%;
	border: 0;
	cursor: pointer;
}

.wpt3-form-note {
	margin: 13px 0 0;
	text-align: center;
	font-family: var(--wpt3-mono);
	font-size: 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .56;
}

.wpt3-hidden-field {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.wpt3-form-error {
	margin-bottom: 24px;
	padding: 16px;
	border: 1px solid var(--wpt3-training);
	border-radius: var(--wpt3-radius-sm);
	background: rgba(240, 90, 60, .08);
	font-size: 13px;
}

.wpt3-form-error ul { margin: 8px 0 0 20px; }

.wpt3-thanks {
	display: grid;
	place-items: center;
	min-height: calc(100vh - 190px);
	text-align: center;
}

.wpt3-thanks-card {
	max-width: 800px;
	padding: 70px 46px;
	border: 1px solid var(--wpt3-line);
	border-radius: var(--wpt3-radius-lg);
	background: var(--wpt3-white);
	box-shadow: var(--wpt3-shadow-soft);
}

.wpt3-thanks-marker {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin: 0 auto 28px;
	border: 1px solid var(--wpt3-ink);
	border-radius: var(--wpt3-radius-pill);
	font-family: var(--wpt3-serif);
	font-size: 24px;
}

.wpt3-thanks h1 { font-size: clamp(48px, 6vw, 78px); }
.wpt3-thanks p { max-width: 620px; margin: 0 auto 30px; font-size: 18px; }
.wpt3-thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

@media (max-width: 1350px) {
	.wpt3-hero,
	.wpt3-vertical-hero { padding-top: 136px; }
	.wpt3-hero-copy h1 {
		margin-bottom: 24px;
		font-size: clamp(58px, 6.2vw, 84px);
	}
	.wpt3-hero-copy > p { margin-bottom: 28px; }
	.wpt3-vertical-hero h1 {
		margin-bottom: 22px;
		font-size: clamp(56px, 5.8vw, 78px);
	}
	.wpt3-vertical-hero-copy {
		margin-bottom: 28px;
		font-size: 17px;
		line-height: 1.5;
	}
	.wpt3-terms-line { margin-top: 28px; }
}

@media (max-width: 1080px) {
	.wpt3-nav { gap: 16px; }
	.wpt3-nav-wrap { gap: 20px; }
	.wpt3-hero-layout,
	.wpt3-vertical-hero-layout { gap: 42px; }
	.wpt3-hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); }
	.wpt3-vertical-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr); }
}

@media (max-width: 959px) {
	.wpt3-shell { width: min(100% - 36px, 1240px); }
	.wpt3-header { height: 68px; background: rgba(7, 17, 14, .96); border-bottom-color: var(--wpt3-line-light); }
	.wpt3-menu-toggle { display: inline-flex; }
	.wpt3-menu-open { overflow: hidden; }
	.wpt3-nav-wrap {
		display: none;
		position: fixed;
		top: 68px;
		left: 0;
		width: 100%;
		padding: 24px 18px 28px;
		border-radius: 0 0 var(--wpt3-radius-lg) var(--wpt3-radius-lg);
		background: var(--wpt3-night);
		border-bottom: 1px solid var(--wpt3-line-light);
	}
	.wpt3-nav-wrap.is-open { display: block; }
	.wpt3-nav { display: block; }
	.wpt3-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--wpt3-line-light); font-size: 11px; }
	.wpt3-nav-wrap .wpt3-button { width: 100%; margin-top: 18px; }
	.wpt3-hero,
	.wpt3-vertical-hero { min-height: 0; padding: 128px 0 72px; }
	.wpt3-hero-layout,
	.wpt3-vertical-hero-layout,
	.wpt3-simple-layout { grid-template-columns: 1fr; }
	.wpt3-hero-visual,
	.wpt3-vertical-visual { min-height: 520px; }
	.wpt3-section { padding: 88px 0; }
	.wpt3-section-heading,
	.wpt3-process-layout { grid-template-columns: 1fr; gap: 28px; }
	.wpt3-about-grid { grid-template-columns: 1fr; }
	.wpt3-team-layout { grid-template-columns: 1fr; gap: 48px; }
	.wpt3-system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wpt3-system-step .wpt3-card-meta { margin-bottom: 36px; }
	.wpt3-price-intro { grid-template-columns: 1fr; }
	.wpt3-price-grid { grid-template-columns: 1fr; }
	.wpt3-price-card { min-height: 0; }
	.wpt3-price-summary { min-height: 0; }
	.wpt3-advanced-box { grid-template-columns: 1fr; }
	.wpt3-advanced-header { max-width: 520px; }
	.wpt3-advanced-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.wpt3-decision-grid { grid-template-columns: 1fr; }
	.wpt3-decision-lead { min-height: 380px; }
	.wpt3-build-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wpt3-build-card:nth-child(4),
	.wpt3-build-card:nth-child(5),
	.wpt3-build-card:nth-child(6) { background: transparent; }
	.wpt3-build-card:nth-child(odd) { background: var(--wpt3-white); }
	.wpt3-process-layout { gap: 50px; }
	.wpt3-final-layout { grid-template-columns: 1fr; align-items: start; }
	.wpt3-simple { padding-top: 120px; }
	.wpt3-simple-copy { padding-top: 0; }
}

@media (max-width: 700px) {
	.wpt3-shell { width: min(100% - 28px, 1240px); }
	.wpt3-brand-logo { height: 28px; }
	.wpt3-brand-suffix { font-size: 14px; }
	.wpt3-section { padding: 70px 0; }
	.wpt3-section-heading { margin-bottom: 40px; }
	.wpt3-section-heading h2 { font-size: 42px; }
	.wpt3-hero-copy h1,
	.wpt3-vertical-hero h1 { font-size: clamp(51px, 15vw, 70px); }
	.wpt3-hero-copy > p,
	.wpt3-vertical-hero-copy { font-size: 16px; }
	.wpt3-hero-actions { display: grid; grid-template-columns: 1fr; }
	.wpt3-hero-actions .wpt3-button { width: 100%; }
	.wpt3-terms-line { gap: 7px; }
	.wpt3-terms-line span { min-height: 32px; padding: 7px 10px; font-size: 8px; }
	.wpt3-hero-visual { min-height: 440px; }
	.wpt3-photo-marine { inset: 0 35px 70px 0; }
	.wpt3-photo-training { width: 58%; height: 48%; }
	.wpt3-coordinate { display: none; }
	.wpt3-route-grid { grid-template-columns: 1fr; }
	.wpt3-route-card { min-height: 500px; }
	.wpt3-route-content { left: 34px; right: 34px; bottom: 36px; }
	.wpt3-route-content h3 { font-size: 50px; }
	.wpt3-team-roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wpt3-team-roles li { min-height: 124px; }
	.wpt3-system-grid,
	.wpt3-proof-grid,
	.wpt3-pricing-note { grid-template-columns: 1fr; }
	.wpt3-advanced-grid { grid-template-columns: 1fr; gap: 20px; }
	.wpt3-advanced-box { padding: 28px 24px; }
	.wpt3-pricing-note span + span { border-left: 0; border-top: 1px solid var(--wpt3-line-light); }
	.wpt3-final { padding: 76px 0; }
	.wpt3-final h2 { font-size: 50px; }
	.wpt3-footer-top,
	.wpt3-footer-bottom { display: block; }
	.wpt3-footer-top > p { margin-top: 32px; }
	.wpt3-footer nav { margin-top: 18px; }
	.wpt3-vertical-visual { min-height: 430px; }
	.wpt3-vertical-photo { inset: 0 0 36px 20px; }
	.wpt3-vertical-data { width: 88%; padding: 18px; }
	.wpt3-decision-list,
	.wpt3-build-grid { grid-template-columns: 1fr; }
	.wpt3-decision { min-height: 0; }
	.wpt3-build-card { min-height: 280px; background: transparent !important; }
	.wpt3-build-card:nth-child(even) { background: var(--wpt3-white) !important; }
	.wpt3-build-code { margin-bottom: 48px; }
	.wpt3-price-card { padding: 30px 24px; }
	.wpt3-proof-card { min-height: 0; }
	.wpt3-proof-result { margin-bottom: 38px; }
	.wpt3-form-card { padding: 28px 20px; }
	.wpt3-simple-layout { gap: 45px; }
	.wpt3-thanks-card { padding: 52px 20px; }
	.wpt3-thanks-actions { display: grid; }
}

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

@media print {
	.wpt3-header {
		position: absolute;
		background: var(--wpt3-night);
		border-bottom-color: var(--wpt3-line-light);
	}

	.wpt3-button,
	.wpt3-button-dark {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
