:root {
	--bg: #0a0a1a;
	--bg-2: #101022;
	--band-bg: #1a1a2e;
	--card: #0f0f24;
	--line: #16264b;
	--accent: #0051ff;
	--accent-2: #1f8fff;
	--text: #f5f5f5;
	--text-2: #f5f5f5;
	--muted: #8080cb;
	--nav: #babcc3;
	--display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
	--body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--container: 1000px;
	--header-h: 72px;
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text-2);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--text); }

#network-bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: #fff; color: #000; padding: 8px 12px; }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 10, 26, 0.88);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(22, 38, 75, 0.6);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { color: var(--text); display: inline-flex; }
.logo-svg { width: auto; aspect-ratio: 170 / 38; color: var(--text); display: block; }
.logo-img { width: auto; max-width: 260px; object-fit: contain; display: block; }
.primary-nav .menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: var(--nav); font-size: 14px; font-weight: 500; }
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--accent-2); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform .2s, opacity .2s; }

/* Type */
.eyebrow {
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-2);
	margin: 0 0 14px;
}
.eyebrow a { color: inherit; }
.center { text-align: center; }
.display {
	font-family: var(--display);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text);
	line-height: 0.95;
	letter-spacing: 0.005em;
	margin: 0 0 24px;
	font-size: clamp(44px, 7vw, 76px);
}
.display span { display: block; }
.accent { color: var(--accent); }
.lead { color: var(--muted); font-size: 17px; max-width: 420px; margin: 0; }

/* Hero */
.hero { padding: 120px 0 110px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 0.78;
	padding: 14px;
	border-radius: 10px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35), inset 0 -2px 0 rgba(0, 81, 255, .45);
	transition: transform .2s, border-color .2s;
	overflow: hidden;
}
.tile::after {
	content: "";
	position: absolute;
	left: 10%; right: 10%; bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.tile:hover { transform: translateY(-3px); border-color: var(--accent); }
.tile-logo { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 6px; }
.tile-logo img { max-height: 150px; width: auto; border-radius: 22px; }
.tile-name { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--text); text-transform: uppercase; }
.tile-tagline { font-size: 11px; color: var(--muted); line-height: 1.4; margin-top: 4px; }

/* Pillars */
.pillars { background: var(--band-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 44px; padding-bottom: 44px; max-width: 820px; margin: 0 auto; }
.pillar { position: relative; text-align: center; padding: 8px 20px; }
.pillar + .pillar::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--line) 15%, rgba(31, 143, 255, .55) 50%, var(--line) 85%, transparent);
	transform-origin: top;
}
.pillar .icon { width: 24px; height: 24px; color: var(--accent); display: block; }
.pillar > .icon { margin: 0 auto 14px; }
.pillar-icon { position: relative; display: inline-grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 10px; }
.pillar-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(31, 143, 255, .45);
	background: radial-gradient(circle, rgba(0, 81, 255, .22), transparent 70%);
}
.pillar h2 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .06em; color: var(--text); margin: 0 0 6px; }
.pillar p { margin: 0; color: var(--muted); font-size: 13px; }

/* Platforms */
.platforms { padding: 80px 0 90px; }
.section-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(34px, 4.5vw, 44px);
	color: var(--text);
	text-align: center;
	margin: 0 0 48px;
	text-transform: uppercase;
}
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.card-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 26px;
	color: var(--accent);
	text-transform: uppercase;
	margin: 0 0 10px;
	line-height: 1.1;
}
.card-title a { color: inherit; }
.card-desc { color: var(--muted); font-size: 13.5px; margin: 0 0 20px; }
.checklist { list-style: none; margin: 0 0 26px; padding: 0; }
.checklist li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 13.5px; margin-bottom: 10px; }
.checklist .icon { width: 16px; height: 16px; color: var(--accent); flex: none; }
.card .btn { margin-top: auto; }

