/**
 * FieldContent Custom Styles
 * Dark theme with hot pink accent, glassmorphism effects
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
	/* Colors */
	--fc-primary: hsl(324 100% 50%);
	--fc-primary-light: hsl(324 100% 65%);
	--fc-primary-dark: hsl(324 100% 40%);
	--fc-success: hsl(161 100% 51%);
	--fc-background: hsl(240 10% 4%);
	--fc-background-secondary: hsl(240 10% 6%);
	--fc-background-tertiary: hsl(324 100% 8%);
	--fc-foreground: hsl(0 0% 98%);
	--fc-muted: hsl(240 10% 10%);
	--fc-muted-foreground: hsl(0 0% 80%);
	--fc-border: hsl(240 10% 15%);
	--fc-glass-bg: hsl(240 10% 5% / 0.7);
	--fc-glass-border: hsl(0 0% 100% / 0.1);

	/* Transitions */
	--fc-transition-fast: 150ms ease;
	--fc-transition-base: 300ms ease;
	--fc-transition-slow: 500ms ease;

	/* Border Radius */
	--fc-radius-sm: 0.375rem;
	--fc-radius-md: 0.5rem;
	--fc-radius-lg: 0.75rem;
	--fc-radius-xl: 1rem;
	--fc-radius-2xl: 1.5rem;
}

/* ==========================================================================
   Body Background
   ========================================================================== */

body {
	background: var(--fc-background);
	background-attachment: fixed;
	position: relative;
}

/* ==========================================================================
   Animated Background Overlay - Pink Spray Paint Effect
   ========================================================================== */

.fc-animated-bg {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

/* Large floating gradient orbs */
.fc-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.fc-orb-1 {
	width: 800px;
	height: 800px;
	background: rgba(255, 0, 170, 0.08);
	top: -5%;
	left: -10%;
	filter: blur(120px);
	animation: float-orb-1 25s ease-in-out infinite;
}

.fc-orb-2 {
	width: 700px;
	height: 700px;
	background: rgba(255, 0, 170, 0.07);
	top: 30%;
	right: -10%;
	filter: blur(110px);
	animation: float-orb-2 30s ease-in-out infinite;
	animation-delay: -5s;
}

.fc-orb-3 {
	width: 650px;
	height: 650px;
	background: rgba(255, 0, 170, 0.07);
	bottom: 5%;
	left: 5%;
	filter: blur(115px);
	animation: float-orb-3 22s ease-in-out infinite;
	animation-delay: -10s;
}

.fc-orb-4 {
	width: 550px;
	height: 550px;
	background: rgba(255, 0, 170, 0.06);
	top: 60%;
	right: 15%;
	filter: blur(100px);
	animation: float-orb-4 28s ease-in-out infinite;
	animation-delay: -15s;
}

/* Additional orbs for more coverage */
.fc-orb-5 {
	width: 500px;
	height: 500px;
	background: rgba(255, 0, 170, 0.05);
	top: 15%;
	left: 40%;
	filter: blur(100px);
	animation: float-orb-2 35s ease-in-out infinite;
	animation-delay: -8s;
}

.fc-orb-6 {
	width: 600px;
	height: 600px;
	background: rgba(255, 0, 170, 0.06);
	bottom: 30%;
	right: 30%;
	filter: blur(110px);
	animation: float-orb-3 28s ease-in-out infinite;
	animation-delay: -12s;
}

/* Pulsing glow spots */
.fc-glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.fc-glow-1 {
	width: 400px;
	height: 400px;
	background: rgba(255, 0, 170, 0.18);
	filter: blur(80px);
	top: 20%;
	left: 8%;
	animation: pulse-glow 4s ease-in-out infinite;
}

.fc-glow-2 {
	width: 350px;
	height: 350px;
	background: rgba(255, 0, 170, 0.15);
	filter: blur(70px);
	top: 50%;
	right: 12%;
	animation: pulse-glow 5s ease-in-out infinite;
	animation-delay: -2s;
}

.fc-glow-3 {
	width: 380px;
	height: 380px;
	background: rgba(255, 0, 170, 0.16);
	filter: blur(75px);
	bottom: 20%;
	left: 30%;
	animation: pulse-glow 6s ease-in-out infinite;
	animation-delay: -1s;
}

.fc-glow-4 {
	width: 320px;
	height: 320px;
	background: rgba(255, 0, 170, 0.14);
	filter: blur(65px);
	top: 70%;
	left: 60%;
	animation: pulse-glow 7s ease-in-out infinite;
	animation-delay: -3s;
}

/* Spray paint splatter spots */
.fc-splatter {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.fc-splatter-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(255, 0, 170, 0.15) 0%, transparent 70%);
	top: 8%;
	right: 5%;
	filter: blur(60px);
	transform: rotate(30deg) scale(1.8, 0.9);
}

