/*
Theme Name:        Stay & Play — Marketing
Theme URI:         https://stayandpray.com/
Author:            WP Woo Experts
Author URI:        https://wpwooexperts.com/
Description:       A premium WordPress block theme for the Stay & Play product marketing site. Light-first with an optional dark style variation, built around a Hero → Features → Use-cases → Pricing → CTA pillar structure. Pairs with the Stay & Play booking plugin but ships independently and works on any FSE-capable WordPress install (6.5+).
Requires at least: 6.5
Tested up to:      6.7
Requires PHP:      7.4
Version:           1.0.0
License:           GPL-3.0-or-later
License URI:       https://www.gnu.org/licenses/gpl-3.0.html
Text Domain:       snp-marketing
Tags:              full-site-editing, block-styles, block-patterns, blog, one-column, two-columns, three-columns, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, threaded-comments, translation-ready, wide-blocks
*/

/* Block themes load most styles from theme.json. The handful of rules
 * below cover scenarios theme.json can't reach — focus rings, anchor
 * scroll-margin so deep links don't hide under the sticky header,
 * dialog defaults, and a few prose niceties for blog content.
 */

:root {
	--snp-mkt-radius: 12px;
	--snp-mkt-radius-lg: 18px;
	/* Shadows are tinted with the brand navy so cards feel like they live in the same
	 * world as the wordmark, not a generic neutral gray. */
	--snp-mkt-shadow-sm: 0 1px 2px rgba(11, 31, 74, .04), 0 1px 3px rgba(11, 31, 74, .05);
	--snp-mkt-shadow-md: 0 4px 6px -1px rgba(11, 31, 74, .08), 0 2px 4px -2px rgba(11, 31, 74, .06);
	--snp-mkt-shadow-lg: 0 10px 15px -3px rgba(11, 31, 74, .10), 0 4px 6px -4px rgba(11, 31, 74, .07);
	/* Brand-warm shadow for the coral accent — used on the CTA stripe and
	 * "Recommended" pricing card to draw a hot line of attention. */
	--snp-mkt-shadow-coral: 0 18px 28px -10px rgba(255, 107, 92, .35), 0 6px 10px -8px rgba(229, 75, 60, .30);
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Anchor offset so #features etc. don't hide under the sticky header. */
:where([id]) { scroll-margin-top: 96px; }

/* Focus ring for keyboard users. Uses coral so it's clearly visible against
 * the navy primary; meets WCAG 2.1 non-text-contrast on both white and navy. */
*:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent, #FF6B5C);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Buttons get a subtle hover lift + premium shadow. */
.wp-block-button .wp-block-button__link {
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.wp-block-button .wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: var(--snp-mkt-shadow-md);
}

/* Cards (group blocks with a background) get a hover lift. */
.is-style-snp-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--snp-mkt-radius-lg);
	padding: var(--wp--preset--spacing--40);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.is-style-snp-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--snp-mkt-shadow-lg);
	border-color: var(--wp--preset--color--primary);
}

/* Pill badge style for chips ("New", "Beta", category labels). Uses a tint
 * of the brand navy so eyebrows feel anchored to the wordmark. */
.is-style-snp-pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(11, 31, 74, .08);
	color: var(--wp--preset--color--primary);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Coral variant of the pill — used for "Recommended" or anything we want to
 * actually catch the eye. Same shape, brand-spark fill. */
.is-style-snp-pill-accent {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 107, 92, .14);
	color: var(--wp--preset--color--accent-strong);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Feature-grid icons — 44×44 squircles. We use the navy → coral gradient so
 * the iconography literally embodies the wordmark + accent-bar relationship. */
.is-style-snp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--accent) 100%);
	color: #ffffff;
	margin-bottom: var(--wp--preset--spacing--30);
}

/* The accent stripe in the logo translates to a 4px coral underline used on
 * card heroes, hero eyebrows, and other "this is brand surface" moments. */
.is-style-snp-stripe {
	position: relative;
}
.is-style-snp-stripe::before {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	border-radius: 2px;
	background: var(--wp--preset--color--accent);
	margin-bottom: .9rem;
}

/* ═════════════════════════════════════════════════════════════════════════
 * HYBRID HEADER — server-rendered via the snp-marketing/site-header block.
 * Owns the announcement bar, the sticky main bar, the desktop dropdown, the
 * mobile drawer, and the scroll-state shadow. All markup is hand-tuned in
 * functions.php's snp_render_site_header() — these styles are the visual
 * layer atop that markup.
 * ═════════════════════════════════════════════════════════════════════════ */

/* Announcement bar — coral wash, single line of news. */
.snp-announcement {
	position: relative;
	z-index: 60;
	background: linear-gradient(90deg, var(--wp--preset--color--accent-strong) 0%, var(--wp--preset--color--accent) 60%, #FF8273 100%);
	color: #FFFFFF;
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: -0.005em;
	line-height: 1.5;
	overflow: hidden;
}
.snp-announcement-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .65rem 1.25rem;
	flex-wrap: wrap;
}
.snp-announcement a {
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: text-decoration-thickness .15s ease;
}
.snp-announcement a:hover { text-decoration-thickness: 2px; }
.snp-announcement-dot {
	display: inline-block;
	width: 7px; height: 7px;
	background: #FFFFFF;
	border-radius: 999px;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
	animation: snp-pulse 2.2s ease-out infinite;
	flex-shrink: 0;
}
@keyframes snp-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); transform: scale(1); }
	60%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); transform: scale(1.15); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);   transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.snp-announcement-dot { animation: none; }
}
@media (max-width: 600px) {
	.snp-announcement { font-size: .78rem; }
	.snp-announcement-inner { padding: .6rem 1rem; }
}

/* Sticky header bar — glass on the page, more solid once you scroll. */
.snp-mkt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .78);
	border-bottom: 1px solid rgba(11, 31, 74, .06);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.snp-mkt-header.is-scrolled {
	background: rgba(255, 255, 255, .94);
	border-bottom-color: rgba(11, 31, 74, .08);
	box-shadow: 0 2px 14px -4px rgba(11, 31, 74, .08);
}
.snp-mkt-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 1rem 1.5rem;
}

