/**
 * File: wp-content/plugins/optiwebopz-portfolio/assets/style.css
 * Plugin: Opti WebOpz Portfolio
 * Version: 1.0.9
 * Last rebuilt: 2026-05-14
 *
 * CLEAN REBUILD — replaces all prior layered patches (nav-fix-v1, layout-fixes-v2,
 * overflow-fix-v1, audit-fix-v1, width-fix-v1) with a single coherent stylesheet
 * mirroring the design source at design3/opti-webopz/project/styles.css plus the
 * inline styles from each section JSX file.
 *
 * Naming convention: all classes prefixed `owop-` to avoid WordPress core conflicts.
 * Mapping from design source:
 *   .container → .owop-container
 *   .section-title → .owop-section-title
 *   .section-label → .owop-eyebrow
 *   .gradient-text → .owop-gradient-text
 *   .btn-primary → .owop-btn.owop-btn--primary
 *   .btn-outline → .owop-btn.owop-btn--outline
 *   .card → .owop-card
 *   .badge → .owop-badge
 *   .tag → .owop-tag
 */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════════════
   :ROOT TOKENS — mirror design source styles.css exactly
   ═══════════════════════════════════════════════════════════════════════ */
:root {
	--owop-bg:               #06080f;
	--owop-surface:          #0c1120;
	--owop-surface-2:        #0f1a2e;
	--owop-border:           #1e2d45;
	--owop-border-2:         #263a55;
	--owop-purple:           #8b5cf6;
	--owop-purple-dark:      #6d28d9;
	--owop-purple-light:     #a78bfa;
	--owop-teal:             #14b8a6;
	--owop-teal-light:       #2dd4bf;
	--owop-text:             #f1f5f9;
	--owop-muted:            #94a3b8;
	--owop-grad:             linear-gradient(135deg, #8b5cf6 0%, #14b8a6 100%);
	--owop-r:                14px;
	--owop-r-lg:             20px;
	--owop-max-w:            1200px;
	--owop-shadow-card:      0 20px 50px rgba(0,0,0,.35);
	--owop-glow-purple:      0 0 40px rgba(139,92,246,.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   GLOBAL — only apply within plugin blocks (no body-level reset to avoid theme conflict)
   ═══════════════════════════════════════════════════════════════════════ */
[class*="wp-block-optiwebopz"] *,
[class*="wp-block-optiwebopz"] *::before,
[class*="wp-block-optiwebopz"] *::after {
	box-sizing: border-box;
}

/* Prevent horizontal scroll site-wide */
html, body { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════════════════
   CONTAINER — replaces all prior owop-container overrides
   ═══════════════════════════════════════════════════════════════════════ */
.owop-container {
	max-width: var(--owop-max-w);
	margin: 0 auto;
	width: 100%;
	padding-left: 24px;
	padding-right: 24px;
}
@media (max-width: 768px) {
	.owop-container { padding-left: 16px; padding-right: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   UTILITIES — gradient text, eyebrow, section title, sub
   ═══════════════════════════════════════════════════════════════════════ */
.owop-gradient-text {
	background: var(--owop-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
.owop-eyebrow {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--owop-teal-light);
	margin-bottom: 10px;
}
.owop-section-title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--owop-text);
}
.owop-section-sub {
	font-size: 17px;
	color: var(--owop-muted);
	line-height: 1.75;
	max-width: 540px;
	margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════
   BADGE — design source .badge
   ═══════════════════════════════════════════════════════════════════════ */
.owop-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(139,92,246,.1);
	border: 1px solid rgba(139,92,246,.28);
	border-radius: 100px;
	font-size: 12px;
	color: var(--owop-purple-light);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .07em;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS — design source .btn-primary / .btn-outline
   ═══════════════════════════════════════════════════════════════════════ */
.owop-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity .2s, transform .2s, box-shadow .2s, border-color .2s, background .2s;
	white-space: nowrap;
	border: 1px solid transparent;
	line-height: 1;
}
.owop-btn--primary {
	background: var(--owop-grad);
	color: #fff !important;
	border: none;
}
.owop-btn--primary:hover {
	opacity: .9;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(139,92,246,.4);
}
.owop-btn--outline {
	background: transparent;
	color: var(--owop-text);
	border: 1px solid var(--owop-border-2);
	font-weight: 500;
}
.owop-btn--outline:hover {
	border-color: var(--owop-purple);
	background: rgba(139,92,246,.06);
}
.owop-btn--lg { font-size: 17px; padding: 18px 40px; }

/* ═══════════════════════════════════════════════════════════════════════
   CARD — design source .card
   ═══════════════════════════════════════════════════════════════════════ */
.owop-card {
	background: var(--owop-surface);
	border: 1px solid var(--owop-border);
	border-radius: var(--owop-r);
	transition: border-color .3s, transform .3s, box-shadow .3s;
}
.owop-card:hover {
	border-color: rgba(139,92,246,.45);
	transform: translateY(-5px);
	box-shadow: var(--owop-shadow-card);
}

/* ═══════════════════════════════════════════════════════════════════════
   TAG CHIP — design source .tag
   ═══════════════════════════════════════════════════════════════════════ */
.owop-tag {
	display: inline-block;
	padding: 3px 10px;
	background: rgba(20,184,166,.1);
	border: 1px solid rgba(20,184,166,.22);
	border-radius: 100px;
	font-size: 11px;
	color: var(--owop-teal-light);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL REVEAL — design source .reveal
   ═══════════════════════════════════════════════════════════════════════ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s !important; }
.reveal-delay-2 { transition-delay: .2s !important; }
.reveal-delay-3 { transition-delay: .3s !important; }
.reveal-delay-4 { transition-delay: .4s !important; }

/* ═══════════════════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════════════════ */
@keyframes owop-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}
@keyframes owop-orb-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(40px, -30px) scale(1.08); }
	66%      { transform: translate(-25px, 20px) scale(0.95); }
}
@keyframes owop-pulse-ring {
	0%   { transform: scale(.9); opacity: .6; }
	100% { transform: scale(1.6); opacity: 0; }
}
@keyframes owop-spin-slow {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO — sections/hero.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-home-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--owop-bg);
}
.owop-home-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .65;
	pointer-events: none;
}
.owop-home-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
}
.owop-home-hero__orb--purple {
	top: 15%; left: -5%;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(109,40,217,.18) 0%, transparent 65%);
	animation: owop-orb-drift 14s ease-in-out infinite;
}
.owop-home-hero__orb--teal {
	bottom: 10%; right: -5%;
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(20,184,166,.13) 0%, transparent 65%);
	animation: owop-orb-drift 18s ease-in-out infinite reverse;
}
.owop-home-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 24px 80px;
	text-align: center;
	width: 100%;
}
.owop-home-hero__logo-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
}
.owop-home-hero__logo-inner {
	position: relative;
	display: inline-block;
}
.owop-home-hero__logo-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139,92,246,.25), transparent);
	animation: owop-pulse-ring 2.5s ease-out infinite;
	pointer-events: none;
}
.owop-home-hero__logo {
	height: 72px;
	width: auto;
	animation: owop-float 4s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(139,92,246,.5));
}
.owop-home-hero__badge { margin-bottom: 28px; }
.owop-home-hero__headline {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: clamp(48px, 8.5vw, 100px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.04em;
	margin-bottom: 28px;
	color: var(--owop-text);
}
.owop-home-hero__sub {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--owop-muted);
	max-width: 640px;
	margin: 0 auto 44px;
	line-height: 1.75;
}
.owop-home-hero__ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 80px;
}
.owop-home-hero__scroll-hint {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: .35;
}
.owop-home-hero__scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, transparent, var(--owop-purple));
}
.owop-home-hero__scroll-label {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 10px;
	color: var(--owop-muted);
	letter-spacing: .14em;
	text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS — sections/stats.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-stats-strip {
	background: #080c16;
	border-top: 1px solid var(--owop-border);
	border-bottom: 1px solid var(--owop-border);
	position: relative;
	overflow: hidden;
}
.owop-stats-strip__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(30,45,69,.25) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30,45,69,.25) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	opacity: .5;
}
.owop-stats-strip__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
	z-index: 1;
}
.owop-stat {
	text-align: center;
	padding: 40px 24px;
}
.owop-stat--border { border-right: 1px solid var(--owop-border); }
.owop-stat__number {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	background: linear-gradient(135deg, var(--owop-stat-color, #8b5cf6) 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
}
.owop-stat__label {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: var(--owop-text);
	margin-bottom: 6px;
}
.owop-stat__sub {
	font-size: 13px;
	color: #64748b;
}
@media (max-width: 768px) {
	.owop-stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
	.owop-stat--border:nth-child(2) { border-right: none; }
	.owop-stat:nth-child(odd) { border-right: 1px solid var(--owop-border); }
	.owop-stat:nth-child(-n+2) { border-bottom: 1px solid var(--owop-border); }
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES — sections/services.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-services-grid {
	background: linear-gradient(180deg, #06080f 0%, #080d18 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}
.owop-services-grid__head {
	margin-bottom: 64px;
	max-width: 560px;
}
.owop-services-grid__head .owop-section-title { margin-bottom: 8px; }
.owop-services-grid__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.owop-service-card {
	background: var(--owop-surface);
	border: 1px solid var(--owop-border);
	border-radius: var(--owop-r);
	padding: 32px;
	transition: border-color .3s, transform .3s, box-shadow .3s;
}
.owop-service-card:hover {
	border-color: rgba(139,92,246,.45);
	transform: translateY(-5px);
	box-shadow: var(--owop-shadow-card);
}
.owop-service-card__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--owop-r);
	background: color-mix(in srgb, var(--owop-svc-color, #8b5cf6) 18%, transparent);
	border: 1px solid color-mix(in srgb, var(--owop-svc-color, #8b5cf6) 30%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--owop-svc-color, #8b5cf6);
}
.owop-service-card__tagline {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--owop-svc-color, #8b5cf6);
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .8;
}
.owop-service-card__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 8px 0 12px;
	letter-spacing: -.01em;
	line-height: 1.2;
	color: var(--owop-text);
}
.owop-service-card__desc {
	font-size: 14px;
	color: var(--owop-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}
.owop-service-card__points {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.owop-service-card__points li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #cbd5e1;
}
.owop-service-card__points li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--owop-svc-color, #8b5cf6);
	flex-shrink: 0;
}
.owop-service-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 24px;
	font-size: 13px;
	font-weight: 600;
	color: var(--owop-svc-color, #8b5cf6);
	transition: gap .2s;
}
.owop-service-card__cta:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════
   PORTFOLIO PREVIEW — sections/portfolio-preview.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-portfolio-preview {
	background: var(--owop-bg);
	padding: 100px 0;
}
.owop-portfolio-preview__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
	flex-wrap: wrap;
	gap: 24px;
}
.owop-portfolio-preview__head .owop-section-sub { margin-top: 12px; }
.owop-portfolio-preview__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}
.owop-portfolio-preview .owop-card {
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}
.owop-card__shot {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--owop-surface);
}
.owop-card__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.owop-card__shot:hover img { transform: scale(1.04); }
.owop-card__shot::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(12,17,32,.9));
	pointer-events: none;
}
.owop-card__shot-fallback {
	display: none;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	color: var(--owop-muted);
}
.owop-card__shot-icon {
	font-size: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(139,92,246,.12);
}
.owop-card__shot-host { font-size: 12px; color: #4a5568; }
.owop-card__live {
	position: absolute;
	top: 14px; right: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(8px);
	border-radius: 100px;
	border: 1px solid rgba(255,255,255,.1);
	z-index: 2;
}
.owop-card__live-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 6px #22c55e;
}
.owop-card__live span {
	font-size: 11px;
	color: var(--owop-text);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-weight: 500;
}
.owop-card__body {
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.owop-card__tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.owop-card__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -.01em;
	color: var(--owop-text);
}
.owop-card__desc {
	font-size: 14px;
	color: var(--owop-muted);
	line-height: 1.65;
	margin-bottom: 18px;
}
.owop-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS — sections/process.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-process-steps {
	background: linear-gradient(180deg, #080c16 0%, #06080f 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}
.owop-process-steps__head {
	text-align: center;
	margin: 0 auto 72px;
	max-width: 560px;
}
.owop-process-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.owop-process-steps__grid::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 12.5%;
	width: 75%;
	height: 1px;
	background: linear-gradient(90deg, var(--owop-purple), var(--owop-teal));
	opacity: .3;
	z-index: 0;
}
.owop-process-step {
	padding: 0 24px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.owop-process-step__icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--owop-step-color, #8b5cf6) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--owop-step-color, #8b5cf6) 21%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	position: relative;
	color: var(--owop-step-color, #8b5cf6);
}
.owop-process-step__icon-wrap::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px dashed var(--owop-step-color, #8b5cf6);
	opacity: .2;
	animation: owop-spin-slow 20s linear infinite;
}
.owop-process-step__num {
	position: absolute;
	bottom: -4px; right: -4px;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--owop-step-color, #8b5cf6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-weight: 700;
	color: #fff;
}
/* If num is rendered as separate element (current PHP output), move it relative to icon-wrap */
.owop-process-step .owop-process-step__num {
	position: absolute;
	top: 56px;
	left: 50%;
	transform: translateX(28px);
}
.owop-process-step__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--owop-step-color, #8b5cf6);
}
.owop-process-step__desc {
	font-size: 14px;
	color: var(--owop-muted);
	line-height: 1.7;
}
@media (max-width: 900px) {
	.owop-process-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
	.owop-process-steps__grid::before { display: none; }
}
@media (max-width: 560px) {
	.owop-process-steps__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT — sections/about.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-about-section {
	background: var(--owop-bg);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}
.owop-about-section__orb {
	position: absolute;
	top: 0; right: -100px;
	width: 500px; height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139,92,246,.07) 0%, transparent 65%);
	pointer-events: none;
}
.owop-about-section__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.owop-about-section__left .owop-section-title { margin-bottom: 24px; }
.owop-about-section__body {
	font-size: 16px;
	color: var(--owop-muted);
	line-height: 1.8;
	margin-bottom: 20px;
}
.owop-about-section__ctas {
	display: flex;
	gap: 16px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.owop-about-section__right { display: grid; gap: 16px; }
.owop-about-values {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.owop-about-value {
	background: var(--owop-surface);
	border: 1px solid var(--owop-border);
	border-radius: var(--owop-r);
	padding: 28px 24px;
	transition: border-color .3s, transform .3s;
}
.owop-about-value:hover {
	border-color: rgba(139,92,246,.45);
	transform: translateY(-4px);
}
.owop-about-value__icon {
	font-size: 28px;
	margin-bottom: 10px;
	display: block;
}
.owop-about-value__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--owop-text);
}
.owop-about-value__desc {
	font-size: 13px;
	color: var(--owop-muted);
	line-height: 1.65;
}
.owop-about-cta-card {
	grid-column: span 2;
	padding: 24px;
	background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(20,184,166,.08) 100%);
	border: 1px solid rgba(139,92,246,.25);
	border-radius: var(--owop-r);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.owop-about-cta-card__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--owop-text);
}
.owop-about-cta-card__sub {
	font-size: 13px;
	color: var(--owop-muted);
	margin-top: 4px;
}
.owop-about-cta-card__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--owop-purple-light);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s;
	text-decoration: none;
}
.owop-about-cta-card__link:hover { gap: 10px; }
@media (max-width: 900px) {
	.owop-about-section__cols { grid-template-columns: 1fr; gap: 40px; }
	.owop-about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.owop-about-values { grid-template-columns: 1fr; }
	.owop-about-cta-card { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS — sections/testimonials.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-testimonials-section {
	background: linear-gradient(180deg, #06080f 0%, #080c16 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}
.owop-testimonials-section__orb {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 600px; height: 300px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(139,92,246,.06) 0%, transparent 60%);
	pointer-events: none;
}
.owop-testimonials-section__head {
	text-align: center;
	margin-bottom: 64px;
}
.owop-testimonials-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.owop-testimonial-card {
	background: var(--owop-surface);
	border: 1px solid var(--owop-border);
	border-radius: var(--owop-r);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: border-color .3s, transform .3s, box-shadow .3s;
}
.owop-testimonial-card:hover {
	border-color: rgba(139,92,246,.45);
	transform: translateY(-5px);
	box-shadow: var(--owop-shadow-card);
}
.owop-testimonial-card__stars { display: flex; gap: 3px; }
.owop-testimonial-card__quote {
	font-size: 15px;
	color: #cbd5e1;
	line-height: 1.75;
	flex: 1;
	font-style: italic;
}
.owop-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--owop-border);
}
.owop-testimonial-card__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--owop-t-color, #8b5cf6) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--owop-t-color, #8b5cf6) 25%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--owop-t-color, #8b5cf6);
	flex-shrink: 0;
}
.owop-testimonial-card__name {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--owop-text);
}
.owop-testimonial-card__role {
	font-size: 12px;
	color: #64748b;
	margin-top: 2px;
}
@media (max-width: 900px) {
	.owop-testimonials-section__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BLOG PREVIEW — sections/blog.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-blog-preview {
	background: var(--owop-bg);
	padding: 100px 0;
}
.owop-blog-preview__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
	flex-wrap: wrap;
	gap: 20px;
}
.owop-blog-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.owop-blog-card {
	background: var(--owop-surface);
	border: 1px solid var(--owop-border);
	border-radius: var(--owop-r);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: border-color .3s, transform .3s, box-shadow .3s;
}
.owop-blog-card:hover {
	border-color: rgba(139,92,246,.45);
	transform: translateY(-5px);
	box-shadow: var(--owop-shadow-card);
}
.owop-blog-card__bar {
	height: 3px;
	background: linear-gradient(90deg, var(--owop-blog-color, #8b5cf6), transparent);
}
.owop-blog-card__body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}
.owop-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.owop-blog-card__tag {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	background: color-mix(in srgb, var(--owop-blog-color, #8b5cf6) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--owop-blog-color, #8b5cf6) 25%, transparent);
	border-radius: 100px;
	color: var(--owop-blog-color, #8b5cf6);
	letter-spacing: .04em;
	text-transform: uppercase;
}
.owop-blog-card__date { font-size: 12px; color: #4a5568; }
.owop-blog-card__title {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.01em;
	color: var(--owop-text);
	flex: 1;
}
.owop-blog-card__excerpt {
	font-size: 13px;
	color: var(--owop-muted);
	line-height: 1.7;
}
.owop-blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--owop-border);
	margin-top: auto;
}
.owop-blog-card__read-time {
	font-size: 12px;
	color: #4a5568;
	font-family: 'Space Grotesk', system-ui, sans-serif;
}
.owop-blog-card__read-more {
	font-size: 13px;
	font-weight: 600;
	color: var(--owop-blog-color, #8b5cf6);
}
@media (max-width: 900px) {
	.owop-blog-preview__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA BANNER — sections/cta-banner.jsx
   ═══════════════════════════════════════════════════════════════════════ */
.owop-cta-section {
	background: var(--owop-bg);
	padding: 80px 24px;
}
.owop-cta-box {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(109,40,217,.2) 0%, rgba(20,184,166,.12) 100%);
	border: 1px solid rgba(139,92,246,.28);
	border-radius: 24px;
	padding: 72px 48px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.owop-cta-box__orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.owop-cta-box__orb--purple {
	top: -30%; left: -10%;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 65%);
}
.owop-cta-box__orb--teal {
	bottom: -30%; right: -5%;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(20,184,166,.1) 0%, transparent 65%);
}
.owop-cta-box__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(139,92,246,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139,92,246,.04) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
	border-radius: 24px;
}
.owop-cta-box__inner { position: relative; z-index: 1; }
.owop-cta-box__badge {
	display: inline-flex;
	margin-bottom: 24px;
	padding: 6px 14px;
	background: rgba(139,92,246,.1);
	border: 1px solid rgba(139,92,246,.28);
	border-radius: 100px;
	font-size: 12px;
	color: var(--owop-purple-light);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .07em;
}
.owop-cta-box__headline {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: clamp(32px, 5vw, 60px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	margin-bottom: 20px;
	color: var(--owop-text);
}
.owop-cta-box__sub {
	font-size: 18px;
	color: var(--owop-muted);
	max-width: 520px;
	margin: 0 auto 40px;
	line-height: 1.7;
}
.owop-cta-box__ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.owop-cta-box__chips {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}
.owop-cta-box__chip {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #64748b;
}
@media (max-width: 599px) {
	.owop-cta-box { padding: 48px 24px; }
	.owop-cta-box__ctas .owop-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   WORDPRESS NAV (header.html via FSE) — design source components/shared.jsx
   ═══════════════════════════════════════════════════════════════════════ */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(6,8,15,.93);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(30,45,69,.7);
}
header.wp-block-template-part > .wp-block-group {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 0 24px;
}
header.wp-block-template-part > .wp-block-group > .wp-block-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 32px;
}
header.wp-block-template-part .wp-block-navigation {
	margin-left: auto;
	margin-right: 32px;
}
header.wp-block-template-part .wp-block-navigation__container {
	display: flex;
	gap: 36px;
	align-items: center;
}
header.wp-block-template-part .wp-block-navigation-item { margin: 0; padding: 0; }
header.wp-block-template-part .wp-block-navigation-item__content {
	color: var(--owop-muted);
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 0;
	transition: color .2s;
}
header.wp-block-template-part .wp-block-navigation-item__content:hover {
	color: var(--owop-text);
}
header.wp-block-template-part .wp-block-site-title a {
	font-family: 'Syne', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--owop-text);
	letter-spacing: -.01em;
	text-decoration: none;
}
header.wp-block-template-part .wp-block-buttons .wp-block-button__link {
	background: var(--owop-grad);
	color: #fff;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	border: none;
	font-family: 'DM Sans', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════
   WORDPRESS FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
footer.wp-block-template-part {
	background: #04060c;
	border-top: 1px solid var(--owop-border);
	padding: 80px 24px 0;
}
footer.wp-block-template-part > .wp-block-group {
	max-width: 1200px;
	margin: 0 auto;
}
footer.wp-block-template-part .owop-footer-heading {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--owop-muted);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
footer.wp-block-template-part .owop-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
footer.wp-block-template-part .owop-footer-list a {
	color: #64748b;
	font-size: 14px;
	text-decoration: none;
	transition: color .2s;
}
footer.wp-block-template-part .owop-footer-list a:hover {
	color: var(--owop-purple-light);
}