.fc-splatter-2 {
	width: 450px;
	height: 450px;
	background: radial-gradient(ellipse at center, rgba(255, 0, 170, 0.14) 0%, transparent 70%);
	bottom: 40%;
	left: 0%;
	filter: blur(55px);
	transform: rotate(-20deg) scale(1.5, 0.8);
}

.fc-splatter-3 {
	width: 420px;
	height: 420px;
	background: radial-gradient(ellipse at center, rgba(255, 0, 170, 0.12) 0%, transparent 70%);
	top: 55%;
	left: 40%;
	filter: blur(50px);
	transform: rotate(15deg) scale(1.6, 0.7);
}

/* Floating orb animations */
@keyframes float-orb-1 {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(30px, -40px) scale(1.05);
	}
	50% {
		transform: translate(-20px, 20px) scale(0.95);
	}
	75% {
		transform: translate(15px, -15px) scale(1.02);
	}
}

@keyframes float-orb-2 {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(-25px, 35px) scale(1.08);
	}
	66% {
		transform: translate(20px, -25px) scale(0.92);
	}
}

@keyframes float-orb-3 {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(35px, -30px) scale(1.1);
	}
}

@keyframes float-orb-4 {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	40% {
		transform: translate(-20px, 25px) scale(0.9);
	}
	80% {
		transform: translate(25px, -20px) scale(1.05);
	}
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.15);
	}
}

/* Ensure main content is above the background */
main,
footer,
.wp-site-blocks > * {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   Glassmorphism Cards
   ========================================================================== */

.is-style-glass-card,
.glass-card {
	background: var(--fc-glass-bg) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--fc-glass-border) !important;
	border-radius: var(--fc-radius-xl);
	transition: border-color var(--fc-transition-base), box-shadow var(--fc-transition-base);
}

.is-style-glass-card:hover,
.glass-card:hover {
	border-color: hsl(324 100% 50% / 0.3) !important;
	box-shadow: 0 0 30px hsl(324 100% 50% / 0.1);
}

/* Glass card with glow on hover */
.glass-card-glow:hover {
	box-shadow: 
		0 0 30px hsl(324 100% 50% / 0.15),
		0 0 60px hsl(324 100% 50% / 0.1);
}

/* ==========================================================================
   Gradient Border
   ========================================================================== */

.is-style-gradient-border,
.gradient-border {
	position: relative;
	background: var(--fc-background) !important;
	border: none !important;
	border-radius: var(--fc-radius-xl);
}

.is-style-gradient-border::before,
.gradient-border::before {
	content: '';
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		135deg,
		var(--fc-primary) 0%,
		var(--fc-primary-light) 50%,
		var(--fc-primary) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* ==========================================================================
   Gradient Text
   ========================================================================== */

.is-style-gradient-text,
.gradient-text {
	background-image: linear-gradient(
		135deg,
		#ff00aa 0%,
		#ff3fbd 25%,
		#ff6ad5 40%,
		#ff00aa 55%,
		#ff50c8 75%,
		#ff80d5 85%,
		#ff00aa 100%
	) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 20px hsl(324 100% 50% / 0.3));
}

/* Subtle glow for H1 gradient text */
h1 .gradient-text {
	filter: drop-shadow(0 0 25px hsl(324 100% 50% / 0.35));
}