/* Brand lockup — uses the uploaded wordmark image (attachment 36).
 * Image height is the visual anchor; width is auto so the aspect ratio
 * is preserved no matter what dimensions the source file ships with. */
.snp-brand {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	text-decoration: none;
	color: var(--wp--preset--color--ink);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.018em;
	flex-shrink: 0;
	transition: opacity .15s ease;
	line-height: 1;
}
.snp-brand:hover { opacity: .85; color: var(--wp--preset--color--ink); }
.snp-brand-image {
	display: block;
	height: 36px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}
.snp-brand-text { line-height: 1; }
@media (max-width: 600px) {
	.snp-brand-image { height: 32px; max-width: 180px; }
}

/* Desktop primary nav.
 * The scoped rule below strips browser-default and theme-default underlines
 * from every anchor in the nav (including ones rendered by WordPress's
 * built-in walker before our walker takes over). It's intentionally broad
 * because nav links should never have underlines from cascade leakage. */
.snp-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}
.snp-nav a,
.snp-nav a:hover,
.snp-nav a:focus,
.snp-nav a:active {
	text-decoration: none;
}
.snp-nav-list,
.snp-nav-list .sub-menu {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.snp-nav-item {
	position: relative;
}
.snp-nav-link {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	padding: .55rem .85rem;
	font-size: .92rem;
	font-weight: 500;
	color: var(--wp--preset--color--text-muted);
	text-decoration: none;
	border-radius: 8px;
	transition: color .15s ease, background-color .15s ease;
}
.snp-nav-link:hover,
.snp-nav-item:hover > .snp-nav-link {
	color: var(--wp--preset--color--ink);
	background: rgba(11, 31, 74, .04);
}
.snp-nav-chev {
	transition: transform .2s ease;
}
.snp-nav-item:hover .snp-nav-chev,
.snp-nav-item.is-open .snp-nav-chev {
	transform: rotate(180deg);
}

/* Dropdown panel.
 *
 * The dropdown sits 8px below the nav item. A ::before pseudo on the panel
 * bridges that gap with a transparent strip, so when you move your cursor
 * from the parent link down toward the menu, you never enter "no man's
 * land" and lose the :hover. */
.snp-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	width: min(520px, 92vw);
	background: #FFFFFF;
	border: 1px solid rgba(11, 31, 74, .08);
	border-radius: 14px;
	box-shadow: 0 24px 48px -16px rgba(11, 31, 74, .18), 0 8px 20px -10px rgba(11, 31, 74, .12);
	padding: 1rem;
	margin-top: 8px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
	z-index: 60;
}
.snp-nav-dropdown::before {
	/* Hover bridge — covers the 8px visual gap above the panel so the
	 * pointer can travel from the parent link to the dropdown without
	 * the :hover state evaporating mid-motion. */
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}
.snp-nav-item.has-dropdown:hover > .snp-nav-dropdown,
.snp-nav-item.has-dropdown.is-open > .snp-nav-dropdown,
.snp-nav-item.has-dropdown:focus-within > .snp-nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.snp-nav-dropdown-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .35rem;
}
.snp-nav-dropdown-item {
	display: flex;
	flex-direction: column;
	gap: .15rem;
	padding: .85rem 1rem;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color .15s ease;
}
.snp-nav-dropdown-item:hover {
	background: rgba(255, 107, 92, .06);
}
.snp-nav-dropdown-item-title {
	font-size: .9rem;
	font-weight: 700;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.005em;
}
.snp-nav-dropdown-item:hover .snp-nav-dropdown-item-title {
	color: var(--wp--preset--color--accent-strong);
}
.snp-nav-dropdown-item-sub {
	font-size: .78rem;
	color: var(--wp--preset--color--text-subtle);
	line-height: 1.4;
}
.snp-nav-dropdown-foot {
	margin-top: .5rem;
	padding: .75rem 1rem 0;
	border-top: 1px solid rgba(11, 31, 74, .06);
}
.snp-nav-dropdown-foot a {
	font-size: .85rem;
	font-weight: 600;
	color: var(--wp--preset--color--accent-strong);
	text-decoration: none;
}
.snp-nav-dropdown-foot a:hover {
	color: var(--wp--preset--color--primary);
}

/* Right cluster: sign-in + CTA */
.snp-header-cta {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-shrink: 0;
}
.snp-header-signin {
	padding: .55rem .85rem;
	font-size: .92rem;
	font-weight: 500;
	color: var(--wp--preset--color--text-muted);
	text-decoration: none;
	border-radius: 8px;
	transition: color .15s ease, background-color .15s ease;
}
.snp-header-signin:hover {
	color: var(--wp--preset--color--ink);
	background: rgba(11, 31, 74, .04);
}
.snp-header-trial {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .65rem 1.1rem;
	font-size: .92rem;
	font-weight: 600;
	color: #FFFFFF;
	background: var(--wp--preset--color--primary);
	border-radius: 10px;
	text-decoration: none;
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.snp-header-trial:hover {
	background: var(--wp--preset--color--primary-strong);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px -6px rgba(11, 31, 74, .25);
}
.snp-header-trial-arrow {
	display: inline-block;
	transition: transform .2s ease;
}
.snp-header-trial:hover .snp-header-trial-arrow {
	transform: translateX(3px);
}

/* Mobile menu toggle (hamburger) — hidden on desktop */
.snp-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 32px; height: 22px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
}
.snp-mobile-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--wp--preset--color--ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .15s ease;
	transform-origin: center;
}
.snp-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.snp-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.snp-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile drawer — slides in over the page when the hamburger is tapped.
 * z-index 70 puts it ABOVE the sticky header (which is 50) and the
 * announcement bar (60), so the drawer fully covers everything underneath.
 * The drawer carries its own close affordance: an X built from the same
 * hamburger button via the [aria-expanded="true"] transform rules below. */
