/* ==========================================================================
   Morphe Global Design System
   Dark theme foundation for morphe.io
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	/* Colors — aligned to PRD design tokens */
	--morphe-charcoal: #0a0a0a;
	--morphe-navy: #0d0d0d;
	--morphe-dark-surface: #111111;
	--morphe-card-bg: rgba(255, 255, 255, 0.04);
	--morphe-structural-gray: #7f8c8d;
	--morphe-text-primary: #ffffff;
	--morphe-text-secondary: #94a3b8;
	--morphe-accent: #d306b0;
	--morphe-accent-hover: #e017c0;
	--morphe-accent-glow: rgba(211, 6, 176, 0.15);
	--morphe-gradient: linear-gradient(135deg, #4900af, #d306b0, #ff0040, #ffcd0c);
	--morphe-gradient-btn: linear-gradient(135deg, #4900af 0%, #d306b0 100%);
	--morphe-gradient-btn-hover: linear-gradient(135deg, #5a10c0 0%, #e017c0 100%);
	--morphe-border: rgba(255, 255, 255, 0.08);

	/* Typography */
	--morphe-font-heading: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--morphe-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--morphe-font-mono: 'IBM Plex Mono', 'SF Mono', 'Consolas', monospace;

	/* Font sizes */
	--morphe-text-xs: 0.75rem;
	--morphe-text-sm: 0.875rem;
	--morphe-text-base: 1.125rem;
	--morphe-text-lg: 1.25rem;
	--morphe-text-xl: 1.5rem;
	--morphe-text-2xl: 1.75rem;
	--morphe-text-3xl: 2.5rem;
	--morphe-text-4xl: 3.5rem;

	/* Spacing */
	--morphe-space-xs: 0.5rem;
	--morphe-space-sm: 1rem;
	--morphe-space-md: 1.5rem;
	--morphe-space-lg: 2rem;
	--morphe-space-xl: 3rem;
	--morphe-space-2xl: 4rem;
	--morphe-space-3xl: 6rem;
	--morphe-space-4xl: 8rem;

	/* Layout */
	--morphe-content-width: 1200px;
	--morphe-wide-width: 1400px;
	--morphe-gutter: 2rem;

	/* Transitions */
	--morphe-transition: all 0.2s ease;
	--morphe-transition-slow: all 0.4s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	padding: 0;
	background-color: var(--morphe-charcoal);
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
	background-size: 80px 80px;
	background-position: center center;
	color: var(--morphe-text-primary);
	font-family: var(--morphe-font-body);
	font-size: var(--morphe-text-base);
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--morphe-font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--morphe-text-primary);
	margin-top: 0;
}

h1 {
	font-size: var(--morphe-text-4xl);
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: var(--morphe-text-3xl);
	letter-spacing: -0.01em;
}

h3 {
	font-size: var(--morphe-text-2xl);
}

h4 {
	font-size: var(--morphe-text-lg);
	font-weight: 500;
}

p {
	margin-top: 0;
	margin-bottom: var(--morphe-space-sm);
	color: var(--morphe-text-secondary);
}

.morphe-mono,
code,
.monospace-label {
	font-family: var(--morphe-font-mono);
}

.morphe-lead {
	font-size: var(--morphe-text-xl);
	line-height: 1.6;
	color: var(--morphe-text-secondary);
}

.morphe-small {
	font-size: var(--morphe-text-sm);
	color: var(--morphe-text-secondary);
}

.morphe-label,
h6.morphe-label {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--morphe-accent);
}

/* --------------------------------------------------------------------------
   Links
   -------------------------------------------------------------------------- */
a {
	color: var(--morphe-accent);
	text-decoration: none;
	transition: var(--morphe-transition);
}