/* Hero plain text — bright white with subtle glow */
.fc-hero-white {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Gold gradient text for marketing headlines */
.is-style-gold-gradient-text,
.gold-gradient-text,
span.gold-gradient-text {
	background: linear-gradient(
		135deg,
		#FFD700 0%,
		#FFA500 25%,
		#FFD700 50%,
		#FFEC8B 75%,
		#FFD700 100%
	) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	display: inline;
	filter: drop-shadow(0 0 30px hsl(45 100% 50% / 0.5)) drop-shadow(0 0 60px hsl(45 100% 50% / 0.3));
}

/* Extra pop for H1 gold gradient */
h1 .gold-gradient-text {
	filter: drop-shadow(0 0 40px hsl(45 100% 50% / 0.7)) drop-shadow(0 0 90px hsl(45 100% 50% / 0.45)) drop-shadow(0 0 120px hsl(45 100% 50% / 0.2));
}

/* ==========================================================================
   Gradient Buttons
   ========================================================================== */

.is-style-gradient-btn .wp-block-button__link,
.gradient-btn {
	background: linear-gradient(
		135deg,
		var(--fc-primary) 0%,
		hsl(324 100% 60%) 50%,
		var(--fc-primary) 100%
	) !important;
	background-size: 200% 200% !important;
	animation: gradient-shift 3s ease infinite;
	color: #fff !important;
	font-weight: 600;
	border: 1px solid hsl(0 0% 100% / 0.2) !important;
	border-radius: var(--fc-radius-md);
	box-shadow: 
		0 0 20px hsl(324 100% 50% / 0.3),
		inset 0 1px 0 hsl(0 0% 100% / 0.2);
	transition: box-shadow var(--fc-transition-base), transform var(--fc-transition-fast);
}

.is-style-gradient-btn .wp-block-button__link:hover,
.gradient-btn:hover {
	box-shadow: 
		0 0 30px hsl(324 100% 50% / 0.5),
		0 0 60px hsl(324 100% 50% / 0.3),
		inset 0 1px 0 hsl(0 0% 100% / 0.3);
	transform: translateY(-2px);
}

.is-style-gradient-btn .wp-block-button__link:active,
.gradient-btn:active {
	transform: translateY(0);
}

/* Gradient button with pulse */
.gradient-btn-pulse {
	animation: gradient-shift 3s ease infinite, pulse-glow-shadow 2s ease-in-out infinite;
}

/* ==========================================================================
   Gold Outline / Sign In Buttons
   ========================================================================== */

.is-style-outline-btn .wp-block-button__link,
.outline-btn {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
	background-size: 200% 200% !important;
	animation: gradient-shift 3s ease infinite;
	color: #0a0a0f !important;
	font-weight: 700;
	border: 1px solid rgba(255, 215, 0, 0.4) !important;
	border-radius: var(--fc-radius-md);
	transition: box-shadow var(--fc-transition-base), transform var(--fc-transition-fast);
}

.is-style-outline-btn .wp-block-button__link:hover,
.outline-btn:hover {
	background: linear-gradient(135deg, #FFEC8B 0%, #FFD700 50%, #FFA500 100%) !important;
	border-color: #FFD700 !important;
	color: #0a0a0f !important;
	box-shadow: 0 0 20px hsl(45 100% 50% / 0.3);
	transform: translateY(-2px);
}

/* ==========================================================================
   Glow Effects
   ========================================================================== */

.glow-primary {
	box-shadow: 
		0 0 20px hsl(324 100% 50% / 0.3),
		0 0 40px hsl(324 100% 50% / 0.2);
}

.glow-success {
	box-shadow: 0 0 20px hsl(161 100% 51% / 0.3);
}

/* Input focus glow */
.input-glow:focus,
input:focus,
textarea:focus,
select:focus {
	box-shadow: 
		0 0 0 2px hsl(324 100% 50% / 0.3),
		0 0 20px hsl(324 100% 50% / 0.2);
	border-color: hsl(324 100% 50% / 0.5) !important;
	outline: none;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.fc-form input,
.fc-form textarea,
.fc-form select {
	background: var(--fc-muted);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-md);
	color: var(--fc-foreground);
	padding: 0.75rem 1rem;
	font-size: 1rem;
	width: 100%;
	transition: border-color var(--fc-transition-base), box-shadow var(--fc-transition-base);
}

.fc-form input::placeholder,
.fc-form textarea::placeholder {
	color: var(--fc-muted-foreground);
}

.fc-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--fc-foreground);
}

.fc-form .form-group {
	margin-bottom: 1.5rem;
}

/* Form success/error states */
.fc-form-success {
	background: hsl(161 100% 51% / 0.1);
	border: 1px solid hsl(161 100% 51% / 0.3);
	border-radius: var(--fc-radius-md);
	padding: 1rem;
	color: var(--fc-success);
	text-align: center;
}

.fc-form-error {
	background: hsl(0 84% 60% / 0.1);
	border: 1px solid hsl(0 84% 60% / 0.3);
	border-radius: var(--fc-radius-md);
	padding: 1rem;
	color: hsl(0 84% 60%);
	text-align: center;
}