.snp-mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(6, 20, 58, .98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 70;
	padding: 5rem 1.5rem 2rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.snp-mobile-drawer[hidden] { display: none; }
body.snp-drawer-open {
	overflow: hidden;
}
/* Keep the hamburger / X button on top of the drawer so users can tap it
 * again to close. z-index 80 > drawer (70). */
.snp-mobile-toggle {
	position: relative;
	z-index: 80;
}
/* When the drawer is open, recolor the hamburger bars to white so the X
 * stays visible against the dark drawer backdrop. */
.snp-mobile-toggle[aria-expanded="true"] span {
	background: #FFFFFF;
}
.snp-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .25rem;
	max-width: 480px;
	margin: 0 auto;
}
.snp-mobile-nav li a {
	display: block;
	padding: .9rem 1rem;
	color: #FFFFFF;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	transition: background-color .15s ease;
}
.snp-mobile-nav li a:hover,
.snp-mobile-nav li a:focus {
	background: rgba(255, 255, 255, .06);
	color: #FFFFFF;
}
.snp-mobile-nav .snp-mobile-sub a {
	padding-left: 2rem;
	font-size: .95rem;
	font-weight: 500;
	color: rgba(255, 255, 255, .75);
}
.snp-mobile-cta {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin: 2rem auto 0;
	max-width: 480px;
	padding: 1.5rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, .08);
}
.snp-mobile-cta .snp-header-signin {
	color: #FFFFFF;
	text-align: center;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
}
.snp-mobile-cta .snp-header-trial {
	justify-content: center;
	background: var(--wp--preset--color--accent);
}
.snp-mobile-cta .snp-header-trial:hover {
	background: var(--wp--preset--color--accent-strong);
}

/* Responsive — hide desktop nav under 960px, show mobile toggle.
 * The hamburger needs `margin-left: auto` once everything else in its row
 * has collapsed; without that it sits in the middle of the gap chain. */
@media (max-width: 960px) {
	.snp-mkt-header-inner {
		padding: .85rem 1.25rem;
		gap: .75rem;
	}
	.snp-nav { display: none; }
	.snp-header-cta { display: none; }
	.snp-mobile-toggle {
		display: flex;
		margin-left: auto;
	}
	.snp-brand-text { font-size: 1.1rem; }
	.snp-brand-mark { width: 34px; height: 34px; }
}
@media (max-width: 400px) {
	.snp-mkt-header-inner { padding: .75rem 1rem; }
	.snp-brand-text { font-size: 1rem; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * HERO v3 — split-layout marketing hero. Left column: copy + CTAs. Right
 * column: SVG product mockup of the multi-leg booking sidebar.
 * ────────────────────────────────────────────────────────────────────── */
.snp-hero-v3 {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4rem, 9vw, 7rem) 1.5rem;
	background:
		radial-gradient(80% 60% at 80% 20%, rgba(255, 107, 92, .22) 0%, rgba(11, 31, 74, 0) 60%),
		linear-gradient(135deg, #06143A 0%, #0B1F4A 55%, #1E2F5C 100%);
}
.snp-hero-v3::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}
.snp-hero-v3-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 4rem;
	align-items: center;
}
@media (max-width: 1024px) {
	.snp-hero-v3-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}
.snp-hero-v3-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .35rem .85rem;
	border-radius: 999px;
	background: rgba(255, 107, 92, .14);
	border: 1px solid rgba(255, 107, 92, .3);
	color: #FFA89C;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}