.btn {
	display: inline-block;
	background: var(--accent);
	color: #ffffff;
	font-family: var(--display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 9px 18px;
	border-radius: 3px;
	border: 0;
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.btn:hover { background: var(--accent-2); color: #ffffff; transform: translateY(-1px); }

/* Band */
.band { padding: 90px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.band-title { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 5vw, 50px); color: var(--text); margin: 0 0 18px; text-transform: uppercase; line-height: 1.05; }
.band-sub { font-size: 15px; margin: 0; }

/* Inner pages */
.page-hero { padding: 90px 0 30px; }
.page-hero .display { margin-bottom: 12px; }
.page-body { padding: 20px 0 90px; }
.platforms-page { padding-top: 30px; }
.platform-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.platform-hero .tagline { color: var(--text); font-weight: 500; margin: 0 0 12px; }
.platform-hero .lead { margin-bottom: 26px; max-width: 520px; }
.platform-logo img { border-radius: 28px; max-width: 260px; margin-left: auto; box-shadow: 0 10px 50px rgba(0, 81, 255, .35); }

.entry-content { color: var(--text-2); }
.entry-content h2, .entry-content h3 { font-family: var(--display); font-weight: 800; color: var(--text); text-transform: uppercase; line-height: 1.1; margin: 40px 0 14px; }
.entry-content h2 { font-size: 32px; }
.entry-content h3 { font-size: 22px; color: var(--accent-2); }
.entry-content p { margin: 0 0 18px; }
.entry-content .has-large-font-size { font-size: clamp(18px, 2.2vw, 22px) !important; line-height: 1.55; color: var(--text); }
.entry-content ul { padding-left: 20px; }
.entry-content a { text-decoration: underline; }
.entry-content .wp-block-columns { gap: 24px; }
.entry-content .wp-block-group.is-style-card,
.entry-content .axon2-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.post-item { margin-bottom: 20px; }

/* Contact form */
.contact-form { display: grid; gap: 16px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 28px; margin: 10px 0 30px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; color: var(--text); }
.contact-form .opt { color: var(--muted); font-weight: 400; }
.contact-form input, .contact-form textarea {
	width: 100%;
	background: rgba(10, 10, 26, .8);
	border: 1px solid var(--line);
	border-radius: 6px;
	color: var(--text);
	font: inherit;
	font-size: 15px;
	padding: 11px 12px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.contact-form .btn { justify-self: start; font-size: 13px; padding: 12px 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; }
.form-notice { padding: 12px 14px; border-radius: 6px; font-size: 14px; }
.form-notice.ok { background: rgba(0, 81, 255, .18); border: 1px solid var(--accent); color: var(--text); }
.form-notice.err { background: rgba(255, 60, 90, .12); border: 1px solid #ff4d6d; color: #ffd6de; }

/* Footer */
.site-footer { padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 300px; margin: 14px 0 0; }
.socials { display: flex; gap: 16px; }
.footer-col h3 { font-size: 11px; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--accent-2); font-size: 13.5px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 12px; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
	.hero { padding: 70px 0; }
	.hero-grid { grid-template-columns: 1fr; }
	.pillars-grid { margin: 0 auto; }
	.cards { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.platform-hero-grid { grid-template-columns: 1fr; }
	.platform-logo img { margin: 0; }
}
@media (max-width: 720px) {
	.menu-toggle { display: block; }
	.primary-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: rgba(10, 10, 26, .97);
		border-bottom: 1px solid var(--line);
		display: none;
	}
	.primary-nav.open { display: block; }
	.primary-nav .menu { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
	.primary-nav a { display: block; padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(22, 38, 75, .6); }
	.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.pillars-grid { grid-template-columns: 1fr; }
	.pillar + .pillar { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 16px; }
	.pillar + .pillar::before { display: none; }
	.form-row { grid-template-columns: 1fr; }
	.header-inner .logo-svg, .header-inner .logo-img { max-height: 32px; }
}
@media (max-width: 480px) {
	.tiles { gap: 12px; }
	.footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.tile, .btn { transition: none; }
}

/* =========================================================
   Animations: scroll reveal + hover effects
   ========================================================= */
:root { --ease: cubic-bezier(.2, .7, .2, 1); }

/* Reveal on scroll (only when JS runs; see animations.js). */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms), filter .8s var(--ease) var(--d, 0ms);
	will-change: opacity, transform;
}
.js [data-reveal="zoom"] { transform: translateY(24px) scale(.92); }
.js [data-reveal="left"] { transform: translateX(-14px); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="line"] { transform: translateY(40px) skewY(3deg); filter: blur(8px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* Header */
.site-header { transition: background .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(10, 10, 26, .96); box-shadow: 0 8px 30px rgba(0, 0, 0, .45); }
.brand { transition: filter .3s, transform .3s var(--ease); }
.brand:hover { filter: drop-shadow(0 0 10px rgba(31, 143, 255, .7)); transform: scale(1.03); }
.primary-nav a { position: relative; transition: color .25s; }
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	background: var(--accent-2);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after { transform: scaleX(1); transform-origin: left; }

/* Hero title accent glow */
.hero .display .accent { text-shadow: 0 0 40px rgba(0, 81, 255, .35); }

/* Tiles */
.tile { transition: transform .25s var(--ease), border-color .3s, box-shadow .3s; transform-style: preserve-3d; }
.tile:hover {
	transform: translateY(-6px);
	border-color: var(--accent);
	box-shadow: 0 20px 50px rgba(0, 81, 255, .28), inset 0 -2px 0 rgba(0, 81, 255, .8);
}
.tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 30%), rgba(31, 143, 255, .22), transparent 60%);
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none;
}
.tile:hover::before { opacity: 1; }
.tile::after { transition: left .4s var(--ease), right .4s var(--ease); }
.tile:hover::after { left: 0; right: 0; }
.tile-logo img { transition: transform .4s var(--ease), filter .4s; }
.tile:hover .tile-logo img { transform: scale(1.07) translateZ(30px); filter: drop-shadow(0 10px 25px rgba(31, 143, 255, .5)); }
.tile-name { transition: color .3s; }
.tile:hover .tile-name { color: var(--accent-2); }

/* Pillars */
.pillar { transition: transform .3s var(--ease); }
.pillar .icon { transition: transform .4s var(--ease), filter .3s; }
.pillar h2 { transition: color .3s; }
.pillar:hover { transform: translateY(-4px); }
.pillar:hover .icon { transform: translateY(-3px) scale(1.2) rotate(-8deg); filter: drop-shadow(0 0 8px rgba(31, 143, 255, .8)); }
.pillar:hover h2 { color: var(--accent-2); }

/* Cards with cursor spotlight */
.card, .contact-form { position: relative; overflow: hidden; }
.card { transition: transform .35s var(--ease), border-color .3s, box-shadow .35s; }
.card::before, .contact-form::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(31, 143, 255, .13), transparent 45%);
	opacity: 0;
	transition: opacity .35s;
	pointer-events: none;
}
.card > *, .contact-form > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-6px); border-color: rgba(31, 143, 255, .7); box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(0, 81, 255, .25); }
.card:hover::before, .contact-form:hover::before { opacity: 1; }
.card-title { transition: letter-spacing .35s var(--ease), color .3s; }
.card:hover .card-title { color: var(--accent-2); letter-spacing: .01em; }
.checklist li { transition: transform .25s var(--ease), color .25s; }
.checklist li:hover { transform: translateX(5px); color: var(--text); }
.checklist .icon { transition: transform .25s var(--ease), color .25s; }
.checklist li:hover .icon { transform: scale(1.15); color: var(--text); }

