/*
Theme Name: Ecomconf Theme
Theme URI: http://localhost/ai-helper/wordpress-installations/ecomconf
Author: Webpigment
Author URI: https://webpigment.com
Description: E-commerce Conference 2026 — official event theme. Dark neon tech-forward aesthetic.
Version: 1.0.1
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecomconf
Tags: block-theme, event, dark, neon
*/

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 9999;
}
.skip-link:focus {
	position: fixed;
	left: 24px;
	top: 24px;
	width: auto;
	height: auto;
	overflow: visible;
	padding: 12px 24px;
	background: var(--wp--preset--color--cyan);
	color: #001012;
	font-weight: 900;
	font-size: 14px;
	border-radius: 5px;
	text-decoration: none;
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/* ============================================================
   CSS CUSTOM PROPERTIES — mirrored from mockup :root
   ============================================================ */
:root {
	--bg: #020d0f;
	--panel: rgba(3, 29, 32, .84);
	--panel2: rgba(2, 20, 23, .94);
	--line: rgba(46, 238, 224, .22);
	--cyan: #2eeedc;
	--cyan2: #19cfc8;
	--pink: #d71adb;
	--yellow: #ffe018;
	--violet: #8a62ff;
	--text: #fff;
	--muted: #9ab6b4;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Onest", Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 72% 4%, rgba(46,238,224,.18), transparent 28rem),
		radial-gradient(circle at 92% 37%, rgba(215,26,219,.16), transparent 28rem),
		linear-gradient(180deg, #000709 0%, #001113 52%, #000709 100%);
	letter-spacing: 0;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(46,238,224,.038) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46,238,224,.03) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 88%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 88%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); }

/* ============================================================
   PAGE GLOW (fixed overlay, output as a block in header.html)
   ============================================================ */
.page-glow {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: .25;
	background:
		radial-gradient(circle at 18% 18%, rgba(46,238,224,.18), transparent 22rem),
		radial-gradient(circle at 80% 76%, rgba(215,26,219,.18), transparent 26rem);
}

/* ============================================================
   SHELL (max-width centering wrapper)
   ============================================================ */
.shell,
.wp-site-blocks > .wp-block-group.shell,
.ecomconf-shell {
	width: min(100%, 1250px);
	margin-inline: auto;
	padding-inline: 24px;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	display: grid;
	grid-template-columns: 165px 1fr auto;
	align-items: center;
	gap: 26px;
	width: min(100%, 1250px);
	margin-inline: auto;
	padding: 18px 24px 10px;
	background: linear-gradient(180deg, rgba(0,8,10,.97), rgba(0,8,10,.58), transparent);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.brand img { width: 118px; filter: brightness(1.2); }

.main-nav {
	display: flex;
	justify-content: center;
	gap: 27px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}
.main-nav a { position: relative; opacity: .9; }
.main-nav a:first-child { color: var(--cyan); }
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 2px;
	transform: scaleX(0);
	background: var(--cyan);
	box-shadow: 0 0 18px var(--cyan);
	transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	border-radius: 5px;
	padding: 0 28px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
	cursor: pointer;
	border: none;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); filter: brightness(1.06); outline: 2px solid var(--cyan); outline-offset: 3px; }