.snp-hero-v3-eyebrow .snp-hero-v3-eyebrow-bar {
	width: 18px; height: 3px;
	background: var(--wp--preset--color--accent);
	border-radius: 1px;
}
.snp-hero-v3-headline {
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.035em;
	color: #FFFFFF;
	margin: 0 0 1.5rem 0;
}
.snp-hero-v3-headline .snp-grad {
	background: linear-gradient(135deg, #FF6B5C 0%, #FFA89C 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.snp-hero-v3-sub {
	font-size: 1.2rem;
	line-height: 1.55;
	color: #CBD5E1;
	max-width: 38rem;
	margin: 0 0 2.25rem 0;
}
@media (max-width: 1024px) { .snp-hero-v3-sub { margin-left: auto; margin-right: auto; } }
.snp-hero-v3-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}
@media (max-width: 1024px) { .snp-hero-v3-ctas { justify-content: center; } }
.snp-hero-v3-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: 1.05rem 1.85rem;
	background: var(--wp--preset--color--accent);
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.02rem;
	border-radius: 12px;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
	box-shadow: 0 12px 24px -8px rgba(255, 107, 92, .55);
}
.snp-hero-v3-cta-primary:hover {
	background: var(--wp--preset--color--accent-strong);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 16px 30px -8px rgba(255, 107, 92, .6);
}
.snp-hero-v3-cta-primary .snp-cta-arrow { transition: transform .2s ease; }
.snp-hero-v3-cta-primary:hover .snp-cta-arrow { transform: translateX(3px); }
.snp-hero-v3-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: 1.05rem 1.5rem;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 1.02rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .05);
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.snp-hero-v3-cta-secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .35);
	color: #FFFFFF;
}
.snp-hero-v3-cta-secondary .snp-play-icon {
	width: 18px; height: 18px;
	border-radius: 999px;
	background: rgba(255, 107, 92, .25);
	border: 1px solid var(--wp--preset--color--accent);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--wp--preset--color--accent);
	font-size: .55rem;
}
.snp-hero-v3-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, .08);
}
@media (max-width: 781px) {
	.snp-hero-v3-trust {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
		text-align: left;
	}
}
.snp-hero-v3-trust-item {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}
.snp-hero-v3-trust-item-num {
	font-size: 1.65rem;
	font-weight: 800;
	color: #FFFFFF;
	letter-spacing: -0.025em;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.snp-hero-v3-trust-item-num em {
	font-style: normal;
	color: var(--wp--preset--color--accent);
}
.snp-hero-v3-trust-item-label {
	font-size: .82rem;
	color: #94A3B8;
	line-height: 1.35;
}

/* Product mockup container — wraps the SVG and adds a subtle floating
 * shadow plus a glow accent ring. The SVG itself is responsive. */
.snp-hero-v3-mockup {
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35)) drop-shadow(0 10px 20px rgba(255, 107, 92, .15));
	animation: snp-float 6s ease-in-out infinite;
}
.snp-hero-v3-mockup svg {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}
@keyframes snp-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
	.snp-hero-v3-mockup { animation: none; }
}
.snp-hero-v3-mockup::before {
	content: "";
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle at 50% 50%, rgba(255, 107, 92, .15) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

/* Product-mockup SVG container shared across the home page — used for the
 * three feature-pillar illustrations (multi-leg, packages, CrewPay).
 * Has a coral accent corner on hover so the mockups feel interactive. */
.snp-product-mockup {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	filter: drop-shadow(0 20px 40px rgba(11, 31, 74, .15)) drop-shadow(0 8px 16px rgba(11, 31, 74, .08));
	transition: transform .3s ease;
}
.snp-product-mockup:hover {
	transform: translateY(-4px);
}
.snp-product-mockup svg {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}
/* On mobile the mockups can take over the screen if uncapped. Cap the height
 * to ~70vh and let the aspect-ratio determine width. */
@media (max-width: 781px) {
	.snp-product-mockup {
		max-width: 100%;
		max-height: 68vh;
	}
	.snp-product-mockup svg {
		max-height: 68vh;
		object-fit: contain;
	}
	.snp-hero-v3-mockup {
		max-width: 100%;
		max-height: 60vh;
	}
	.snp-hero-v3-mockup svg {
		max-height: 60vh;
		object-fit: contain;
	}
}

/* Hero v3 mobile refinements — tighter padding, slightly smaller headline. */
@media (max-width: 781px) {
	.snp-hero-v3 {
		padding: 3rem 1.25rem 4rem;
	}
	.snp-hero-v3-headline {
		font-size: clamp(2.25rem, 9vw, 3rem);
	}
	.snp-hero-v3-sub {
		font-size: 1.05rem;
	}
	.snp-hero-v3-inner {
		gap: 2.5rem;
	}
	.snp-hero-v3-eyebrow {
		font-size: .7rem;
	}
}

/* ═════════════════════════════════════════════════════════════════════════
 * PRICING SECTION — three-tier grid with a recommended (coral) middle tier.
 *
 * Layout: CSS grid, equal-height columns. Each card is a flex column so the
 * CTA pins to the bottom no matter the feature-list length. The recommended
 * tier sits 12px lower in the visual rhythm via a translate, has a coral
 * top border, a subtle coral wash, and a darker filled CTA. Features carry
 * inline coral checkmark SVGs; "not included" features get a muted cross.
 * ═════════════════════════════════════════════════════════════════════════ */
.snp-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: var(--wp--preset--spacing--40);
	align-items: stretch;
}
@media (max-width: 960px) {
	.snp-pricing { grid-template-columns: 1fr; gap: 1rem; }
}

.snp-tier {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 18px;
	padding: 2rem 1.75rem;
	transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease, border-color .25s ease;
}
.snp-tier:hover {
	transform: translateY(-4px);
	box-shadow: var(--snp-mkt-shadow-lg);
	border-color: rgba(11, 31, 74, .14);
}

/* Recommended tier — translated 12px up at rest so it visually leads the
 * row, with a coral 4px top stripe (via box-shadow inset), a soft coral
 * wash gradient, and a richer drop shadow. */
.snp-tier.is-recommended {
	transform: translateY(-12px);
	border-color: rgba(255, 107, 92, .25);
	background:
		linear-gradient(180deg, #FFFFFF 0%, #FFF8F6 100%);
	box-shadow:
		inset 0 4px 0 0 var(--wp--preset--color--accent),
		0 20px 40px -12px rgba(255, 107, 92, .25),
		0 8px 16px -8px rgba(11, 31, 74, .1);
	padding-top: 2.75rem; /* extra room for the floating badge */
}
.snp-tier.is-recommended:hover {
	transform: translateY(-16px);
	box-shadow:
		inset 0 4px 0 0 var(--wp--preset--color--accent),
		0 28px 48px -12px rgba(255, 107, 92, .3),
		0 12px 20px -8px rgba(11, 31, 74, .12);
}
@media (max-width: 960px) {
	.snp-tier.is-recommended { transform: none; padding-top: 2.5rem; }
	.snp-tier.is-recommended:hover { transform: translateY(-3px); }
}

/* "RECOMMENDED" badge — floats just under the top stripe on the recommended tier. */
.snp-tier-badge {
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--accent);
	color: #FFFFFF;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .12em;
	padding: .35rem .9rem;
	border-radius: 999px;
	box-shadow: 0 6px 12px -4px rgba(255, 107, 92, .5);
}

/* Tier head — name + tagline */
.snp-tier-head {
	margin-bottom: 1.5rem;
}
.snp-tier-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.02em;
	margin: 0 0 .35rem 0;
	line-height: 1.1;
}
.snp-tier-tagline {
	font-size: .88rem;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.5;
	margin: 0;
}

/* Price block */
.snp-tier-price {
	display: flex;
	align-items: baseline;
	gap: .25rem;
	margin-bottom: .25rem;
}
.snp-tier-price-value {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.035em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.snp-tier-price-cadence {
	font-size: 1rem;
	color: var(--wp--preset--color--text-subtle);
	font-weight: 500;
}
.snp-tier-billed {
	font-size: .8rem;
	color: var(--wp--preset--color--text-subtle);
	margin: 0 0 1.5rem 0;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--wp--preset--color--border);
}