/* Buttons: shine sweep + arrow nudge */
.btn { position: relative; overflow: hidden; box-shadow: 0 0 0 rgba(0, 81, 255, 0); transition: background .25s, transform .25s var(--ease), box-shadow .3s; }
.btn::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	left: -60%;
	width: 40%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
	transform: skewX(-20deg);
	transition: left .6s var(--ease);
	pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 81, 255, .45); }
.btn:active { transform: translateY(0); }
.btn .arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* Closing band: animated gradient on the blue words */
.band-title .accent {
	background: linear-gradient(90deg, #0051ff, #1f8fff, #0051ff);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: axon2-shine 5s linear infinite;
}
@keyframes axon2-shine { to { background-position: -200% 0; } }

/* Footer + content links */
.footer-col a { display: inline-block; transition: color .25s, transform .25s var(--ease); }
.footer-col a:hover { transform: translateX(4px); }
.socials a { transition: color .25s; }

/* Form fields */
.contact-form input, .contact-form textarea { transition: border-color .25s, box-shadow .25s; }
.contact-form input:hover, .contact-form textarea:hover { border-color: rgba(31, 143, 255, .6); }
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 4px rgba(0, 81, 255, .18); }

.platform-logo img { transition: transform .5s var(--ease); }
.platform-logo img:hover { transform: scale(1.04) rotate(-2deg); }