a:hover {
	color: var(--morphe-text-primary);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.morphe-section {
	padding: var(--morphe-space-4xl) var(--morphe-gutter);
}

.morphe-section--navy {
	background-color: var(--morphe-navy);
}

.morphe-section--dark-surface {
	background-color: var(--morphe-dark-surface);
}

.morphe-section--charcoal {
	background-color: var(--morphe-charcoal);
}

.morphe-container {
	max-width: var(--morphe-content-width);
	margin: 0 auto;
	width: 100%;
}

.morphe-container--wide {
	max-width: var(--morphe-wide-width);
}

.morphe-section-header {
	max-width: 800px;
	margin-bottom: var(--morphe-space-2xl);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.morphe-card {
	background-color: var(--morphe-card-bg);
	border: 1px solid var(--morphe-border);
	padding: var(--morphe-space-lg);
	transition: var(--morphe-transition);
}

.morphe-card:hover {
	border-color: var(--morphe-structural-gray);
}

.morphe-card__label {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--morphe-accent);
	margin-bottom: var(--morphe-space-sm);
}

.morphe-card__title {
	font-family: var(--morphe-font-heading);
	font-size: var(--morphe-text-lg);
	font-weight: 600;
	color: var(--morphe-text-primary);
	margin-bottom: var(--morphe-space-xs);
}

.morphe-card__text {
	font-size: var(--morphe-text-base);
	color: var(--morphe-text-secondary);
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.morphe-grid {
	display: grid;
	gap: var(--morphe-space-lg);
}

.morphe-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.morphe-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.morphe-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.morphe-grid--5 {
	grid-template-columns: repeat(5, 1fr);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.morphe-btn {
	display: inline-block;
	font-family: var(--morphe-font-body);
	font-size: var(--morphe-text-base);
	font-weight: 500;
	text-decoration: none;
	padding: 0.875rem 2rem;
	border: none;
	cursor: pointer;
	transition: var(--morphe-transition);
	line-height: 1;
	border-radius: 0;
}

a.morphe-btn--primary,
.morphe-btn--primary {
	background-color: var(--morphe-accent);
	color: #ffffff;
}

.morphe-btn--primary:hover {
	background-color: var(--morphe-accent-hover);
	color: #fff;
}

a.morphe-btn--secondary,
.morphe-btn--secondary {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid var(--morphe-structural-gray);
}

.morphe-btn--secondary:hover {
	border-color: var(--morphe-text-primary);
}

.morphe-btn--ghost {
	background: none;
	border: none;
	color: var(--morphe-accent);
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.morphe-btn--ghost:hover {
	color: var(--morphe-text-primary);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.morphe-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: var(--morphe-space-sm) var(--morphe-gutter);
	transition: var(--morphe-transition-slow);
}

.morphe-header--transparent {
	background-color: transparent;
}

.morphe-header--solid {
	background-color: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--morphe-border);
}

.morphe-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--morphe-wide-width);
	margin: 0 auto;
}

.morphe-header__brand {
	display: flex;
	align-items: center;
	gap: var(--morphe-space-sm);
}

.morphe-header__logo {
	display: flex;
	align-items: center;
	gap: var(--morphe-space-xs);
	text-decoration: none;
}

.morphe-header__logo img {
	height: 32px;
	width: auto;
}

.morphe-header__wordmark {
	font-family: var(--morphe-font-mono);
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: var(--morphe-text-primary);
	text-transform: lowercase;
}

.morphe-header__nav {
	display: flex;
	align-items: center;
	gap: var(--morphe-space-lg);
}

.morphe-header__nav li {
	list-style: none;
}

.morphe-header__nav a {
	font-size: var(--morphe-text-sm);
	font-weight: 500;
	color: var(--morphe-text-secondary);
	text-decoration: none;
	transition: var(--morphe-transition);
}

.morphe-footer__nav a,
.morphe-footer__bottom a {
	text-decoration: none;
}

.morphe-header__nav a:hover,
.morphe-header__nav a.current,
.morphe-header__nav .current-menu-item a {
	color: var(--morphe-text-primary);
}

.morphe-header__nav .current-menu-item a {
	color: var(--morphe-accent);
}

.morphe-header__login {
	font-size: var(--morphe-text-sm);
	font-weight: 500;
	color: var(--morphe-text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.morphe-header__login:hover {
	color: var(--morphe-text-primary);
}

.morphe-header__cta {
	margin-left: var(--morphe-space-sm);
}

/* SRS Badge — dogfooding indicator */
.morphe-srs-badge {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.25rem 0.625rem;
	border: 1px solid var(--morphe-border);
	border-radius: 999px;
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-xs);
	line-height: 1;
	white-space: nowrap;
	cursor: default;
}

.morphe-srs-badge__tooltip {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	width: 260px;
	padding: 0.75rem 1rem;
	background: var(--morphe-bg-secondary, #1a1a2e);
	border: 1px solid var(--morphe-border);
	border-radius: 0.5rem;
	font-family: var(--morphe-font-body, sans-serif);
	font-size: var(--morphe-text-xs);
	font-weight: 400;
	line-height: 1.5;
	color: var(--morphe-text-secondary);
	white-space: normal;
	text-align: center;
	pointer-events: none;
	z-index: 1000;
}

.morphe-srs-badge__tooltip::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-bottom-color: var(--morphe-border);
}

.morphe-srs-badge:hover .morphe-srs-badge__tooltip {
	display: block;
}

.morphe-srs-badge__score {
	color: var(--morphe-accent);
	font-weight: 600;
}

.morphe-srs-badge__state {
	color: var(--morphe-text-secondary);
	font-weight: 500;
}

.morphe-srs-badge__score + .morphe-srs-badge__state::before {
	content: '·';
	margin-right: 0.375rem;
	color: var(--morphe-text-secondary);
	opacity: 0.5;
}

/* Site content (offset for fixed header) */
.morphe-site-content {
	padding-top: 72px;
}

/* Mobile nav toggle */
.morphe-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--morphe-space-xs);
}