/* ==========================================================================
   Badge Styles
   ========================================================================== */

.fc-badge {
	display: inline-block;
	background: hsl(324 100% 50% / 0.2);
	border: 1px solid hsl(0 0% 100% / 0.2);
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.fc-badge-outline {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid hsl(0 0% 100% / 0.15);
	color: var(--fc-foreground);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* ==========================================================================
   Phone Mockup Styles
   ========================================================================== */

.phone-mockup {
	position: relative;
	border-radius: 2.5rem;
	overflow: hidden;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-mockup img {
	display: block;
	width: 100%;
	height: auto;
}

/* Floating animation for phone mockups */
.phone-float-left {
	animation: float-left 6s ease-in-out infinite;
}

.phone-float-right {
	animation: float-right 6s ease-in-out infinite;
	animation-delay: 1s;
}

/* ==========================================================================
   Step Connector Line
   ========================================================================== */

.step-connector {
	position: relative;
}

.step-connector::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--fc-primary), transparent);
	transform: translateY(-50%);
}

/* Step number */
.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--fc-primary), var(--fc-primary-light));
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
}

/* ==========================================================================
   Pricing Card Styles
   ========================================================================== */

.pricing-card {
	position: relative;
	overflow: hidden;
}

.pricing-popular {
	position: absolute;
	top: 1rem;
	right: -2rem;
	background: var(--fc-primary);
	color: #fff;
	padding: 0.25rem 3rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	transform: rotate(45deg);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes gradient-shift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes pulse-glow-shadow {
	0%, 100% {
		box-shadow: 0 0 20px hsl(324 100% 50% / 0.3);
	}
	50% {
		box-shadow: 0 0 40px hsl(324 100% 50% / 0.6);
	}
}

@keyframes float-left {
	0%, 100% {
		transform: translateY(0) rotate(-6deg);
	}
	50% {
		transform: translateY(-20px) rotate(-6deg);
	}
}

@keyframes float-right {
	0%, 100% {
		transform: translateY(0) rotate(6deg);
	}
	50% {
		transform: translateY(-15px) rotate(6deg);
	}
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide-in-right {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Fade in animation class */
.fade-in-up {
	animation: fade-in-up 0.6s ease-out forwards;
}

/* ==========================================================================
   Sticky Header Styles
   ========================================================================== */

.site-header {
	position: sticky !important;
	position: -webkit-sticky !important;
	top: 0 !important;
	z-index: 1000;
	min-height: 68px;
	transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	background: var(--fc-glass-bg) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--fc-glass-border);
	box-shadow: 0 2px 20px rgba(255, 0, 170, 0.05);
}

/* When mobile menu is open, remove backdrop-filter from header.
   backdrop-filter creates a containing block that traps position:fixed
   descendants (the nav overlay) inside the header bounds. */
.site-header:has(.wp-block-navigation__responsive-container.is-menu-open),
.site-header.fc-menu-open {
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.site-header img,
.site-header figure {
	transition: width 0.3s ease;
}

.site-header.is-scrolled img {
	width: 44px !important;
}

/* Header layout: logo left, nav+buttons right, never wrap */
.site-header .alignwide > .wp-block-group:first-child {
	flex-shrink: 0;
}

/* Header buttons should stay inline */
.fc-header-buttons {
	flex-wrap: nowrap !important;
	flex-shrink: 0;
}

/* Mobile/tablet: reorder so buttons sit left of hamburger */
/* Note: 1099px matches Ollie Menu Designer's breakpoint-1 calculation */
@media (max-width: 1099px) {
	.site-header {
		min-height: 56px;
	}

	/* Buttons stay in natural position, hamburger goes far right */
	.site-header .wp-block-navigation {
		order: 3;
	}

	.fc-header-buttons {
		order: 2;
	}

	/* Smaller logo */
	.site-header img {
		width: 48px !important;
	}

	.site-header.is-scrolled img {
		width: 40px !important;
	}
}

/* Very small screens: compact buttons */
@media (max-width: 480px) {
	.fc-header-buttons .wp-block-button__link {
		padding-left: 0.6em !important;
		padding-right: 0.6em !important;
		font-size: 0.7rem !important;
	}
}


/* ==========================================================================
   FAQ Accordion Styles
   ========================================================================== */

.wp-block-details {
	background: var(--fc-glass-bg);
	border: 1px solid var(--fc-glass-border);
	border-radius: var(--fc-radius-lg);
	padding: 0;
	margin-bottom: 1rem;
	overflow: hidden;
}

.wp-block-details summary {
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color var(--fc-transition-base);
}

.wp-block-details summary::-webkit-details-marker {
	display: none;
}

.wp-block-details summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform var(--fc-transition-base);
}

.wp-block-details[open] summary::after {
	transform: rotate(45deg);
}

.wp-block-details summary:hover {
	color: var(--fc-primary);
}

.wp-block-details > *:not(summary) {
	padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Text colors */
.text-primary {
	color: var(--fc-primary) !important;
}

.text-muted {
	color: var(--fc-muted-foreground) !important;
}

.text-success {
	color: var(--fc-success) !important;
}

/* Background colors */
.bg-glass {
	background: var(--fc-glass-bg) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.bg-muted {
	background: var(--fc-muted) !important;
}

/* Borders */
.border-glass {
	border: 1px solid var(--fc-glass-border) !important;
}

.border-primary {
	border-color: var(--fc-primary) !important;
}

/* ==========================================================================
   Typography Scale - H1 biggest, stepping down
   ========================================================================== */

h1,
h1.wp-block-heading {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.02em;
}

h2,
h2.wp-block-heading {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 700;
}

/* Landing page section H2s - pink/gold gradient with drop shadow */
h2.wp-block-heading.has-text-align-center {
	background-image: linear-gradient(135deg, #ff00aa 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 0, 170, 0.25));
}

h3,
h3.wp-block-heading {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 600;
}

@media (max-width: 768px) {
	h1,
	h1.wp-block-heading {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	h2,
	h2.wp-block-heading {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
	}

	h3,
	h3.wp-block-heading {
		font-size: clamp(1.125rem, 5vw, 1.5rem);
	}
}

/* ==========================================================================
   Navigation Link Styling - Pink/Gold gradients
   ========================================================================== */

/* Desktop nav links - always gradient */
.site-header .wp-block-navigation-link a,
.site-header .wp-block-navigation-item a {
	background-image: linear-gradient(135deg, #ff00aa 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	transition: filter 0.2s ease;
}

.site-header .wp-block-navigation-link a:hover,
.site-header .wp-block-navigation-item a:hover {
	filter: brightness(1.2);
}

/* Mobile nav links */
.fc-mobile-nav-link a {
	background-image: linear-gradient(135deg, #ff00aa 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
}

.fc-mobile-nav-link a:hover {
	filter: brightness(1.2);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 781px) {
	/* Stack phone mockups on mobile */
	.phone-mockup-container {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.phone-float-left,
	.phone-float-right {
		transform: rotate(0) !important;
		animation: none;
	}

	.phone-float-right {
		margin-top: 0 !important;
		margin-left: 0 !important;
	}

	/* Reduce animation intensity on mobile */
	.gradient-btn:hover {
		transform: none;
	}

	/* Adjust badge size */
	.fc-badge {
		font-size: 0.75rem;
		padding: 0.375rem 0.75rem;
	}

	/* Step connector hidden on mobile */
	.step-connector::after {
		display: none;
	}

	/* Ensure headings are bold and readable on mobile */
	h1.wp-block-heading,
	.wp-block-heading[style*="line-height"] {
		word-break: break-word;
	}

	/* Ensure buttons have proper touch targets (44px min) */
	.wp-block-button__link {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	/* Full-width buttons on small screens - ONLY in main content, not header */
	main .wp-block-buttons {
		flex-direction: column;
	}
	
	main .wp-block-button {
		width: 100%;
	}
	
	main .wp-block-button__link {
		width: 100%;
		text-align: center;
	}

	/* Make pricing columns stack nicely */
	.wp-block-columns {
		gap: 1.5rem !important;
	}

	/* Tighter section padding on mobile */
	.wp-block-group.alignfull:not(.site-header) {
		padding-top: var(--wp--preset--spacing--x-large) !important;
		padding-bottom: var(--wp--preset--spacing--x-large) !important;
	}

	/* Modal adjustments for mobile */
	.fc-modal-content {
		padding: 1.5rem;
		max-height: 95vh;
	}

	.fc-modal-title {
		font-size: 1.25rem;
	}
}

/* Small phones */
@media (max-width: 375px) {
	.fc-modal-content {
		padding: 1rem;
	}

	.fc-form-row {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Waitlist Modal Styles
   ========================================================================== */

.fc-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fc-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.fc-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
}

.fc-modal-content {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	border-radius: var(--fc-radius-xl);
	transform: scale(0.95) translateY(20px);
	transition: transform 0.3s ease;
}

.fc-modal.is-open .fc-modal-content {
	transform: scale(1) translateY(0);
}

.fc-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: var(--fc-muted-foreground);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--fc-radius-md);
	transition: color 0.2s ease, background 0.2s ease;
}

.fc-modal-close:hover {
	color: var(--fc-foreground);
	background: var(--fc-muted);
}

.fc-modal-header {
	margin-bottom: 1.5rem;
}

.fc-modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.fc-modal-description {
	color: var(--fc-muted-foreground);
	font-size: 0.9375rem;
	margin: 0;
}

/* Modal Form Styles */
.fc-modal-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 540px) {
	.fc-form-row {
		grid-template-columns: 1fr;
	}
}

.fc-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.fc-form-group label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fc-foreground);
}

.fc-form-group input,
.fc-form-group select {
	background: var(--fc-muted);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-md);
	color: var(--fc-foreground);
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc-form-group input::placeholder {
	color: var(--fc-muted-foreground);
}

.fc-modal .fc-form-group input,
.fc-modal .fc-form-group select {
	color: #1a1a1a;
	background: #ffffff;
	border-color: #d1d5db;
}

.fc-modal .fc-form-group input::placeholder {
	color: #6b7280;
}

.fc-form-group input:focus,
.fc-form-group select:focus {
	outline: none;
	border-color: var(--fc-primary);
	box-shadow: 0 0 0 3px hsl(324 100% 50% / 0.2);
}

.fc-modal-submit {
	margin-top: 0.5rem;
	padding: 1rem !important;
	font-size: 1rem !important;
	width: 100%;
	cursor: pointer;
}

.fc-modal-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.fc-modal-privacy {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--fc-muted-foreground);
	margin-top: 1rem;
	margin-bottom: 0;
}

/* Modal Success State */
.fc-modal-success {
	text-align: center;
	padding: 2rem 0;
}

.fc-modal-success-icon {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--fc-primary), hsl(324 100% 60%));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.fc-modal-success-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.75rem 0;
}

.fc-modal-success-message {
	color: var(--fc-muted-foreground);
	font-size: 0.9375rem;
	margin: 0;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.fc-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--fc-glass-bg);
	border: 1px solid hsl(0 0% 100% / 0.15);
	color: var(--fc-foreground);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 1000;
}

.fc-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fc-back-to-top:hover {
	background: var(--fc-primary);
	border-color: var(--fc-primary);
}

/* ==========================================================================
   Sticky App Store Footer
   ========================================================================== */

.fc-app-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--fc-glass-bg);
	border-top: 1px solid hsl(0 0% 100% / 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 0.75rem 1rem;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fc-app-footer-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.fc-app-footer-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fc-foreground);
}