@media (max-width: 720px) {
	.primary-nav a::after { display: none; }
}
@media (hover: none) {
	.card:hover, .tile:hover, .pillar:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
	.band-title .accent { animation: none; }
	.tile, .card, .btn, .pillar, .pillar .icon, .checklist li, .tile-logo img, .footer-col a { transition: none; }
	.tile:hover, .card:hover, .pillar:hover, .btn:hover, .checklist li:hover, .footer-col a:hover { transform: none; }
	.btn::after { display: none; }
}

/* =========================================================
   Pillars: assemble on scroll + idle motion (see animations.js)
   ========================================================= */
.armable .pillar-icon::before { transform: scale(0); opacity: 0; transition: transform .7s cubic-bezier(.3, 1.6, .5, 1) var(--pd), opacity .5s var(--pd); }
.armable .pillar .icon path,
.armable .pillar .icon polyline,
.armable .pillar .icon line,
.armable .pillar .icon circle,
.armable .pillar .icon rect { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s cubic-bezier(.65, 0, .35, 1) calc(var(--pd) + 150ms); }
.armable .pillar h2 .ch {
	display: inline-block;
	opacity: 0;
	transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(.3);
	filter: blur(4px);
	transition: opacity .5s var(--ease), transform .9s cubic-bezier(.2, 1.2, .3, 1), filter .6s var(--ease), color .3s;
	transition-delay: calc(var(--pd) + 350ms + var(--i) * 45ms);
}
.armable .pillar p { opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease) calc(var(--pd) + 950ms), transform .6s var(--ease) calc(var(--pd) + 950ms); }
.armable .pillar + .pillar::before { transform: scaleY(0); transition: transform 1s var(--ease) var(--pd); }

.assembled .pillar-icon::before { transform: scale(1); opacity: 1; }
.assembled .pillar .icon path,
.assembled .pillar .icon polyline,
.assembled .pillar .icon line,
.assembled .pillar .icon circle,
.assembled .pillar .icon rect { stroke-dashoffset: 0; }
.assembled .pillar h2 .ch { opacity: 1; transform: none; filter: none; }
.assembled .pillar p { opacity: 1; transform: none; }
.assembled .pillar + .pillar::before { transform: scaleY(1); }

/* Idle motion once assembled: floating icon + pulsing ring. */
.assembled .pillar-icon { animation: axon2-float 3.6s ease-in-out calc(var(--pd) + 2s) infinite; }
.assembled .pillar-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(31, 143, 255, .6);
	opacity: 0;
	animation: axon2-ping 2.8s ease-out calc(var(--pd) + 1.8s) infinite;
}
@keyframes axon2-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes axon2-ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }

/* Hover on a letter-split title: letters jump in a wave. */
.pillar:hover h2 .ch { animation: axon2-wave .5s var(--ease) calc(var(--i) * 30ms); }
@keyframes axon2-wave { 50% { transform: translateY(-5px); color: var(--accent-2); } }