/* Feature list — coral checkmarks, muted "not included" items */
.snp-tier-features {
	list-style: none;
	margin: 0 0 2rem 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .8rem;
	flex: 1 1 auto;
}
.snp-tier-features li {
	display: flex;
	align-items: flex-start;
	gap: .65rem;
	font-size: .92rem;
	line-height: 1.5;
	color: var(--wp--preset--color--ink);
}
.snp-tier-features li.is-not-included {
	color: var(--wp--preset--color--text-subtle);
}
.snp-tier-check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--wp--preset--color--accent);
	margin-top: 1px;
}
.snp-tier.is-recommended .snp-tier-check {
	color: var(--wp--preset--color--accent-strong);
}
.snp-tier-cross {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--wp--preset--color--text-subtle);
	opacity: .6;
	margin-top: 1px;
}

/* CTA — pinned to the bottom of the card via flex's margin-top:auto. */
.snp-tier-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: 1rem 1.5rem;
	font-size: .95rem;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease;
	margin-top: auto;
}
.snp-tier-cta-arrow {
	transition: transform .2s ease;
	display: inline-block;
}
.snp-tier-cta:hover .snp-tier-cta-arrow { transform: translateX(3px); }

.snp-tier-cta--outline {
	background: transparent;
	color: var(--wp--preset--color--ink);
	border: 1.5px solid var(--wp--preset--color--ink);
}
.snp-tier-cta--outline:hover {
	background: var(--wp--preset--color--ink);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px -6px rgba(11, 31, 74, .25);
}

.snp-tier-cta--solid {
	background: var(--wp--preset--color--accent);
	color: #FFFFFF;
	border: 1.5px solid var(--wp--preset--color--accent);
	box-shadow: 0 8px 16px -6px rgba(255, 107, 92, .4);
}
.snp-tier-cta--solid:hover {
	background: var(--wp--preset--color--accent-strong);
	border-color: var(--wp--preset--color--accent-strong);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 12px 22px -6px rgba(255, 107, 92, .5);
}

/* Body-paragraph defaults — bump the line-height and a hair on font weight
 * for mobile readability without changing the typographic system. */
@media (max-width: 781px) {
	.wp-block-paragraph,
	p.has-text-muted-color {
		line-height: 1.7;
	}
}

/* ─────────────────────────────────────────────────────────────────────────
 * DARK-SECTION TEXT VISIBILITY FIX
 *
 * Inside a wp:group with backgroundColor=navy, child columns / cards set
 * their own backgrounds and inline text colors. But list items (<li>) and
 * many nested elements don't carry the has-text-color class, so the global
 * `body { color: var(--wp--preset--color--ink) }` rule from theme.json
 * (which is the navy text color #0B1F4A) wins on inheritance and renders
 * the content invisible against a navy card.
 *
 * We force-resolve this with high-specificity rules below. Targeted, not
 * sweeping — only applies inside containers that have explicitly opted into
 * a dark background.
 * ───────────────────────────────────────────────────────────────────────── */

/* When the OUTER group has navy / dark backgrounds, its descendants inherit
 * a light text color so headings, paragraphs, and list items are legible
 * even if their parent block didn't declare an inline color. */
.has-navy-background-color,
.has-navy-soft-background-color {
	color: #E2E8F0;
}
.has-navy-background-color .wp-block-heading,
.has-navy-soft-background-color .wp-block-heading {
	color: #FFFFFF;
}
.has-navy-background-color .wp-block-list,
.has-navy-background-color .wp-block-list li,
.has-navy-soft-background-color .wp-block-list,
.has-navy-soft-background-color .wp-block-list li {
	color: #E2E8F0;
}

/* Nested cards on a navy section that set their own dark background —
 * we override the inherited body color so the card content is always
 * readable. This is the comparison + page-about + page-features case. */
.has-navy-background-color .wp-block-column.has-background,
.has-navy-soft-background-color .wp-block-column.has-background {
	color: #E2E8F0;
}
.has-navy-background-color .wp-block-column.has-background h3,
.has-navy-background-color .wp-block-column.has-background h3.wp-block-heading,
.has-navy-soft-background-color .wp-block-column.has-background h3,
.has-navy-soft-background-color .wp-block-column.has-background h3.wp-block-heading {
	color: #FFFFFF;
}
.has-navy-background-color .wp-block-column.has-background p,
.has-navy-soft-background-color .wp-block-column.has-background p {
	color: #CBD5E1;
}
.has-navy-background-color .wp-block-column.has-background li,
.has-navy-soft-background-color .wp-block-column.has-background li {
	color: #E2E8F0;
}
/* Coral-tinted checkmark in comparison list items — gives the cards visual
 * texture and makes the "we have this" points feel earned. */
.has-navy-background-color .wp-block-column.has-background li::marker,
.has-navy-soft-background-color .wp-block-column.has-background li::marker {
	color: var(--wp--preset--color--accent);
}

/* Stats banner — numbers and labels render as blocks so they stack inside
 * each .snp-stat cell. The colors win over theme.json's global body color
 * not via `!important` but through specificity: prefixing with the parent
 * .has-navy-background-color (the navy section wrapper that's always
 * around this grid) gives us a 0,0,3,0 selector, which beats any
 * single-class WordPress-generated rule (0,0,1,0) and the body element
 * rule (0,0,0,1). Clean cascade, no overrides. */
.has-navy-background-color .snp-stats-grid .snp-stat-number {
	color: #FFFFFF;
	display: block;
}
.has-navy-background-color .snp-stats-grid .snp-stat-label {
	color: #CBD5E1;
	display: block;
}
@media (max-width: 600px) {
	.snp-stat-number { font-size: 2.5rem; }
	.snp-stat-label { font-size: .85rem; }
}

/* ═════════════════════════════════════════════════════════════════════════
 * FOOTER — server-rendered via the snp-marketing/site-footer block.
 * Brand column (logo + tagline + newsletter + socials) sits on the left,
 * three link columns sit to the right, then a bottom strip with copyright
 * and a system-status indicator.
 * ═════════════════════════════════════════════════════════════════════════ */