.fc-app-footer-buttons {
	display: flex;
	gap: 0.5rem;
}

.fc-app-store-btn {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	background: var(--fc-primary);
	border-radius: var(--fc-radius-md);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fc-app-store-btn:hover {
	background: var(--fc-primary-light);
	transform: translateY(-1px);
}

.fc-app-footer-close {
	position: absolute;
	right: 1rem;
	background: transparent;
	border: none;
	color: var(--fc-muted-foreground);
	cursor: pointer;
	padding: 0.5rem;
}

.fc-app-footer-close:hover {
	color: var(--fc-foreground);
}

@media (max-width: 600px) {
	.fc-app-footer-text {
		display: none;
	}
	
	.fc-back-to-top {
		bottom: 5rem;
		right: 1rem;
	}
}

/* ==========================================================================
   Mobile Menu Styles (Ollie Menu Designer)
   ========================================================================== */

/* Mobile menu overlay — full screen, dark, blurred */
.wp-block-navigation__responsive-container.is-menu-open {
	background: rgba(10, 10, 15, 0.97) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 100000 !important;
}

/* Mobile menu content wrapper */
.wp-block-navigation__mobile-menu-content {
	padding: 0;
}

/* Mobile nav links */
.fc-mobile-nav-link {
	width: 100%;
	margin: 0 !important;
}

.fc-mobile-nav-link a {
	text-decoration: none !important;
	display: block;
}

/* Hamburger + close button SVG icons — white on dark bg */
.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
	fill: var(--fc-foreground) !important;
}