@media (prefers-reduced-motion: reduce) {
	.assembled .pillar-icon, .assembled .pillar-icon::after, .pillar:hover h2 .ch { animation: none; }
}

/* =========================================================
   About (fundador) template
   ========================================================= */
.about-hero {
	padding: 50px 0 90px;
	text-align: center;
	background: radial-gradient(ellipse 40% 75% at 50% 35%, rgba(0, 81, 255, .22), transparent 70%);
}
.about-hero .eyebrow { color: var(--accent-2); }
.about-hero .display { font-size: clamp(44px, 6vw, 66px); margin-bottom: 10px; }
.about-role { color: var(--muted); font-size: 20px; margin: 0; }

.about-body { padding: 30px 0 90px; }
.about-grid { max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-grid.no-photo { grid-template-columns: 1fr; max-width: 760px; }
.about-text p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.about-text > p:first-child { color: var(--text); font-weight: 600; font-size: 17.5px; line-height: 1.6; }
.about-photo {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 0 70px rgba(0, 81, 255, .35);
	position: sticky;
	top: calc(var(--header-h) + 24px);
}
.about-photo img { width: 100%; transition: transform .6s var(--ease); }
.about-photo:hover img { transform: scale(1.03); }

.mission { padding: 70px 0 80px; text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mission .section-title { margin-bottom: 22px; }
.mission-text { color: var(--text); font-size: 18px; font-weight: 500; max-width: 800px; margin: 0 auto 30px; }
.mission-quote { display: inline-block; max-width: 100%; padding: 22px 34px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); transition: border-color .3s, box-shadow .3s; }
.mission-quote:hover { border-color: rgba(31, 143, 255, .6); box-shadow: 0 0 40px rgba(0, 81, 255, .2); }
.mission-quote p { margin: 0; color: var(--muted); font-size: 16px; }
.mission-quote .mission-quote-strong { margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: .03em; text-transform: uppercase; color: var(--accent-2); }

.about-platforms { padding: 70px 0 80px; }
.about-platforms .eyebrow { color: var(--muted); font-family: var(--body); font-weight: 600; letter-spacing: .15em; margin-bottom: 40px; }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.logo-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	aspect-ratio: .9;
	padding: 18px 14px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--card);
	transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.logo-card-img { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; }
.logo-card-img img { max-height: 150px; width: auto; border-radius: 22px; transition: transform .4s var(--ease), filter .4s; }
.logo-card-name { font-size: 12.5px; font-weight: 600; color: var(--muted); text-align: center; transition: color .3s; }
.logo-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 50px rgba(0, 81, 255, .28); }
.logo-card:hover .logo-card-img img { transform: scale(1.07); filter: drop-shadow(0 10px 25px rgba(31, 143, 255, .5)); }
.logo-card:hover .logo-card-name { color: var(--text); }

/* Footer links: soft lavender like the reference design. */
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--text); }

@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; gap: 36px; }
	.about-photo { position: static; max-width: 560px; }
	.logo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
	.logo-card, .logo-card-img img, .about-photo img { transition: none; }
	.logo-card:hover, .about-photo:hover img, .logo-card:hover .logo-card-img img { transform: none; }
}