.morphe-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--morphe-text-primary);
	margin: 5px 0;
	transition: var(--morphe-transition);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.morphe-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: var(--morphe-space-4xl) var(--morphe-gutter);
	background-color: var(--morphe-charcoal);
}

.morphe-hero__content {
	max-width: 800px;
}

.morphe-hero h1 {
	margin-bottom: var(--morphe-space-md);
}

.morphe-hero__sub {
	font-size: var(--morphe-text-xl);
	color: var(--morphe-text-secondary);
	line-height: 1.6;
	margin-bottom: var(--morphe-space-xl);
	max-width: 650px;
}

/* Page hero (non-homepage) */
.morphe-page-hero {
	padding: calc(var(--morphe-space-4xl) + 80px) var(--morphe-gutter) var(--morphe-space-3xl);
	background-color: var(--morphe-charcoal);
}

.morphe-page-hero h1 {
	margin-bottom: var(--morphe-space-md);
}

/* --------------------------------------------------------------------------
   Stepped Layout (How It Works)
   -------------------------------------------------------------------------- */
.morphe-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--morphe-space-lg);
}

.morphe-step__number {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-4xl);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.3);
	line-height: 1;
	margin-bottom: var(--morphe-space-sm);
}

.morphe-step__title {
	font-family: var(--morphe-font-heading);
	font-size: var(--morphe-text-lg);
	font-weight: 600;
	color: var(--morphe-text-primary);
	margin-bottom: var(--morphe-space-xs);
}

.morphe-step__text {
	color: var(--morphe-text-secondary);
}

/* --------------------------------------------------------------------------
   Metrics / Stats
   -------------------------------------------------------------------------- */
.morphe-metric {
	text-align: center;
}

.morphe-metric__value {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-3xl);
	font-weight: 700;
	color: var(--morphe-accent);
	line-height: 1;
	margin-bottom: var(--morphe-space-xs);
}

.morphe-metric__label {
	font-size: var(--morphe-text-sm);
	color: var(--morphe-text-secondary);
}

/* --------------------------------------------------------------------------
   Pricing / Tier Cards
   -------------------------------------------------------------------------- */
.morphe-tier {
	background-color: var(--morphe-card-bg);
	border: 1px solid var(--morphe-border);
	padding: var(--morphe-space-xl);
}

.morphe-tier--featured {
	border-color: var(--morphe-accent);
}