.snp-mkt-footer {
	position: relative;
	background:
		radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 107, 92, .08) 0%, transparent 70%),
		var(--wp--preset--color--navy);
	color: #CBD5E1;
	padding: 4rem 1.5rem 2rem;
}
.snp-mkt-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .025) 1px, transparent 0);
	background-size: 24px 24px;
	pointer-events: none;
}
.snp-mkt-footer-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}
.snp-mkt-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
}
@media (max-width: 960px) {
	.snp-mkt-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 2rem;
	}
	.snp-mkt-footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.snp-mkt-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.snp-mkt-footer-brand-col { grid-column: auto; }
}

/* Brand column */
.snp-footer-brand {
	display: inline-block;
	margin-bottom: 1rem;
	transition: opacity .15s ease;
}
.snp-footer-brand:hover { opacity: .85; }
.snp-footer-brand-image {
	display: block;
	height: 36px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	/* The uploaded wordmark may be navy-on-white; on a dark footer we
	 * brighten it slightly so it doesn't disappear. brightness(0) + invert(1)
	 * would turn it pure white; we use a lighter touch with a CSS filter
	 * that keeps brand color while lifting contrast against the navy. */
	filter: brightness(0) invert(1);
}
.snp-footer-brand-text {
	display: inline-block;
	color: #FFFFFF;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.snp-footer-tagline {
	color: #94A3B8;
	font-size: .92rem;
	line-height: 1.65;
	margin: 0 0 1.5rem 0;
	max-width: 36ch;
}

/* Link columns */
.snp-footer-col-title {
	color: var(--wp--preset--color--accent-soft);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}
.snp-mkt-footer-links-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.snp-mkt-footer-links-col li {
	margin-bottom: .5rem;
}
.snp-mkt-footer-links-col a {
	color: #CBD5E1;
	font-size: .92rem;
	text-decoration: none;
	transition: color .15s ease;
}
.snp-mkt-footer-links-col a:hover {
	color: var(--wp--preset--color--accent-soft);
}

/* Bottom strip */
.snp-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .06);
	font-size: .82rem;
	color: #94A3B8;
}
.snp-footer-status {
	color: #34D399;
	text-decoration: none;
}

/* Newsletter signup card inside the footer — glass tile with form. */
.snp-newsletter {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.snp-newsletter-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 .35rem 0;
	letter-spacing: -0.01em;
}
.snp-newsletter-sub {
	font-size: .85rem;
	color: #94A3B8;
	margin: 0 0 1rem 0;
	line-height: 1.5;
}
.snp-newsletter-form {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}
.snp-newsletter-form input[type="email"] {
	flex: 1;
	min-width: 200px;
	padding: .75rem 1rem;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 10px;
	color: #FFFFFF;
	font-size: .92rem;
	font-family: inherit;
	transition: border-color .15s ease, background-color .15s ease;
}
.snp-newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, .45);
}
.snp-newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: var(--wp--preset--color--accent);
	background: rgba(255, 255, 255, .1);
}
.snp-newsletter-form button {
	padding: .75rem 1.25rem;
	background: var(--wp--preset--color--accent);
	color: #FFFFFF;
	font-weight: 700;
	font-size: .92rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color .15s ease, transform .15s ease;
	font-family: inherit;
}
.snp-newsletter-form button:hover {
	background: var(--wp--preset--color--accent-strong);
	transform: translateY(-1px);
}

/* Social icon row in the footer bottom strip. */
.snp-social {
	display: flex;
	gap: .5rem;
	align-items: center;
}
.snp-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	color: #CBD5E1;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.snp-social a:hover {
	background: rgba(255, 107, 92, .12);
	border-color: rgba(255, 107, 92, .4);
	color: var(--wp--preset--color--accent-soft);
	transform: translateY(-1px);
}
.snp-social a svg {
	width: 16px;
	height: 16px;
}

/* Contact form — used inside the /contact page card. Styled to match the
 * card surfaces and respect the navy + coral brand palette. */
.snp-contact-form .snp-field {
	margin-bottom: 1rem;
}
.snp-contact-form label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--wp--preset--color--ink);
	margin-bottom: .35rem;
	letter-spacing: -0.005em;
}
.snp-contact-form input,
.snp-contact-form select,
.snp-contact-form textarea {
	width: 100%;
	padding: .65rem .85rem;
	font-size: .95rem;
	font-family: inherit;
	color: var(--wp--preset--color--ink);
	background: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 8px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.snp-contact-form input:focus,
.snp-contact-form select:focus,
.snp-contact-form textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 92, .18);
}
.snp-contact-form .snp-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .85rem 1.5rem;
	font-size: .95rem;
	font-weight: 600;
	color: #fff;
	background: var(--wp--preset--color--primary);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
	margin-top: .25rem;
}
.snp-contact-form .snp-submit:hover {
	background: var(--wp--preset--color--primary-strong);
	transform: translateY(-1px);
	box-shadow: var(--snp-mkt-shadow-coral);
}
.snp-contact-form .snp-form-fineprint {
	margin-top: 1rem;
	font-size: .8rem;
	color: var(--wp--preset--color--text-subtle);
	line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────────────────
 * HOME PAGE — REVAMPED MARKETING SURFACES
 * The following selectors are used by patterns/{hero-v2, logo-marquee,
 * stats-banner, bento-features, gateway-showcase, testimonials}.php and
 * intentionally live in CSS, not in block attributes, because they're
 * styling concerns that the block editor's save() function can't express
 * cleanly (animations, multi-line grid-template-areas, ::before pseudo
 * elements, conic gradients, etc.).
 * ────────────────────────────────────────────────────────────────────── */

/* Hero v2 — cinematic dark cover with subtle grid + coral glow.
 * The grid is a pure CSS background-image overlay; the glow is a radial-
 * gradient pseudo so we don't sacrifice the cover block's gradient slot. */
.snp-hero-v2 {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.snp-hero-v2::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}
.snp-hero-v2::after {
	content: "";
	position: absolute;
	width: 480px; height: 480px;
	right: -120px; top: -120px;
	background: radial-gradient(circle, rgba(255, 107, 92, .35) 0%, rgba(255, 107, 92, 0) 65%);
	pointer-events: none;
	z-index: 0;
}
.snp-hero-v2 > * { position: relative; z-index: 1; }

/* Inline trust chips under the hero CTA. Pill-shaped glass tiles with the
 * coral accent dot. Each chip carries a microscopic stat. */
.snp-trust-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin-top: 1.5rem;
}
.snp-trust-chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .4rem .85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .14);
	color: #E2E8F0;
	font-size: .8rem;
	font-weight: 500;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.snp-trust-chip::before {
	content: "";
	width: 6px; height: 6px;
	border-radius: 999px;
	background: var(--wp--preset--color--accent);
	flex-shrink: 0;
}