/* =========================================================
   Platforms page (archive-platform.php). --pc = platform color.
   ========================================================= */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.pf-hero {
	padding: 60px 0 80px;
	text-align: center;
	background: radial-gradient(ellipse 35% 70% at 50% 30%, rgba(0, 81, 255, .2), transparent 70%);
}
.pf-hero .display { font-size: clamp(42px, 5.6vw, 62px); max-width: 560px; margin: 0 auto 18px; }
.pf-lead { color: var(--muted); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.pf-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.pf-logos a {
	width: 60px; height: 60px;
	border-radius: 12px;
	border: 1px solid #08253c;
	overflow: hidden;
	display: grid; place-items: center;
	transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pf-logos img { width: 100%; height: 100%; object-fit: cover; }
.pf-logos a:hover { transform: translateY(-4px) scale(1.06); border-color: var(--accent-2); box-shadow: 0 10px 30px rgba(0, 81, 255, .35); }

.pf-list { padding: 10px 0 70px; }
.pf-container { max-width: 940px; }
.pf-card {
	position: relative;
	display: grid;
	grid-template-columns: 25% 1fr;
	margin-bottom: 26px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	scroll-margin-top: calc(var(--header-h) + 20px);
	transition: border-color .35s, box-shadow .35s, transform .35s var(--ease);
}
.pf-card::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	background: var(--pc);
	z-index: 2;
}
.pf-card.panel-right { grid-template-columns: 1fr 25%; }
.pf-card.panel-right .pf-panel { order: 2; border-right: 0; border-left: 1px solid color-mix(in srgb, var(--pc) 14%, var(--card)); }
.pf-card:hover { border-color: color-mix(in srgb, var(--pc) 45%, var(--card)); box-shadow: 0 24px 70px color-mix(in srgb, var(--pc) 14%, transparent); }

.pf-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	background: color-mix(in srgb, var(--pc) 6%, var(--card));
	border-right: 1px solid color-mix(in srgb, var(--pc) 14%, var(--card));
}
.pf-logo {
	width: 88px; height: 88px;
	border-radius: 18px;
	border: 1.5px solid color-mix(in srgb, var(--pc) 45%, var(--card));
	overflow: hidden;
	transition: transform .4s var(--ease), box-shadow .4s;
}
.pf-logo img { width: 100%; height: 100%; object-fit: cover; }
.pf-card:hover .pf-logo { transform: scale(1.06); box-shadow: 0 0 30px color-mix(in srgb, var(--pc) 45%, transparent); }
.pf-name { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1.02; text-transform: uppercase; color: var(--text); margin: 22px 0 8px; }
.pf-slogan { font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; color: var(--pc); max-width: 170px; margin: 0 0 26px; }
.pf-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	max-width: 150px;
	padding: 12px 18px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--pc), #0051ff);
	color: #ffffff;
	font-family: var(--display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
	line-height: 1.4;
	text-align: left;
	text-transform: uppercase;
	box-shadow: 0 8px 28px color-mix(in srgb, var(--pc) 40%, transparent);
	transition: transform .25s var(--ease), box-shadow .3s;
}
.pf-btn svg { width: 11px; height: 11px; flex: none; transition: transform .3s var(--ease); }
.pf-btn::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0; left: -60%;
	width: 40%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
	transform: skewX(-20deg);
	transition: left .6s var(--ease);
}
.pf-btn:hover { color: #ffffff; transform: translateY(-2px); box-shadow: 0 14px 36px color-mix(in srgb, var(--pc) 60%, transparent); }
.pf-btn:hover::after { left: 130%; }
.pf-btn:hover svg { transform: translate(2px, -2px); }

.pf-main { padding: 44px 44px 40px; }
.pf-desc { color: var(--text); font-size: 17px; line-height: 1.35; margin: 0 0 36px; }
.pf-body { display: grid; grid-template-columns: 1fr 128px; gap: 34px; align-items: center; }
.pf-kf-label { display: flex; align-items: center; gap: 16px; margin: 0 0 22px; }
.pf-kf-label::before, .pf-kf-label::after { content: ""; flex: 1; height: 1px; background: color-mix(in srgb, var(--pc) 75%, transparent); }
.pf-kf-label span { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--pc); }
.pf-features { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.pf-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 13.5px; font-weight: 500; line-height: 1.4; transition: transform .25s var(--ease); }
.pf-features svg { width: 15px; height: 15px; flex: none; margin-top: 1px; color: var(--pc); transition: transform .25s var(--ease); }
.pf-features li:hover { transform: translateX(4px); }
.pf-features li:hover svg { transform: scale(1.2); }