.wp-block-navigation__responsive-container-close {
	color: var(--fc-foreground) !important;
}

/* Hamburger button styling */
@media (max-width: 1099px) {
	.wp-block-navigation__responsive-container-open {
		color: var(--fc-foreground);
		background: none;
		border: none;
		padding: 0.5rem;
		cursor: pointer;
	}
}

/* ==========================================================================
   Legal Page Styles (Privacy Policy, Terms)
   ========================================================================== */

.page-template-default h2 {
	margin-top: 2rem;
}

.page-template-default h3 {
	margin-top: 1.5rem;
}

.page-template-default ul {
	padding-left: 1.5rem;
}

.page-template-default li {
	margin-bottom: 0.5rem;
}

/* ==========================================================================
   Footer Link Styles
   ========================================================================== */

/* Footer logo: blend dark bg into site bg */
.fc-footer .wp-block-image img {
	mix-blend-mode: lighten;
}

/* Footer column links - pink/gold gradient (matches nav) */
.fc-footer .wp-block-column a {
	background-image: linear-gradient(135deg, #ff00aa 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.fc-footer .wp-block-column a:hover {
	filter: brightness(1.2);
}

/* Footer non-column links (logo, bottom email) stay default */
.fc-footer a {
	text-decoration: none;
}

/* ==========================================================================
   Page Hero (Legal, About, generic pages)
   ========================================================================== */

.fc-page-hero {
	position: relative;
	overflow: hidden;
}

/* Pink/gold radial glow behind title */
.fc-page-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 250px;
	background: radial-gradient(ellipse at center, rgba(255, 0, 170, 0.12) 0%, rgba(255, 215, 0, 0.04) 50%, transparent 80%);
	pointer-events: none;
	z-index: 0;
}