/* Logo marquee — CSS-only infinite horizontal scroll with edge fade-outs.
 * The .snp-marquee-track holds the logos twice in a row so the animation
 * loops seamlessly. */
.snp-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	padding: 0;
}
.snp-marquee-track {
	display: flex;
	gap: 4rem;
	width: max-content;
	animation: snp-marquee-scroll 28s linear infinite;
}
.snp-marquee-track:hover { animation-play-state: paused; }
.snp-marquee-item {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--wp--preset--color--text-muted);
	letter-spacing: -0.015em;
	white-space: nowrap;
	opacity: .8;
	transition: opacity .2s ease, color .2s ease;
}
.snp-marquee-item:hover {
	opacity: 1;
	color: var(--wp--preset--color--primary);
}
.snp-marquee-item::before {
	content: "◆";
	color: var(--wp--preset--color--accent);
	font-size: .7em;
}
@keyframes snp-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.snp-marquee-track { animation: none; }
}

/* Stats banner — 4 large KPIs on dark navy with a coral underline under
 * the number. Numbers use a tabular figure variant for clean alignment. */
.snp-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
@media (max-width: 781px) {
	.snp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.snp-stat {
	position: relative;
	padding: 1.5rem 0;
}
.snp-stat-number {
	display: block;
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	margin-bottom: .5rem;
}
.snp-stat-number .snp-stat-suffix {
	color: var(--wp--preset--color--accent);
	font-weight: 700;
}
.snp-stat-label {
	font-size: .85rem;
	color: #CBD5E1;
	letter-spacing: .02em;
	line-height: 1.4;
	max-width: 240px;
}
.snp-stat::before {
	content: "";
	display: block;
	width: 28px;
	height: 3px;
	border-radius: 2px;
	background: var(--wp--preset--color--accent);
	margin-bottom: 1rem;
}

/* Bento grid — asymmetric 6-card feature showcase. 3-column desktop with
 * the centre-top tile spanning 2 columns; one full-width tile at bottom. */
.snp-bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	margin-top: var(--wp--preset--spacing--40);
}
.snp-bento-card {
	position: relative;
	background: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--snp-mkt-radius-lg);
	padding: 1.75rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	overflow: hidden;
}
.snp-bento-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--snp-mkt-shadow-lg);
	border-color: var(--wp--preset--color--accent);
}
.snp-bento-card .snp-bento-eyebrow {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-strong);
	margin: 0 0 .75rem 0;
}
.snp-bento-card .snp-bento-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.015em;
	margin: 0 0 .5rem 0;
	line-height: 1.25;
}
.snp-bento-card .snp-bento-body {
	font-size: .92rem;
	line-height: 1.6;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
/* Tile-specific spans — defaults are 2-col, hero tiles are 3 or 4. */
.snp-bento-card { grid-column: span 2; }
.snp-bento-card.is-wide { grid-column: span 3; }
.snp-bento-card.is-hero {
	grid-column: span 4;
	background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary-soft) 100%);
	color: #FFFFFF;
	border-color: transparent;
}
.snp-bento-card.is-hero .snp-bento-eyebrow { color: var(--wp--preset--color--accent-soft); }
.snp-bento-card.is-hero .snp-bento-title { color: #FFFFFF; font-size: 1.6rem; }
.snp-bento-card.is-hero .snp-bento-body { color: #CBD5E1; }
.snp-bento-card.is-hero::after {
	content: "";
	position: absolute;
	width: 280px; height: 280px;
	right: -80px; bottom: -100px;
	background: radial-gradient(circle, rgba(255, 107, 92, .4) 0%, rgba(255, 107, 92, 0) 65%);
	pointer-events: none;
}
.snp-bento-card.is-coral {
	background: linear-gradient(135deg, var(--wp--preset--color--accent-strong) 0%, var(--wp--preset--color--accent) 100%);
	color: #FFFFFF;
	border-color: transparent;
}
.snp-bento-card.is-coral .snp-bento-eyebrow { color: rgba(255, 255, 255, .85); }
.snp-bento-card.is-coral .snp-bento-title { color: #FFFFFF; }
.snp-bento-card.is-coral .snp-bento-body { color: rgba(255, 255, 255, .92); }
@media (max-width: 1024px) {
	.snp-bento { grid-template-columns: repeat(4, 1fr); }
	.snp-bento-card,
	.snp-bento-card.is-wide,
	.snp-bento-card.is-hero,
	.snp-bento-card.is-coral { grid-column: span 2; }
}
@media (max-width: 600px) {
	.snp-bento { grid-template-columns: 1fr; }
	.snp-bento-card,
	.snp-bento-card.is-wide,
	.snp-bento-card.is-hero,
	.snp-bento-card.is-coral { grid-column: span 1; }
}

/* Gateway showcase — 4-by-2 grid of payment-gateway tiles. Each tile now
 * carries a 40x40 brand-colour monogram instead of the old coral dot, so
 * the colour itself does the brand-recognition work (purple = Stripe-ish,
 * deep blue = PayPal-ish, etc.) without using copyrighted logo files.
 * The tile colour is passed in as a CSS custom property `--snp-gw` from
 * inline style on the .snp-gateway-icon span. */
.snp-gateways {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: var(--wp--preset--spacing--40);
}
@media (max-width: 1024px) { .snp-gateways { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .snp-gateways { grid-template-columns: repeat(2, 1fr); } }
.snp-gateway-tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .35rem;
	padding: 1.35rem 1.15rem;
	background: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--snp-mkt-radius);
	transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
	position: relative;
	overflow: hidden;
}
.snp-gateway-tile:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 107, 92, .3);
	box-shadow: var(--snp-mkt-shadow-md);
}
/* Subtle colour wash on hover — a tinted glow in the tile's brand colour,
 * positioned in the top-right corner. Pure decoration, decoupled from
 * content so it never interferes with the icon or text. */