.morphe-tier__name {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--morphe-accent);
	margin-bottom: var(--morphe-space-xs);
}

.morphe-tier__price {
	font-family: var(--morphe-font-heading);
	font-size: var(--morphe-text-3xl);
	font-weight: 700;
	color: var(--morphe-text-primary);
	margin-bottom: var(--morphe-space-sm);
}

.morphe-tier__desc {
	color: var(--morphe-text-secondary);
	margin-bottom: var(--morphe-space-lg);
}

.morphe-tier__list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--morphe-space-lg);
}

.morphe-tier__list li {
	padding: var(--morphe-space-xs) 0;
	color: var(--morphe-text-secondary);
	border-bottom: 1px solid var(--morphe-border);
	font-size: var(--morphe-text-sm);
}

/* --------------------------------------------------------------------------
   Two-column Layout (ICP section)
   -------------------------------------------------------------------------- */
.morphe-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--morphe-space-2xl);
}

.morphe-two-col--reverse .morphe-two-col__left {
	order: 2;
}

.morphe-two-col--reverse .morphe-two-col__right {
	order: 1;
}

.morphe-two-col img {
	max-width: 320px;
	height: auto;
	border-radius: 8px;
	display: block;
}

/* --------------------------------------------------------------------------
   Podcast Embed
   -------------------------------------------------------------------------- */
.morphe-podcast-embed {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 8px;
}

.morphe-podcast-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --------------------------------------------------------------------------
   FAQ / Accordion
   -------------------------------------------------------------------------- */
.morphe-accordion {
	border-top: 1px solid var(--morphe-border);
}

.morphe-accordion__item {
	border-bottom: 1px solid var(--morphe-border);
}

.morphe-accordion__trigger {
	width: 100%;
	background: none;
	border: none;
	padding: var(--morphe-space-md) 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--morphe-space-sm);
	cursor: pointer;
	text-align: left;
}

.morphe-accordion__title {
	font-family: var(--morphe-font-heading);
	font-size: var(--morphe-text-lg);
	font-weight: 500;
	color: var(--morphe-text-primary);
	min-width: 0;
	flex: 1 1 0%;
	white-space: normal;
}

.morphe-accordion__icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	color: var(--morphe-structural-gray);
	transition: var(--morphe-transition);
	flex-shrink: 0;
	margin-left: var(--morphe-space-sm);
}

.morphe-accordion__item.is-open .morphe-accordion__icon {
	transform: rotate(45deg);
}

.morphe-accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.morphe-accordion__content-inner {
	padding-bottom: var(--morphe-space-md);
	color: var(--morphe-text-secondary);
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.morphe-form {
	max-width: 640px;
}

.morphe-form__group {
	margin-bottom: var(--morphe-space-md);
}

.morphe-form__label {
	display: block;
	font-size: var(--morphe-text-sm);
	font-weight: 500;
	color: var(--morphe-text-primary);
	margin-bottom: var(--morphe-space-xs);
}

.morphe-form input[type="text"],
.morphe-form input[type="email"],
.morphe-form select,
.morphe-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: var(--morphe-dark-surface);
	border: 1px solid var(--morphe-border);
	color: var(--morphe-text-primary);
	font-family: var(--morphe-font-body);
	font-size: var(--morphe-text-base);
	transition: var(--morphe-transition);
	border-radius: 0;
	-webkit-appearance: none;
}

.morphe-form input:focus,
.morphe-form select:focus,
.morphe-form textarea:focus {
	outline: none;
	border-color: var(--morphe-accent);
}

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

.morphe-form select {
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.morphe-footer {
	background-color: #050505;
	padding: var(--morphe-space-3xl) var(--morphe-gutter) var(--morphe-space-lg);
}

.morphe-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--morphe-space-2xl);
	max-width: var(--morphe-content-width);
	margin: 0 auto;
	padding-bottom: var(--morphe-space-xl);
	border-bottom: 1px solid var(--morphe-border);
}

.morphe-footer__logo {
	display: flex;
	align-items: center;
	gap: var(--morphe-space-xs);
	text-decoration: none;
	margin-bottom: var(--morphe-space-sm);
}