/* Page hero title — Big Shoulders Display, white with pink/gold glow */
.fc-page-hero-title {
	position: relative;
	z-index: 1;
	font-family: 'Big Shoulders Display', cursive !important;
	font-size: clamp(3rem, 8vw, 5rem) !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
	text-shadow: 0 0 30px rgba(255, 0, 170, 0.4), 0 0 60px rgba(255, 215, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Legal/About page section H2s — pink-to-gold gradient (matches nav links) */
h2.wp-block-heading.has-primary-color {
	background-image: linear-gradient(135deg, #ff00aa 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(255, 0, 170, 0.2));
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.fc-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fc-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered children within a revealed section */
.fc-reveal .wp-block-column,
.fc-reveal .wp-block-details,
.fc-reveal .glass-card,
.fc-reveal .is-style-glass-card,
.fc-reveal .gradient-border {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fc-reveal.is-visible .wp-block-column,
.fc-reveal.is-visible .wp-block-details,
.fc-reveal.is-visible .glass-card,
.fc-reveal.is-visible .is-style-glass-card,
.fc-reveal.is-visible .gradient-border {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger delays for children */
.fc-reveal.is-visible > .wp-block-columns > .wp-block-column:nth-child(1),
.fc-reveal.is-visible > * > .wp-block-column:nth-child(1),
.fc-reveal.is-visible .glass-card:nth-child(1),
.fc-reveal.is-visible .is-style-glass-card:nth-child(1) { transition-delay: 0.1s; }

.fc-reveal.is-visible > .wp-block-columns > .wp-block-column:nth-child(2),
.fc-reveal.is-visible > * > .wp-block-column:nth-child(2),
.fc-reveal.is-visible .glass-card:nth-child(2),
.fc-reveal.is-visible .is-style-glass-card:nth-child(2) { transition-delay: 0.2s; }

.fc-reveal.is-visible > .wp-block-columns > .wp-block-column:nth-child(3),
.fc-reveal.is-visible > * > .wp-block-column:nth-child(3),
.fc-reveal.is-visible .glass-card:nth-child(3),
.fc-reveal.is-visible .is-style-glass-card:nth-child(3) { transition-delay: 0.3s; }

.fc-reveal.is-visible > .wp-block-columns > .wp-block-column:nth-child(4),
.fc-reveal.is-visible > * > .wp-block-column:nth-child(4) { transition-delay: 0.4s; }

/* Stagger FAQ accordions */
.fc-reveal.is-visible .wp-block-details:nth-child(1) { transition-delay: 0.05s; }
.fc-reveal.is-visible .wp-block-details:nth-child(2) { transition-delay: 0.1s; }
.fc-reveal.is-visible .wp-block-details:nth-child(3) { transition-delay: 0.15s; }
.fc-reveal.is-visible .wp-block-details:nth-child(4) { transition-delay: 0.2s; }
.fc-reveal.is-visible .wp-block-details:nth-child(5) { transition-delay: 0.25s; }

/* ==========================================================================
   Enhanced Card Hover Effects
   ========================================================================== */

/* Glass cards: lift + glow on hover */
.is-style-glass-card:hover,
.glass-card:hover {
	transform: translateY(-4px);
	border-color: hsl(324 100% 50% / 0.3) !important;
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.3),
		0 0 30px hsl(324 100% 50% / 0.1);
	transition: transform var(--fc-transition-base), border-color var(--fc-transition-base), box-shadow var(--fc-transition-base);
}

/* Gradient border cards: lift on hover */
.gradient-border:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	transition: transform var(--fc-transition-base), box-shadow var(--fc-transition-base);
}

/* Feature card icon scale on hover */
.glass-card:hover svg,
.is-style-glass-card:hover svg {
	transform: scale(1.15);
	transition: transform var(--fc-transition-base);
}

.glass-card svg,
.is-style-glass-card svg {
	transition: transform var(--fc-transition-base);
}

/* Pricing card popular tier: gradient border */
.wp-block-column:has(.gradient-btn) .glass-card,
.wp-block-column:has(.is-style-gradient-btn) .glass-card {
	border-color: hsl(324 100% 50% / 0.3) !important;
}

/* ==========================================================================
   Button & Link Micro-interactions
   ========================================================================== */

/* CTA buttons: add arrow nudge (not inside modals or header) */
main .is-style-gradient-btn .wp-block-button__link::after {
	content: ' \2192';
	display: inline-block;
	transition: transform var(--fc-transition-fast);
}

main .is-style-gradient-btn .wp-block-button__link:hover::after {
	transform: translateX(4px);
}

/* Pulsing green dot for hero badge */
.fc-badge::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fc-success);
	margin-right: 0.5rem;
	animation: badge-pulse 2s ease-in-out infinite;
	vertical-align: middle;
}

@keyframes badge-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 hsl(161 100% 51% / 0.4); }
	50% { opacity: 0.7; box-shadow: 0 0 0 6px hsl(161 100% 51% / 0); }
}