.pf-phone { display: flex; flex-direction: column; align-items: center; animation: axon2-float 4.5s ease-in-out infinite; }
.pf-screen {
	position: relative;
	width: 124px;
	aspect-ratio: 124 / 240;
	border: 2px solid color-mix(in srgb, var(--pc) 55%, transparent);
	border-radius: 22px;
	padding: 8px;
	background: color-mix(in srgb, var(--pc) 10%, #0a0a1a);
	box-shadow: 0 0 40px color-mix(in srgb, var(--pc) 22%, transparent);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	overflow: hidden;
}
.pf-screen::before { content: ""; position: absolute; top: 9px; left: 50%; width: 40%; height: 8px; border-radius: 6px; transform: translateX(-50%); background: color-mix(in srgb, var(--pc) 15%, #0a0a1a); }
.pf-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pf-screen-logo { width: 42px; height: 42px; border-radius: 10px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--pc) 45%, transparent); }
.pf-screen-logo img { width: 100%; height: 100%; object-fit: cover; }
.pf-skel { display: grid; gap: 6px; width: 78%; }
.pf-skel i { display: block; height: 4px; border-radius: 2px; background: color-mix(in srgb, var(--pc) 35%, transparent); animation: axon2-skel 2.4s ease-in-out infinite; }
.pf-skel i:nth-child(1) { width: 70%; }
.pf-skel i:nth-child(2) { width: 55%; margin-left: auto; animation-delay: .2s; }
.pf-skel i:nth-child(3) { width: 65%; animation-delay: .4s; }
.pf-skel i:nth-child(4) { width: 45%; margin-left: auto; animation-delay: .6s; }
.pf-skel i:nth-child(5) { width: 60%; animation-delay: .8s; }
@keyframes axon2-skel { 50% { opacity: .35; } }
.pf-soon { font-family: var(--display); font-weight: 700; font-size: 8.5px; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; text-align: center; color: color-mix(in srgb, var(--pc) 70%, transparent); }
.pf-home { width: 44px; height: 3px; border-radius: 2px; margin-top: 10px; background: color-mix(in srgb, var(--pc) 40%, transparent); }
.pf-closing { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--pc); margin: 36px 0 0; }

.pf-cta {
	padding: 90px 0;
	text-align: center;
	border-top: 1px solid var(--line);
	background: radial-gradient(ellipse 40% 80% at 50% 50%, rgba(0, 81, 255, .12), transparent 70%);
}
.pf-cta .section-title { margin-bottom: 14px; }
.pf-cta p { color: var(--muted); font-size: 15px; max-width: 540px; margin: 0 auto 28px; }
.pf-cta .btn { font-size: 13px; padding: 14px 26px; }

@media (max-width: 900px) {
	.pf-card, .pf-card.panel-right { grid-template-columns: 1fr; }
	.pf-card.panel-right .pf-panel { order: 0; border-left: 0; }
	.pf-panel { border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--pc) 14%, var(--card)); }
	.pf-main { padding: 32px 24px; }
	.pf-body { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.pf-features { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.pf-phone, .pf-skel i { animation: none; }
	.pf-card, .pf-logo, .pf-btn, .pf-features li, .pf-logos a { transition: none; }
}

/* Real logos (transparent rounded-square PNGs): no placeholder frame, keep full shape. */
.pf-logo:has(img), .pf-logos a:has(img), .pf-screen-logo:has(img) { border: 0; border-radius: 0; overflow: visible; }
.pf-logo img, .pf-logos img, .pf-screen-logo img { object-fit: contain; }
.pf-logo:has(img) { width: 96px; height: 96px; }
.pf-card:hover .pf-logo:has(img) { box-shadow: none; filter: drop-shadow(0 0 18px color-mix(in srgb, var(--pc) 55%, transparent)); }
.pf-logos a:has(img):hover { box-shadow: none; filter: drop-shadow(0 8px 18px rgba(0, 81, 255, .45)); }