.morphe-footer__logo img {
	height: 28px;
	width: auto;
}

.morphe-footer__wordmark {
	font-family: var(--morphe-font-mono);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: var(--morphe-text-primary);
	text-transform: lowercase;
}

.morphe-footer__tagline {
	color: var(--morphe-text-secondary);
	font-size: var(--morphe-text-sm);
	max-width: 300px;
}

.morphe-footer__heading {
	font-family: var(--morphe-font-mono);
	font-size: var(--morphe-text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--morphe-structural-gray);
	margin-bottom: var(--morphe-space-sm);
}

.morphe-footer__nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.morphe-footer__nav li {
	margin-bottom: var(--morphe-space-xs);
}

.morphe-footer__nav a {
	color: var(--morphe-text-secondary);
	font-size: var(--morphe-text-sm);
}

.morphe-footer__nav a:hover {
	color: var(--morphe-text-primary);
}

.morphe-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: var(--morphe-content-width);
	margin: var(--morphe-space-md) auto 0;
	font-size: var(--morphe-text-sm);
	color: var(--morphe-structural-gray);
}

.morphe-footer__bottom a {
	color: var(--morphe-structural-gray);
}

.morphe-footer__bottom a:hover {
	color: var(--morphe-text-secondary);
}

/* --------------------------------------------------------------------------
   Sticky Mobile CTA Bar
   -------------------------------------------------------------------------- */
.morphe-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 12px var(--morphe-gutter);
	background-color: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--morphe-border);
	transform: translateY(100%);
	transition: transform 0.3s ease;
	display: none; /* shown only on mobile via responsive.css */
}

.morphe-sticky-cta.is-visible {
	transform: translateY(0);
}

.morphe-sticky-cta .morphe-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px 2rem;
}

/* Hide on SRS and Contact pages */
.page-id-2497 .morphe-sticky-cta,
.page-id-2468 .morphe-sticky-cta {
	display: none !important;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.morphe-text-center {
	text-align: center;
}

.morphe-text-accent {
	color: var(--morphe-accent);
}

.morphe-mb-0 { margin-bottom: 0; }
.morphe-mb-xs { margin-bottom: var(--morphe-space-xs); }
.morphe-mb-sm { margin-bottom: var(--morphe-space-sm); }
.morphe-mb-md { margin-bottom: var(--morphe-space-md); }
.morphe-mb-lg { margin-bottom: var(--morphe-space-lg); }
.morphe-mb-xl { margin-bottom: var(--morphe-space-xl); }
.morphe-mb-2xl { margin-bottom: var(--morphe-space-2xl); }

.morphe-mt-0 { margin-top: 0; }
.morphe-mt-lg { margin-top: var(--morphe-space-lg); }
.morphe-mt-xl { margin-top: var(--morphe-space-xl); }

.morphe-pt-header {
	padding-top: 80px;
}

.morphe-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --------------------------------------------------------------------------
   Formidable Forms — dark theme styling
   -------------------------------------------------------------------------- */
.frm_forms .frm_form_fields .frm_form_field input[type="text"],
.frm_forms .frm_form_fields .frm_form_field input[type="email"],
.frm_forms .frm_form_fields .frm_form_field select,
.frm_forms .frm_form_fields .frm_form_field textarea {
	background-color: var(--morphe-dark-surface);
	border: 1px solid var(--morphe-border);
	color: var(--morphe-text-primary);
	font-family: var(--morphe-font-body);
	font-size: 1rem;
	padding: 12px 16px;
	border-radius: 6px;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
}

.frm_forms .frm_form_fields .frm_form_field input:focus,
.frm_forms .frm_form_fields .frm_form_field select:focus,
.frm_forms .frm_form_fields .frm_form_field textarea:focus {
	outline: none;
	border-color: var(--morphe-accent);
	box-shadow: 0 0 0 3px var(--morphe-accent-glow);
}

.frm_forms .frm_primary_label {
	color: var(--morphe-text-primary) !important;
	font-family: var(--morphe-font-body);
	font-weight: 500;
	font-size: 0.875rem;
}

.frm_forms .frm_button_submit {
	background-color: var(--morphe-accent) !important;
	color: var(--morphe-charcoal) !important;
	font-family: var(--morphe-font-heading) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	padding: 16px 32px !important;
	border: none !important;
	border-radius: 6px !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
}

.frm_forms .frm_button_submit:hover {
	background-color: var(--morphe-accent-hover) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 24px var(--morphe-accent-glow) !important;
}

.frm_forms .frm_required {
	color: #ef4444 !important;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.morphe-cta-banner {
	text-align: center;
	padding: var(--morphe-space-4xl) var(--morphe-gutter);
	background-color: var(--morphe-dark-surface);
}

.morphe-cta-banner h2 {
	margin-bottom: var(--morphe-space-md);
}

.morphe-cta-banner__text {
	color: var(--morphe-text-secondary);
	font-size: var(--morphe-text-lg);
	max-width: 600px;
	margin: 0 auto var(--morphe-space-xl);
}

.morphe-cta-banner--compact {
	padding: var(--morphe-space-xl) var(--morphe-gutter);
	background-color: transparent;
}

/* --------------------------------------------------------------------------
   Alternating Section Backgrounds
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Text content readability
   -------------------------------------------------------------------------- */
.morphe-text-content {
	line-height: 1.8;
	color: var(--morphe-text-secondary);
}

.morphe-text-content p {
	max-width: 720px;
	margin-bottom: var(--morphe-space-md);
}

.morphe-two-col ul,
.morphe-two-col ol {
	list-style: none;
	padding-left: 0;
}

.morphe-text-content ul,
.morphe-text-content ol {
	padding-left: 1.25em;
}

.morphe-srs-bands,
.morphe-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	text-align: center;
}