/* FAQ items hover lift */
.wp-block-details:hover {
	border-color: hsl(324 100% 50% / 0.2) !important;
	transform: translateY(-1px);
	transition: border-color var(--fc-transition-base), transform var(--fc-transition-base);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

/* ==========================================================================
   Reduced Motion — Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	/* Disable all floating orb animations */
	.fc-orb,
	.fc-glow {
		animation: none !important;
	}

	/* Disable splatter transforms */
	.fc-splatter {
		animation: none !important;
	}

	/* Disable gradient button shift */
	.is-style-gradient-btn .wp-block-button__link,
	.gradient-btn,
	.is-style-outline-btn .wp-block-button__link,
	.outline-btn,
	.gradient-btn-pulse {
		animation: none !important;
	}

	/* Disable phone float animations */
	.phone-float-left,
	.phone-float-right {
		animation: none !important;
	}

	/* Disable scroll reveal transitions — show content immediately */
	.fc-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.fc-reveal .wp-block-column,
	.fc-reveal .wp-block-details,
	.fc-reveal .glass-card,
	.fc-reveal .is-style-glass-card,
	.fc-reveal .gradient-border {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	/* Disable card hover lift */
	.is-style-glass-card:hover,
	.glass-card:hover,
	.gradient-border:hover,
	.wp-block-details:hover {
		transform: none !important;
	}

	/* Disable badge pulse */
	.fc-badge::before {
		animation: none !important;
	}

	/* Disable modal transition */
	.fc-modal,
	.fc-modal-content {
		transition: none !important;
	}

	/* Disable back-to-top transition */
	.fc-back-to-top {
		transition: none !important;
	}
}

@media print {
	.gradient-btn,
	.is-style-gradient-btn .wp-block-button__link {
		background: var(--fc-primary) !important;
		animation: none;
	}

	.glass-card,
	.is-style-glass-card {
		background: #fff !important;
		backdrop-filter: none;
	}
	
	.fc-modal {
		display: none !important;
	}
}