.primary,
.header-ticket {
	color: #001012;
	background: linear-gradient(135deg, #4af8e7, #1ccdc5);
	box-shadow: 0 0 28px rgba(46,238,224,.25);
}
.dark {
	border: 1px solid rgba(255,255,255,.42);
	background: rgba(0,0,0,.22);
	color: #fff;
}
.yellow-btn {
	color: #000;
	background: var(--yellow);
	box-shadow: 0 0 24px rgba(255,224,24,.35);
}
.play::before { content: "▶"; margin-right: 12px; font-size: 11px; }

.menu-btn {
	display: none;
	width: 38px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
.menu-btn span { display: block; height: 2px; margin: 6px 0; background: #fff; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(390px, 555px) 1fr;
	align-items: center;
	min-height: 735px;
	padding-top: 34px;
	padding-bottom: 28px;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 10px 20px 0;
	z-index: -1;
	background: radial-gradient(ellipse at 73% 46%, rgba(46,238,224,.32), transparent 25rem);
}
.eyebrow,
.overline,
.section-kicker {
	margin: 0;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}
.overline { margin: 22px 0 8px; font-size: 18px; }
.hero h1 {
	margin: 0;
	max-width: 540px;
	font-size: clamp(68px, 7.8vw, 116px);
	line-height: .82;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
}
.hero h1 span {
	display: block;
	color: var(--cyan);
	text-shadow: 0 0 24px rgba(46,238,224,.2);
}
.lead {
	max-width: 390px;
	margin: 28px 0 28px;
	color: #fff;
	font-size: 19px;
	line-height: 1.38;
	font-weight: 800;
}
.event-meta {
	display: grid;
	grid-template-columns: .9fr 1.55fr;
	gap: 22px;
	margin-bottom: 26px;
}
.event-meta div,
.quick-stats div {
	position: relative;
	padding-left: 34px;
}
.icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--cyan);
	box-shadow: 0 0 14px rgba(46,238,224,.24);
}
.icon::after {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px solid currentColor;
	border-radius: 3px;
}
.pin::after { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.user::after { border-radius: 50%; box-shadow: 0 8px 0 -3px currentColor; }
.cluster::after { border-radius: 50%; box-shadow: 8px 0 0 -3px currentColor, -8px 0 0 -3px currentColor; }
.globe::after { border-radius: 50%; }
.yellow { color: var(--yellow); }
.pink { color: var(--pink); }
.event-meta b,
.quick-stats b {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 900;
	text-transform: uppercase;
}
.event-meta small,
.quick-stats small {
	display: block;
	margin-top: 3px;
	color: #d3e7e5;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}
.quick-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	max-width: 550px;
	margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art {
	position: relative;
	min-height: 650px;
}
.ray {
	position: absolute;
	inset: 7% -10% 6% -12%;
	background: conic-gradient(from 245deg at 42% 50%, transparent, rgba(46,238,224,.4), transparent 18%, rgba(215,26,219,.28), transparent 34%);
	filter: blur(20px);
	opacity: .66;
	animation: pulse 5s ease-in-out infinite;
}
.hero-art > img {
	position: absolute;
	right: -18px;
	bottom: 0;
	width: min(640px, 52vw);
	filter: saturate(1.08) contrast(1.04) drop-shadow(0 32px 44px rgba(0,0,0,.5));
	mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0,0,0,.7) 84%, transparent 98%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0,0,0,.7) 84%, transparent 98%);
}
.review-badge {
	position: absolute;
	right: 20px;
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(0,11,13,.7);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.review-badge > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--yellow);
	border: 2px solid currentColor;
	border-radius: 50%;
	font-size: 22px;
}
.review-badge b { display: block; font-size: 18px; color: #fff; }
.review-badge small { color: var(--muted); font-size: 10px; }
.faces { display: flex; margin-left: 8px; }
.faces i {
	width: 22px;
	height: 22px;
	margin-left: -5px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd8b8, #234);
	display: block;
}

/* ============================================================
   TRUSTED STRIP
   ============================================================ */
.trusted {
	padding-top: 25px;
	padding-bottom: 42px;
	border-top: 1px solid rgba(46,238,224,.08);
	border-bottom: 1px solid rgba(46,238,224,.08);
}
.trusted p,
.section-kicker { text-align: center; }
.trusted p { margin-bottom: 22px; }
.logo-strip {
	display: grid;
	grid-template-columns: repeat(11, auto);
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.logo-strip .ls-brand { font-size: 20px; line-height: .9; white-space: nowrap; color: #fff; margin: 0; }
.logo-strip .ls-brand.ls-small { font-size: 12px; }

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries { padding-top: 48px; padding-bottom: 44px; }
.small-title {
	margin: 10px 0 26px;
	text-align: center;
	font-size: 19px;
	color: #fff;
}
.industry-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.industry-grid article,
.speaker-grid article,
.expect article,
.agenda-card,
.tickets,
.featured-logos article,
.logo-grid b,
.ecosystem-grid article,
.insight-row article {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(4,39,42,.78), rgba(1,17,20,.94));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.industry-grid article {
	min-height: 172px;
	padding: 22px 14px 16px;
	text-align: center;
	transition: transform .22s ease, box-shadow .22s ease;
}
.industry-grid article:hover,
.speaker-grid article:hover,
.featured-logos article:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 26px rgba(46,238,224,.12);
}
.neon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin: 0 auto 16px;
	border: 1px solid currentColor;
	border-radius: 14px;
	font-size: 25px;
	box-shadow: 0 0 24px currentColor;
}
.teal { color: var(--cyan); }
.magenta { color: var(--pink); }
.violet { color: var(--violet); }
.industry-grid h3 { margin: 0 0 10px; font-size: 14px; color: #fff; }
.industry-grid p { margin: 0; font-size: 11px; line-height: 1.45; }
.text-link {
	display: flex;
	justify-content: center;
	margin-top: 22px;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

/* ============================================================
   SPEAKERS SECTION
   ============================================================ */
.speakers {
	padding-top: 36px;
	padding-bottom: 38px;
	border-top: 1px solid rgba(46,238,224,.12);
}
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 20px;
}
.section-kicker.left { text-align: left; }
.section-head h2 {
	margin: 4px 0 0;
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
}
.pill-link {
	padding: 9px 14px;
	color: var(--cyan);
	border: 1px solid var(--line);
	border-radius: 5px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	transition: background .2s ease;
}
.pill-link:hover,
.pill-link:focus-visible {
	background: rgba(46,238,224,.08);
	outline: 2px solid var(--cyan);
	outline-offset: 2px;
}
.speaker-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.speaker-grid article { overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.speaker-grid img {
	width: 100%;
	aspect-ratio: 1 / .9;
	object-fit: cover;
	object-position: center top;
	background: #ddd;
}
.speaker-grid div {
	min-height: 126px;
	padding: 13px;
	color: #001010;
	background: linear-gradient(135deg, #61f7e8, #1ccac0);
}
.speaker-grid h3 { margin: 0 0 5px; font-size: 13px; line-height: 1.15; text-transform: uppercase; color: #001010; }
.speaker-grid p { margin: 0 0 11px; color: #083634; font-size: 10px; line-height: 1.25; }
.speaker-grid .spk-org { font-size: 18px; color: #001010; font-weight: 700; margin: 0; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.dots .dot-item { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.dots .dot-item:first-child { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

/* ============================================================
   VIDEO / QUOTE SECTION
   ============================================================ */
.video {
	display: grid;
	grid-template-columns: .9fr 1.15fr;
	gap: 20px;
	padding-top: 26px;
	padding-bottom: 30px;
	border-top: 1px solid rgba(255,255,255,.14);
	border-bottom: 1px solid rgba(255,255,255,.14);
}
.quote-card,
.video-card {
	position: relative;
	overflow: hidden;
	min-height: 245px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(7,87,84,.7), rgba(2,18,21,.94));
}
.quote-card {
	padding: 34px;
	background:
		linear-gradient(90deg, rgba(0,105,99,.78), rgba(2,18,21,.88)),
		url("http://localhost/ai-helper/wordpress-installations/ecomconf/wp-content/uploads/2026/06/aftermovie-stage.png") center/cover;
}
.quote-card h2 { max-width: 390px; margin: 0 0 20px; font-size: 25px; line-height: 1.1; text-transform: uppercase; color: #fff; }
.quote-card p { color: #fff; font-size: 18px; font-weight: 700; }
.video-card img { width: 100%; height: 100%; min-height: 245px; object-fit: cover; }
.video-card button {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 50%;
	color: #001010;
	background: var(--cyan);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 32px rgba(46,238,224,.35);
	cursor: pointer;
	font-size: 20px;
	transition: filter .2s ease, transform .2s ease;
}
.video-card button:hover,
.video-card button:focus-visible {
	filter: brightness(1.1);
	transform: translate(-50%, -50%) scale(1.08);
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* ============================================================
   EXPECT + AGENDA SECTION
   ============================================================ */
.expect-agenda {
	display: grid;
	grid-template-columns: .9fr 1.6fr;
	gap: 22px;
	padding-top: 34px;
	padding-bottom: 32px;
}
.expect article {
	display: grid;
	grid-template-columns: 46px 1fr 32px;
	gap: 14px;
	align-items: center;
	min-height: 82px;
	margin-top: 12px;
	padding: 15px;
}
.expect .exp-num { color: var(--cyan); font-size: 20px; font-weight: 900; margin: 0; }
.expect h3,
.agenda-list h3 { margin: 0 0 4px; text-transform: uppercase; color: #fff; }
.expect p { margin: 0; font-size: 11px; }
.expect .exp-icon { color: var(--cyan); font-size: 24px; text-align: right; margin: 0; }
.agenda-card {
	display: grid;
	grid-template-columns: .9fr 1fr;
	overflow: hidden;
}
.agenda-list { padding: 24px; }
.tabs { display: flex; margin: 12px 0 16px; }
.tabs .tab-active,
.tabs .tab-inactive { padding: 9px 16px; font-size: 10px; font-weight: 900; text-transform: uppercase; margin: 0; }
.tabs .tab-active { color: #001010; background: var(--cyan); border-radius: 4px 0 0 4px; }
.tabs .tab-inactive { background: #3b0a65; color: #fff; border-radius: 0 4px 4px 0; }
.agenda-list .agenda-row { display: grid; grid-template-columns: 58px 1fr; margin: 0 0 14px; color: #fff; }
.agenda-list .agenda-row p { margin: 0; }
.agenda-list .agenda-time { color: var(--muted); }
.agenda-list .agenda-title { color: #fff; }
.agenda-list a { color: var(--cyan); font-size: 12px; font-weight: 900; }
.agenda-card img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TICKETS BAR
   ============================================================ */
.tickets {
	display: grid;
	grid-template-columns: 1.12fr .72fr 1fr .55fr;
	gap: 14px;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 64px;
	padding: 26px;
	background:
		radial-gradient(circle at 6% 50%, rgba(46,238,224,.24), transparent 22rem),
		linear-gradient(100deg, rgba(0,95,90,.64), rgba(2,18,21,.96));
}
.tickets h2 { margin: 0; color: var(--cyan); font-size: 32px; line-height: 1.05; text-transform: uppercase; }
.tickets p { margin: 10px 0 0; color: #fff; font-weight: 700; }
.early,
.timer,
.only {
	min-height: 82px;
	padding: 16px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 7px;
	text-align: center;
}
.early .tk-label,
.timer .tk-label,
.only .tk-label,
.timer .tk-sub,
.only .tk-sub,
.early .tk-sub {
	display: block;
	color: var(--muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
}
.early .tk-value,
.timer .tk-value,
.only .tk-value { display: block; margin: 5px 0; color: #fff; font-size: 23px; font-weight: 900; }
.tickets .wp-block-buttons { grid-column: 2 / 5; }
.tickets .wp-block-button .wp-block-button__link { min-height: 40px; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners {
	padding-top: 35px;
	padding-bottom: 36px;
	text-align: center;
}
.partners h2 {
	margin: 18px 0 12px;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.05;
	color: #fff;
}
.partners h2 span { color: var(--cyan); }
.partners-copy { max-width: 670px; margin: 0 auto 28px; font-size: 13px; }
.partner-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	max-width: 950px;
	margin: 0 auto 46px;
}
.partner-stats article {
	padding: 16px;
	border: 1px solid rgba(46,238,224,.14);
	border-radius: 8px;
	background: rgba(5,26,29,.8);
}
.partner-stats .ps-icon { color: var(--cyan); font-size: 28px; margin: 0; }
.partner-stats .ps-value { display: block; font-size: 19px; color: #fff; font-weight: 900; margin: 0; }
.partner-stats .ps-label { color: var(--muted); margin: 0; }
.featured-logos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 24px 0 36px;
}
.featured-logos article {
	min-height: 180px;
	padding: 18px;
	text-align: left;
	box-shadow: 0 0 26px rgba(46,238,224,.16);
}
.featured-logos .fl-tier,
.tier-title .tier-limit { color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; margin: 0; }
.featured-logos .fl-name { display: block; margin: 22px 0 18px; font-size: 38px; line-height: 1; color: #fff; font-weight: 900; }
.featured-logos p { margin: 0; font-size: 12px; }
.tier-title {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 8px;
	margin: 28px 0 14px;
	color: #c8d5d3;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
}
.tier-title .tier-name { margin: 0; font-size: inherit; font-weight: inherit; color: inherit; text-transform: inherit; line-height: inherit; }
.tier-title.gold { color: var(--yellow); }
.tier-title.ecosystem-title { color: var(--cyan); }
.tier-title.media { color: #ff8cff; }
.tier-title.regional { color: #bda8ff; }
.logo-grid,
.ecosystem-grid {
	display: grid;
	gap: 14px;
}
.gold-grid { grid-template-columns: repeat(3, 1fr); }
.silver-grid { grid-template-columns: repeat(6, 1fr); }
.logo-grid .lg-name {
	display: grid;
	place-items: center;
	min-height: 96px;
	padding: 12px;
	font-size: 24px;
	color: #fff;
	font-weight: 900;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(4,39,42,.78), rgba(1,17,20,.94));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.gold-grid .lg-name { border-color: rgba(255,224,24,.3); }
.ecosystem-grid { grid-template-columns: repeat(6, 1fr); }
.ecosystem-grid article { min-height: 135px; padding: 16px; text-align: left; }
.ecosystem-grid .eco-tier { color: var(--cyan); font-size: 9px; font-weight: 900; text-transform: uppercase; margin: 0; }
.ecosystem-grid .eco-name { display: block; margin: 16px 0 8px; font-size: 20px; text-transform: uppercase; color: #fff; font-weight: 900; }
.ecosystem-grid p { margin: 0; font-size: 10px; }
.media-row,
.regional-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	padding: 18px;
	border-radius: 8px;
	background: rgba(36, 10, 48, .55);
}
.media-row .mr-name,
.regional-row .rr-name { color: #fff; opacity: .78; font-weight: 800; margin: 0; }

/* ============================================================
   ECOSYSTEM BANNER
   ============================================================ */
.ecosystem-banner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
	min-height: 240px;
	margin-top: 8px;
	margin-bottom: 38px;
	padding-top: 34px;
	padding-bottom: 34px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background:
		linear-gradient(90deg, rgba(0,15,18,.55), rgba(0,15,18,.35)),
		url("http://localhost/ai-helper/wordpress-installations/ecomconf/wp-content/uploads/2026/06/ecosystem-banner.png") center/cover;
}
.ecosystem-banner h2 { margin: 5px 0; color: var(--cyan); font-size: 32px; text-transform: uppercase; }
.ecosystem-banner p { max-width: 470px; color: #fff; }
.banner-actions { display: grid; gap: 12px; min-width: 260px; }

/* ============================================================
   INSIGHTS (BLOG CARDS)
   ============================================================ */
.insights {
	padding-top: 10px;
	padding-bottom: 40px;
	border-top: 1px solid rgba(215,26,219,.35);
}
.insight-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.insight-row article { overflow: hidden; }
.insight-row img { width: 100%; height: 96px; object-fit: cover; }
.insight-row p,
.insight-row h3,
.insight-row .read-time { margin-left: 13px; margin-right: 13px; }
.insight-row p { margin-top: 10px; margin-bottom: 5px; color: var(--cyan); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.insight-row h3 { min-height: 58px; margin-top: 0; font-size: 13px; line-height: 1.25; color: #fff; }
.insight-row .read-time { display: block; margin-bottom: 14px; color: var(--cyan); font-size: 11px; }

/* ============================================================
   SKOPJE SECTION
   ============================================================ */
.skopje {
	padding-top: 42px;
	padding-bottom: 42px;
	text-align: center;
	border-top: 1px solid rgba(46,238,224,.1);
}
.skopje h2 {
	margin: 12px 0 26px;
	font-size: clamp(42px, 7vw, 78px);
	line-height: .96;
	text-transform: uppercase;
	color: #fff;
}
.skopje h2 span { color: var(--cyan); }
.skopje-card {
	max-width: 1040px;
	margin: 0 auto;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 36px rgba(46,238,224,.12);
}
.skopje-card img { width: 100%; }
.skopje-copy { max-width: 780px; margin: 28px auto; color: #d7e9e7; font-size: 13px; }
.city-perks {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}
.city-perks article {
	padding: 16px;
	border-top: 1px solid rgba(46,238,224,.18);
	text-align: left;
}
.city-perks .cp-title { display: block; color: var(--cyan); font-size: 12px; text-transform: uppercase; font-weight: 900; margin: 0 0 4px; }
.city-perks .cp-sub { color: var(--muted); font-size: 11px; margin: 0; }

/* ============================================================
   AMBASSADORS
   ============================================================ */
.ambassadors {
	padding-top: 28px;
	padding-bottom: 34px;
	border-top: 1px solid rgba(46,238,224,.12);
}
.ambassadors h2 { max-width: 600px; margin: 6px 0 20px; font-size: 18px; color: #fff; }
.ambassador-row {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 18px;
}
.ambassador-row .amb {
	aspect-ratio: 1;
	border: 2px solid rgba(255,255,255,.14);
	border-radius: 50%;
	background: linear-gradient(135deg, #caa98e, #17272b);
	box-shadow: 0 0 18px rgba(46,238,224,.1);
	display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer .footer {
	display: grid;
	grid-template-columns: 1.1fr 1.35fr .7fr 1.1fr;
	gap: 24px;
	padding-top: 34px;
	padding-bottom: 34px;
	border-top: 1px solid var(--line);
}
.footer img { width: 150px; margin-bottom: 18px; filter: brightness(1.2); }
.footer h3 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; color: #fff; }
.footer p,
.footer a { color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer a { display: block; margin: 5px 0; }
.footer a:hover,
.footer a:focus-visible { color: var(--cyan); outline: none; text-decoration: underline; }
.newsletter-form { display: flex; margin-top: 14px; }
.newsletter-form input {
	min-width: 0;
	flex: 1;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,.18);
	border-right: 0;
	border-radius: 5px 0 0 5px;
	color: #fff;
	background: rgba(0,0,0,.25);
	font-family: inherit;
}
.newsletter-form input:focus {
	outline: 2px solid var(--cyan);
	outline-offset: 1px;
}
.newsletter-form button {
	border: 0;
	border-radius: 0 5px 5px 0;
	padding: 0 16px;
	color: #001010;
	background: var(--cyan);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	font-family: inherit;
	transition: filter .2s ease;
}
.newsletter-form button:hover,
.newsletter-form button:focus-visible {
	filter: brightness(1.1);
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* ============================================================
   FOCUS STATES (global catch-all)
   ============================================================ */
:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse {
	0%, 100% { opacity: .5; transform: scale(.98) rotate(0deg); }
	50% { opacity: .78; transform: scale(1.03) rotate(2deg); }
}

/* ============================================================
   NAV LINK COLORS (override Gutenberg defaults)
   ============================================================ */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	opacity: .9;
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus {
	color: var(--cyan);
}
.site-footer .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content,
.site-footer p a,
.site-footer a {
	color: var(--muted);
	font-size: 12px;
}
.site-footer .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.site-footer .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus,
.site-footer p a:hover,
.site-footer a:hover {
	color: var(--cyan);
}

/* Footer nav — never hamburger */
.site-footer .wp-block-navigation__responsive-container-open,
.site-footer .wp-block-navigation__responsive-container-close {
	display: none !important;
}
.site-footer .wp-block-navigation__responsive-container {
	display: block !important;
	position: static !important;
	background: transparent !important;
	padding: 0 !important;
}
.site-footer .wp-block-navigation__container {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1040px)
   ============================================================ */
@media (max-width: 1040px) {
	.site-header { grid-template-columns: 1fr auto; padding: 16px 18px; }
	.main-nav,
	.header-ticket { display: none; }
	.menu-btn { display: block; }
	.shell { padding-inline: 18px; }
	.hero { grid-template-columns: 1fr; min-height: auto; padding-top: 28px; }
	.hero-copy { position: relative; z-index: 2; }
	.hero h1 { max-width: 360px; font-size: clamp(52px, 15vw, 78px); }
	.lead { max-width: 330px; font-size: 16px; }
	.event-meta,
	.quick-stats { grid-template-columns: 1fr; max-width: 365px; }
	.quick-stats {
		overflow: hidden;
		gap: 0;
		border: 1px solid rgba(255,255,255,.1);
		border-radius: 8px;
		background: rgba(0, 16, 18, .92);
		backdrop-filter: blur(14px);
	}
	.quick-stats div { min-height: 78px; padding: 18px 18px 18px 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
	.quick-stats div:last-child { border-bottom: 0; }
	.quick-stats .icon { left: 18px; top: 22px; }
	.hero-art {
		position: absolute;
		top: 88px;
		right: -180px;
		width: 390px;
		height: 460px;
		min-height: 0;
		opacity: .48;
		pointer-events: none;
	}
	.hero-art > img { width: 390px; right: 0; top: 0; bottom: auto; }
	.ray, .review-badge { display: none; }
	.hero-actions .btn { width: 100%; max-width: 365px; }
	.logo-strip { grid-template-columns: repeat(3, 1fr); text-align: center; }
	.industry-grid,
	.speaker-grid,
	.featured-logos,
	.insight-row { grid-template-columns: repeat(2, 1fr); }
	.video,
	.expect-agenda,
	.agenda-card,
	.tickets,
	.ecosystem-banner,
	.site-footer .footer { grid-template-columns: 1fr; }
	.tickets .btn { grid-column: auto; }
	.partner-stats { grid-template-columns: repeat(2, 1fr); }
	.gold-grid,
	.silver-grid,
	.ecosystem-grid,
	.city-perks { grid-template-columns: repeat(2, 1fr); }
	.ambassador-row { grid-template-columns: repeat(5, 1fr); }
	.site-header { position: sticky; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 560px)
   ============================================================ */
@media (max-width: 560px) {
	.brand img { width: 118px; }
	.overline { font-size: 15px; }
	.logo-strip,
	.industry-grid,
	.speaker-grid,
	.featured-logos,
	.insight-row,
	.partner-stats,
	.gold-grid,
	.silver-grid,
	.ecosystem-grid,
	.city-perks { grid-template-columns: 1fr; }
	.section-head { align-items: flex-start; flex-direction: column; }
	.partners h2 { font-size: 34px; }
	.ecosystem-banner { margin-inline: 18px; padding-inline: 18px; }
	.skopje h2 { font-size: 40px; }
	.ambassador-row { grid-template-columns: repeat(3, 1fr); }
	.newsletter-form { display: grid; gap: 8px; }
	.newsletter-form input,
	.newsletter-form button { border: 1px solid rgba(255,255,255,.18); border-radius: 5px; }
}

/* ============================================================
   INDUSTRY CARD — .ind-card is the article className; .industry-grid article
   already handles all visual rules; this alias ensures the class is not orphaned
   and provides an explicit hook for future overrides.
   ============================================================ */
.industry-grid .ind-card { /* inherits all .industry-grid article rules above */ }

/* ============================================================
   WP:BUTTON BRIDGE — map wp-block-button classNames to existing .btn styles
   The wp:button block wraps the inner <a> in <div class="wp-block-button …">
   and the <a> gets .wp-block-button__link. We bridge via the wrapper className.
   ============================================================ */

/* Base .btn equivalence for all button wrapper types */
.wp-block-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	border-radius: 5px;
	padding: 0 28px;
	font-size: 12px;
	font-family: "Onest", Arial, sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
	cursor: pointer;
	border: none;
	text-decoration: none;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.06);
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
}

/* .is-primary — cyan gradient CTA */
.wp-block-button.is-primary .wp-block-button__link {
	color: #001012;
	background: linear-gradient(135deg, #4af8e7, #1ccdc5);
	box-shadow: 0 0 28px rgba(46,238,224,.25);
}

/* .is-dark — subtle dark glass button */
.wp-block-button.is-dark .wp-block-button__link {
	border: 1px solid rgba(255,255,255,.42);
	background: rgba(0,0,0,.22);
	color: #fff;
}

/* .is-yellow — yellow CTA */
.wp-block-button.is-yellow .wp-block-button__link {
	color: #000;
	background: var(--yellow);
	box-shadow: 0 0 24px rgba(255,224,24,.35);
}

/* Gutenberg strips margin from .wp-block-buttons wrappers by default;
   restore the banner-actions gap */
.banner-actions .wp-block-buttons { margin: 0; }

/* ============================================================
   TRUSTED STRIP — .trusted-label replaces the old <p> selector
   ============================================================ */
.trusted .trusted-label {
	text-align: center;
	margin-bottom: 22px;
	color: var(--muted);
}

/* ============================================================
   VIDEO / QUOTE SECTION — new class bridges
   ============================================================ */
/* .qc-attr replaces <small> for the quote attribution */
.quote-card .qc-attr {
	color: var(--muted);
	font-size: 12px;
	margin: 0;
}

/* video-play-btn wraps the native <button>; preserve existing button CSS */
.video-play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	background: none;
	color: inherit;
}
.video-play-btn button {
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 50%;
	color: #001010;
	background: var(--cyan);
	box-shadow: 0 0 32px rgba(46,238,224,.35);
	cursor: pointer;
	font-size: 20px;
	transition: filter .2s ease, transform .2s ease;
}
.video-play-btn button:hover,
.video-play-btn button:focus-visible {
	filter: brightness(1.1);
	transform: scale(1.08);
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* ============================================================
   SKOPJE — .skopje-card is now a wp:group wrapper; img still fills it
   ============================================================ */
.skopje-card .wp-block-image,
.skopje-card .wp-block-image img { width: 100%; }

/* ============================================================
   RESPONSIVE updates for new class names (mirrors old selectors)
   ============================================================ */
@media (max-width: 1040px) {
	.ambassador-row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 560px) {
	.ambassador-row { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   GUTENBERG EDITOR — force dark body background in editor
   ============================================================ */
.editor-styles-wrapper {
	background: linear-gradient(180deg, #000709 0%, #001113 52%, #000709 100%) !important;
	color: #fff !important;
}