.morphe-section--alt {
	background-color: var(--morphe-dark-surface);
}

/* --------------------------------------------------------------------------
   Overflow & Layout Fix
   -------------------------------------------------------------------------- */
html {
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	width: 100%;
}

/* Prevent content from bleeding outside containers */
.elementor-section,
.e-con {
	overflow-x: clip;
}

/* --------------------------------------------------------------------------
   Contact Form 7 — dark theme styling
   -------------------------------------------------------------------------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	background-color: var(--morphe-dark-surface);
	border: 1px solid var(--morphe-border);
	color: var(--morphe-text-primary);
	font-family: var(--morphe-font-body);
	font-size: 1rem;
	padding: 14px 16px;
	border-radius: 6px;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
	margin-bottom: 4px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--morphe-accent);
	box-shadow: 0 0 0 3px var(--morphe-accent-glow);
}

.wpcf7 textarea {
	min-height: 120px;
	resize: vertical;
}

.wpcf7 label {
	display: block;
	color: var(--morphe-text-primary);
	font-family: var(--morphe-font-body);
	font-weight: 500;
	font-size: 0.875rem;
	margin-bottom: 6px;
	margin-top: 16px;
}

.wpcf7 label:first-child {
	margin-top: 0;
}

.wpcf7 input[type="submit"],
.wpcf7 .morphe-cf7-submit {
	background-color: var(--morphe-accent) !important;
	color: var(--morphe-charcoal) !important;
	font-family: var(--morphe-font-heading) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	padding: 16px 40px !important;
	border: none !important;
	border-radius: 6px !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
	margin-top: 24px;
	width: auto;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .morphe-cf7-submit:hover {
	background-color: var(--morphe-accent-hover) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 24px var(--morphe-accent-glow) !important;
}

.wpcf7-not-valid-tip {
	color: #ef4444 !important;
	font-size: 0.8rem;
}

.wpcf7-response-output {
	border-color: var(--morphe-border) !important;
	color: var(--morphe-text-secondary) !important;
	padding: 12px 16px !important;
	border-radius: 6px !important;
}

.wpcf7 .wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--morphe-accent) !important;
	color: var(--morphe-accent) !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: rgba(248, 113, 113, 0.6) !important;
	color: #f87171 !important;
}