.snp-gateway-tile::after {
	content: "";
	position: absolute;
	top: -30px; right: -30px;
	width: 80px; height: 80px;
	border-radius: 999px;
	background: var(--snp-gw-bg, transparent);
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
	filter: blur(20px);
}
.snp-gateway-tile:hover::after { opacity: .22; }

/* Gateway icon container — handles two variants:
 *
 *   .is-image    → A neutral 48x40 container that holds an uploaded logo
 *                  file. Object-fit: contain keeps the aspect ratio
 *                  intact whether the logo is square-icon or wordmark.
 *
 *   .is-monogram → A 40x40 rounded square in the gateway's brand colour
 *                  with a 2-letter abbreviation. The colour comes from
 *                  the `--snp-gw` custom property set inline.
 *
 * Both variants share the same visual rhythm (40px tall, sits above the
 * gateway name) so tiles align even when some have images and some have
 * monograms. */
.snp-gateway-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	margin-bottom: .85rem;
	transition: transform .15s ease;
	flex-shrink: 0;
}

.snp-gateway-icon.is-image {
	min-width: 40px;
	max-width: 88px;
	padding: 4px 6px;
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 10px;
	box-shadow: 0 2px 4px -2px rgba(11, 31, 74, .06);
}
.snp-gateway-icon.is-image .snp-gateway-logo {
	max-height: 28px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.snp-gateway-icon.is-monogram {
	width: 40px;
	border-radius: 10px;
	background: var(--snp-gw, var(--wp--preset--color--primary));
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 4px 8px -3px color-mix(in srgb, var(--snp-gw, var(--wp--preset--color--primary)) 50%, transparent);
}

.snp-gateway-tile:hover .snp-gateway-icon {
	transform: scale(1.05) rotate(-2deg);
}
.snp-gateway-tile .snp-gateway-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.005em;
}
.snp-gateway-tile .snp-gateway-region {
	font-size: .76rem;
	color: var(--wp--preset--color--text-subtle);
	letter-spacing: .015em;
}

/* Testimonials — three quote cards laid out in a CSS grid so all three are
 * guaranteed equal height. Each card is itself a vertical flex container,
 * which lets us push the .snp-testimonial-author block to the bottom edge
 * with `margin-top: auto`. The avatar is a tinted initials circle (no
 * external images needed); the quote mark is an inline SVG. */
.snp-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: var(--wp--preset--spacing--40);
}
@media (max-width: 960px) {
	.snp-testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.snp-testimonial {
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--snp-mkt-radius-lg);
	padding: 1.75rem;
	margin: 0;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.snp-testimonial:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 107, 92, .25);
	box-shadow: var(--snp-mkt-shadow-md);
}

/* Refined SVG quote-mark — sits at the top of each card in coral, smaller
 * and cleaner than the old serif-glyph approach. */
.snp-testimonial-quote-icon {
	width: 28px;
	height: auto;
	color: var(--wp--preset--color--accent);
	margin-bottom: 1rem;
	flex-shrink: 0;
}

/* The quote text itself fills the card vertically. flex: 1 1 auto pushes
 * the author block down to the bottom whenever the quote is shorter. */
.snp-testimonial-quote {
	flex: 1 1 auto;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.005em;
	margin: 0 0 1.5rem 0;
	font-style: normal;
}

/* Author block — pinned to the bottom of the card by the flex layout above.
 * Avatar + meta sit side-by-side. */
.snp-testimonial-author {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin: 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--wp--preset--color--border);
	margin-top: auto;
}
.snp-testimonial-avatar {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .02em;
	color: #FFFFFF;
	background: var(--wp--preset--color--ink);
}
.snp-testimonial-avatar[data-tint="coral"] {
	background: linear-gradient(135deg, var(--wp--preset--color--accent) 0%, var(--wp--preset--color--accent-strong) 100%);
}
.snp-testimonial-avatar[data-tint="navy-soft"] {
	background: linear-gradient(135deg, var(--wp--preset--color--primary-soft) 0%, var(--wp--preset--color--primary) 100%);
}
.snp-testimonial-avatar[data-tint="navy"] {
	background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary-strong) 100%);
}
.snp-testimonial-author-meta {
	display: flex;
	flex-direction: column;
	gap: .1rem;
	min-width: 0;
}
.snp-testimonial-name {
	font-size: .92rem;
	font-weight: 700;
	color: var(--wp--preset--color--ink);
	letter-spacing: -0.005em;
}
.snp-testimonial-role {
	font-size: .78rem;
	color: var(--wp--preset--color--text-subtle);
	line-height: 1.4;
}

/* Footer carries the coral accent stripe at the top — a 4px brand line
 * that visually echoes the orange bar inside the wordmark. We use a
 * box-shadow inset rather than border-top so it stacks correctly with the
 * footer's existing background gradient and dot-pattern overlay. */
.snp-mkt-footer {
	box-shadow: inset 0 4px 0 0 var(--wp--preset--color--accent);
}

/* Print stylesheet — strip site chrome for clean PDF prints of pricing /
 * docs pages. Travel agencies routinely print pages to share with clients.
 *
 * We win without !important by prefixing each selector with `body`, which
 * bumps specificity from 0,0,1,0 to 0,0,1,1 — enough to beat WordPress's
 * default block-library rules that target `.wp-block-navigation` and
 * `.wp-block-button` with single-class selectors. */
@media print {
	body .snp-mkt-header,
	body .snp-mkt-footer,
	body .wp-block-navigation,
	body .wp-block-button { display: none; }
	body { color: #000; background: #fff; }
	body a { color: #000; text-decoration: underline; }
}
