/* CodoEstudio — identidad: Manrope, #2A43F8, #111184, #1E293B, #F9F6FE */

:root {
	--ink: #1e293b;
	--muted: #5c6578;
	--line: #e4e7f2;
	--paper: #ffffff;
	--surface: #f9f6fe;
	--accent: #2a43f8;
	--deep: #111184;
	--mark: #2a43f8;
	--max: 1180px;
	--pad: clamp(20px, 4vw, 40px);
	--header: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

body.codo-app {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Manrope, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: clip;
}

body.codo-app .ast-container,
body.codo-app #page,
body.codo-app #content,
body.codo-app #primary { all: unset; display: block; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.codo-skip {
	position: absolute;
	left: 12px;
	top: -48px;
	z-index: 200;
	background: var(--accent);
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
}

.codo-skip:focus { top: 12px; }

.codo-shell {
	width: min(100% - 2 * var(--pad), var(--max));
	margin-inline: auto;
}

.codo-shell--narrow { width: min(100% - 2 * var(--pad), 720px); }

.codo-top {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(10px);
}

.codo-top .codo-shell {
	display: flex;
	align-items: center;
	gap: 20px;
	height: var(--header);
}

.codo-logo {
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.03em;
	text-decoration: none;
	color: var(--ink);
	flex: none;
}

.codo-logo span { color: var(--accent); }

.codo-nav {
	display: none;
	align-items: stretch;
	gap: 4px;
	flex: 1;
	justify-content: center;
	align-self: stretch;
}

.codo-nav > a,
.codo-nav__item > a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 12px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
	text-decoration: none;
	border-radius: 8px;
}

.codo-nav > a:hover,
.codo-nav > a[aria-current="page"],
.codo-nav__item > a:hover,
.codo-nav__item > a[aria-current="page"],
.codo-nav__item.is-open > a { color: var(--ink); }

.codo-nav__item {
	position: static;
	display: flex;
	align-items: center;
}

.codo-nav__item--sub > a::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.45;
	transition: transform 0.2s ease;
}

.codo-nav__item:hover > a::after,
.codo-nav__item.is-open > a::after,
.codo-nav__item:focus-within > a::after {
	transform: rotate(225deg) translateY(1px);
}

.codo-mega {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 30;
	width: auto;
	padding: 22px var(--pad) 24px;
	background: var(--paper);
	border-top: 1px solid var(--line);
	box-shadow: 0 28px 60px rgba(17, 17, 132, 0.12);
}

.codo-mega--services { width: auto; }

.codo-nav__item:hover .codo-mega,
.codo-nav__item.is-open .codo-mega,
.codo-nav__item:focus-within .codo-mega { display: block; }

.codo-mega__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	width: min(100%, var(--max));
	margin-inline: auto;
}

.codo-mega--cases .codo-mega__grid,
.codo-mega--services .codo-mega__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.codo-mega__card {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	align-items: start;
	min-height: 0;
	padding: 12px;
	border-radius: 14px;
	text-decoration: none;
	color: var(--ink);
}

.codo-mega--services .codo-mega__card {
	grid-template-columns: 40px 1fr;
	padding: 10px;
}

.codo-mega__card:hover { background: var(--surface); }

.codo-mega__card span { min-width: 0; display: grid; gap: 3px; }
.codo-mega__card small {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
}
.codo-mega__card strong {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.codo-mega__card em {
	font-style: normal;
	font-size: 0.8rem;
	line-height: 1.35;
	color: var(--muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.codo-mega__all {
	display: block;
	width: min(100%, var(--max));
	margin: 12px auto 0;
	padding: 8px 12px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent);
	text-decoration: none;
	border-radius: 8px;
}

.codo-mega__all:hover { background: var(--surface); }

.codo-ico {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--surface);
	color: var(--accent);
	flex: none;
}

.codo-mega--services .codo-ico {
	width: 40px;
	height: 40px;
	border-radius: 10px;
}

.codo-ico svg {
	width: 28px;
	height: 28px;
	overflow: visible;
}

.codo-mega--services .codo-ico svg { width: 24px; height: 24px; }

.codo-ico__line {
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.codo-ico__dot { fill: currentColor; }
.codo-ico__slot {
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.4;
	opacity: 0.28;
}

.codo-mega__card:hover .codo-ico { background: #ecefff; }

.codo-top__cta {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 10px;
}

.codo-top__cta:hover { background: var(--deep); }

.codo-menu {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: var(--paper);
	border-radius: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: none;
	cursor: pointer;
}

.codo-menu__bars,
.codo-menu__bars::before,
.codo-menu__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 1px;
}

.codo-menu__bars {
	position: relative;
	transition: background 0.2s ease;
}

.codo-menu__bars::before,
.codo-menu__bars::after {
	content: "";
	position: absolute;
	left: 0;
	transition: transform 0.2s ease, top 0.2s ease;
}

.codo-menu__bars::before { top: -6px; }
.codo-menu__bars::after { top: 6px; }

.codo-menu[aria-expanded="true"] .codo-menu__bars {
	background: transparent;
}

.codo-menu[aria-expanded="true"] .codo-menu__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.codo-menu[aria-expanded="true"] .codo-menu__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.codo-drawer[hidden] { display: none !important; }

.codo-drawer {
	position: fixed;
	top: var(--header);
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--paper);
	z-index: 45;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding: 8px var(--pad) calc(28px + env(safe-area-inset-bottom, 0px));
}

.codo-drawer nav {
	display: flex;
	flex-direction: column;
	width: min(100%, 520px);
	margin: 0 auto;
}

.codo-drawer a {
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 4px 0;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	border-bottom: 1px solid var(--line);
}

.codo-acc { border-bottom: 1px solid var(--line); }

.codo-acc__top {
	display: flex;
	align-items: center;
	gap: 4px;
}

.codo-acc__top > a {
	flex: 1;
	border-bottom: 0;
	min-height: 56px;
}

.codo-acc__btn {
	flex: none;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.codo-acc__btn span {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 auto;
	border-right: 1.5px solid var(--ink);
	border-bottom: 1.5px solid var(--ink);
	transform: rotate(45deg) translate(-2px, -2px);
}

.codo-acc__btn[aria-expanded="true"] span {
	transform: rotate(225deg) translate(-2px, -2px);
}

.codo-acc ul {
	list-style: none;
	margin: 0;
	padding: 0 0 12px;
}

.codo-acc ul[hidden] { display: none !important; }

.codo-acc ul a {
	display: block;
	min-height: 44px;
	padding: 8px 8px 8px 4px;
	border: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--muted);
	letter-spacing: 0;
}

.codo-acc ul a:hover { color: var(--accent); }

h1, h2, h3 {
	margin: 0;
	letter-spacing: -0.03em;
	line-height: 1.12;
	font-weight: 700;
	text-wrap: balance;
	overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 6.4vw, 3.35rem); max-width: 16ch; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.05rem); max-width: 22ch; }
h3 { font-size: 1.15rem; }

.codo-kicker {
	margin: 0 0 14px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

.codo-lead,
.codo-copy {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 52ch;
}

.codo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.codo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	border: 1.5px solid var(--accent);
}

.codo-btn:hover { background: var(--deep); border-color: var(--deep); }
.codo-btn--line { background: transparent; color: var(--ink); border-color: var(--line); }
.codo-btn--line:hover { border-color: var(--ink); background: transparent; }

.codo-hero { padding: 36px 0 48px; }
.codo-hero--page { padding-bottom: 48px; }
.codo-hero--index h1 { max-width: 18ch; }
.codo-hero--index .codo-lead { max-width: 54ch; }

.codo-hero__grid {
	display: grid;
	gap: 32px;
	align-items: center;
}

.codo-map {
	margin: 0;
	width: 100%;
	min-width: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 16px;
	overflow: hidden;
}

.codo-map svg {
	width: 100%;
	height: auto;
	aspect-ratio: 420 / 360;
	display: block;
}

.codo-hero .codo-map {
	align-self: center;
}

.codo-case--hub .codo-hero,
.codo-case--layers .codo-hero {
	background: var(--surface);
}

.codo-case--timeline .codo-hero,
.codo-case--board .codo-hero {
	border-bottom: 1px solid var(--line);
}

.codo-map__tracks {
	stroke: var(--accent);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	opacity: 0.28;
}

.codo-map__pulse {
	stroke: var(--accent);
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	stroke-dasharray: 70 462;
	stroke-dashoffset: 0;
}

.codo-map__pulse--b {
	stroke: var(--deep);
	stroke-dasharray: 56 324;
}

.codo-band {
	border-block: 1px solid var(--line);
	padding: 18px 0;
	background: var(--surface);
}

.codo-path {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.codo-path::-webkit-scrollbar { display: none; }

.codo-path li {
	flex: none;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	background: var(--paper);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
}

.codo-path li span { color: var(--accent); font-variant-numeric: tabular-nums; }
.codo-path li.is-end { background: var(--ink); color: #fff; border-color: var(--ink); }
.codo-path li.is-end span { color: #9db0ff; }
.codo-path li.is-gold {
	background: #ffcd57;
	border-color: #ffcd57;
	color: var(--ink);
}
.codo-path li.is-gold span { color: var(--ink); }

.codo-block { padding: 64px 0; }
.codo-block--tint { background: var(--surface); }

.codo-intro { max-width: 58ch; margin-bottom: 36px; }
.codo-intro h2 { margin-bottom: 10px; }

.codo-split {
	display: grid;
	gap: 36px;
}

.codo-defs {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
}

.codo-defs li {
	display: grid;
	gap: 8px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.codo-defs strong { font-size: 1.02rem; }
.codo-defs span { color: var(--muted); }

.codo-index { display: grid; }

.codo-index a {
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
	text-decoration: none;
	align-items: start;
}

.codo-index a:last-child { border-bottom: 1px solid var(--line); }
.codo-index em { color: var(--accent); font-style: normal; font-weight: 800; font-size: 0.85rem; }
.codo-index strong { display: block; margin-bottom: 4px; }
.codo-index a:hover strong { color: var(--accent); }

.codo-cases { display: grid; gap: 28px; }
.codo-cases article {
	display: grid;
	gap: 12px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.codo-cases__n {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.codo-cases h2,
.codo-cases h3 { margin-bottom: 12px; max-width: 28ch; }
.codo-cases p { margin: 0 0 10px; color: var(--muted); }
.codo-cases b { color: var(--ink); }
.codo-cases ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
}

.codo-cases li {
	font-size: 0.78rem;
	font-weight: 700;
	padding: 7px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.codo-more { margin: 32px 0 0; }

.codo-board { display: grid; }

.codo-board a {
	display: grid;
	grid-template-columns: 2.6rem 1fr;
	gap: 14px;
	padding: 22px 0;
	border-top: 1px solid var(--line);
	text-decoration: none;
	align-items: start;
}

.codo-board a:last-child { border-bottom: 1px solid var(--line); }
.codo-board em { color: var(--accent); font-style: normal; font-weight: 800; font-size: 0.85rem; }
.codo-board small {
	display: block;
	margin-bottom: 4px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--muted);
}
.codo-board strong { display: block; margin-bottom: 6px; }
.codo-board a:hover strong { color: var(--accent); }

.codo-catalog {
	display: grid;
	gap: 16px;
}

.codo-catalog a {
	display: grid;
	gap: 10px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
	text-decoration: none;
}

.codo-catalog a:hover { border-color: var(--accent); }

.codo-catalog__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--muted);
}

.codo-catalog__meta em { color: var(--accent); font-style: normal; }
.codo-catalog strong { font-size: 1.12rem; max-width: 22ch; }
.codo-catalog p {
	margin: 0;
	color: var(--muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.codo-catalog__go { font-size: 0.85rem; font-weight: 700; color: var(--accent); }

.codo-journal__intro {
	padding: 48px 0 28px;
}

.codo-journal__intro h1 { max-width: 16ch; }
.codo-journal__intro .codo-lead { margin-top: 20px; }

.codo-journal__list {
	padding: 0 0 72px;
}

.codo-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
}

.codo-filters a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid var(--line);
	background: var(--paper);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
}

.codo-filters a:hover {
	border-color: var(--ink);
}

.codo-filters a.is-on {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.codo-filters a:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.codo-feed__empty {
	margin: 28px 0 0;
	color: var(--muted);
}

.codo-feed a[hidden],
.codo-feed__empty[hidden] {
	display: none !important;
}

.codo-feed {
	display: grid;
	border-top: 1px solid var(--line);
}

.codo-feed a {
	display: grid;
	grid-template-columns: 2.8rem 1fr;
	gap: 18px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
	text-decoration: none;
	align-items: start;
}

.codo-feed em {
	color: var(--accent);
	font-style: normal;
	font-weight: 800;
	font-size: 0.85rem;
	padding-top: 4px;
}

.codo-feed small {
	display: block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--accent);
}

.codo-feed strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	line-height: 1.25;
	max-width: 28ch;
	color: var(--ink);
}

.codo-feed a:hover strong { color: var(--accent); }

.codo-feed span {
	color: var(--muted);
	max-width: 58ch;
}

.codo-feed--tight a {
	grid-template-columns: 1fr;
	padding: 22px 0;
}

.codo-feed--tight strong { font-size: 1.15rem; }

.codo-read__back {
	display: inline-block;
	margin-bottom: 28px;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--muted);
}

.codo-read__back:hover { color: var(--accent); }

.codo-read__head {
	padding: 40px 0 48px;
	border-bottom: 1px solid var(--line);
}

.codo-read__head .codo-shell,
.codo-read__body .codo-shell {
	max-width: 720px;
}

.codo-read__head h1 { max-width: 18ch; }
.codo-read__head .codo-lead { margin-top: 24px; }

.codo-read__body { padding: 48px 0 64px; }

.codo-end .codo-kicker {
	color: #9db0ff;
	margin-bottom: 12px;
}

.codo-read__cta {
	padding: 88px 0;
}

.codo-read__cta .codo-shell {
	max-width: 720px;
}

.codo-read__cta h2 {
	max-width: 22ch;
}

.codo-read__cta p {
	margin-top: 20px;
	max-width: 46ch;
}

.codo-read__cta .codo-btn {
	margin-top: 32px;
}

.codo-read__section + .codo-read__section { margin-top: 56px; }

.codo-read__section h2 {
	margin: 0 0 20px;
	max-width: 22ch;
}

.codo-read__section p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 62ch;
}

.codo-read__section p:last-child { margin-bottom: 0; }

.codo-read__defs,
.codo-read__points {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.codo-read__defs li {
	display: grid;
	gap: 8px;
	padding: 22px 0;
	border-top: 1px solid var(--line);
}

.codo-read__defs li:last-child { border-bottom: 1px solid var(--line); }
.codo-read__defs span { color: var(--muted); }

.codo-read__points li {
	padding: 16px 0 16px 1.15em;
	border-top: 1px solid var(--line);
	position: relative;
	font-weight: 600;
}

.codo-read__points li:last-child { border-bottom: 1px solid var(--line); }

.codo-read__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.15em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.codo-read__pull {
	margin: 40px 0 8px;
	padding: 8px 0 8px 22px;
	border: 0;
	border-left: 3px solid var(--accent);
	color: var(--ink);
	font-weight: 700;
	font-size: 1.12rem;
	max-width: 42ch;
	line-height: 1.4;
}

.codo-read__more {
	padding: 48px 0 72px;
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.codo-read__more .codo-shell { max-width: 720px; }
.codo-read__more .codo-kicker { margin-bottom: 8px; }

.codo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.codo-tags li {
	font-size: 0.78rem;
	font-weight: 700;
	padding: 7px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.codo-pager {
	display: grid;
	gap: 20px;
	border-top: 1px solid var(--line);
	padding-top: 28px;
}

.codo-pager a {
	text-decoration: none;
	display: grid;
	gap: 6px;
}

.codo-pager a:last-child { text-align: right; }
.codo-pager span { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.codo-pager strong { font-size: 1rem; }
.codo-pager a:hover strong { color: var(--accent); }

.codo-related--plain a { grid-template-columns: 1fr; }

.codo-circuit-wrap { margin: 0 auto 8px; }

.codo-circuit {
	margin: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 22px 16px 18px;
}

.codo-circuit__wire {
	display: none;
	width: calc(100% - 48px);
	height: 8px;
	margin: 4px auto 18px;
	overflow: visible;
}

.codo-circuit__track,
.codo-circuit__pulse {
	fill: none;
	stroke-linecap: round;
}

.codo-circuit__track {
	stroke: var(--accent);
	stroke-width: 1.5;
	opacity: 0.25;
}

.codo-circuit__pulse {
	stroke: var(--accent);
	stroke-width: 2.4;
	stroke-dasharray: 16 92;
}

.codo-circuit ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.codo-circuit li {
	position: relative;
	min-height: 88px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.3;
}

.codo-circuit li b {
	display: block;
	margin-bottom: 6px;
	color: var(--accent);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}

.codo-circuit li::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 12px;
	border: 2px solid var(--accent);
	opacity: 0;
	pointer-events: none;
}

.codo-pieces {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.codo-pieces article {
	padding: 22px 20px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
}

.codo-pieces em {
	display: block;
	margin-bottom: 8px;
	color: var(--accent);
	font-style: normal;
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
}

.codo-pieces p { margin: 0; font-weight: 600; }

.codo-pieces--rail article {
	border: 0;
	border-radius: 0;
	background: transparent;
	border-left: 2px solid var(--line);
	padding: 18px 0 18px 22px;
}

.codo-pieces--rail article:first-child { border-left-color: var(--accent); }

.codo-story {
	display: grid;
	gap: 24px;
}

.codo-panel h2 {
	color: #fff;
	margin: 8px 0 0;
}

.codo-panel--wide { padding: 32px 28px; }
.codo-panel--wide p { max-width: 62ch; }

.codo-svc {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.codo-svc a {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-content: start;
	min-height: 148px;
	padding: 22px 20px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
	text-decoration: none;
}

.codo-svc a:hover { border-color: var(--accent); }

.codo-svc small {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--accent);
}

.codo-svc strong {
	font-size: 1.05rem;
	line-height: 1.35;
}

.codo-svc span {
	margin-top: auto;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--muted);
}

.codo-from {
	margin: 0 0 16px;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-left: 3px solid var(--accent);
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
}

.codo-lead a { color: var(--accent); font-weight: 700; text-decoration: none; }
.codo-lead a:hover { text-decoration: underline; }

.codo-dia {
	margin: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 18px 14px 14px;
	overflow: hidden;
}

.codo-dia svg { width: 100%; height: auto; display: block; }

.codo-dia figcaption {
	margin: 12px 8px 4px;
	text-align: center;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--muted);
}

.codo-dia__path {
	stroke: var(--accent);
	stroke-width: 1.25;
	stroke-linecap: round;
	fill: none;
	opacity: 0.35;
}

.codo-dia--cal .codo-dia__path {
	stroke-dasharray: 28 500;
	opacity: 0.55;
}

.codo-dia__path--a,
.codo-dia__path--b {
	stroke-dasharray: 12 58;
}

.codo-dia__frame {
	stroke-dasharray: 12 8;
}

.codo-ally__roles {
	display: grid;
	gap: 32px;
}

.codo-ally__side {
	padding: 32px 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
}

.codo-ally__roles h3 {
	margin: 0;
	font-size: 1.35rem;
	max-width: 18ch;
}

.codo-ally__roles .codo-panel h3 { color: #fff; }
.codo-ally__roles .codo-panel ul {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
}
.codo-ally__roles .codo-panel li {
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,0.14);
	font-weight: 600;
	color: rgba(255,255,255,0.9);
}
.codo-ally__roles .codo-panel li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }

.codo-ally__levels {
	display: grid;
	gap: 28px;
}

.codo-level {
	display: grid;
	gap: 32px;
	padding: 36px 32px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
}

.codo-level h3 {
	margin: 0 0 22px;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.codo-level header p { margin: 0; color: var(--muted); max-width: 46ch; line-height: 1.55; }

.codo-level__cut {
	margin: 28px 0 0 !important;
	padding: 16px 18px;
	border-radius: 10px;
	background: var(--surface);
	color: var(--ink) !important;
	font-weight: 700;
}

.codo-level ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.codo-level li {
	padding-left: 1.1em;
	position: relative;
	font-weight: 600;
}

.codo-level li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.codo-level--silver { border-color: #c5cad6; }
.codo-level--silver .codo-kicker { color: #5c6578; }
.codo-level--silver li::before { background: #5c6578; }

.codo-level--gold {
	border-color: #ffcd57;
	background: #fffdf6;
	box-shadow: 0 16px 40px rgba(17, 17, 132, 0.08);
}
.codo-level--gold .codo-kicker { color: #9a6b00; }
.codo-level--gold .codo-level__cut { background: #ffcd57; }
.codo-level--gold li::before { background: #ffcd57; }

.codo-ally__table-wrap {
	margin-top: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 16px 20px 20px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--paper);
}

.codo-ally__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.codo-ally__table th,
.codo-ally__table td {
	padding: 18px 16px;
	border-bottom: 1px solid var(--line);
	text-align: center;
	vertical-align: middle;
}

.codo-ally__table th[scope="row"] {
	text-align: left;
	font-weight: 650;
	padding-left: 0;
}

.codo-ally__table thead th {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.codo-ally__table thead th:first-child {
	text-align: left;
	padding-left: 0;
}

.codo-ally__table tbody tr:last-child th,
.codo-ally__table tbody tr:last-child td {
	border-bottom: 0;
}

.codo-ally__table thead th:last-child,
.codo-ally__table td:last-child {
	background: #fffdf6;
}

.codo-ally__yes {
	font-weight: 800;
	color: var(--accent);
}

.codo-ally__table td:last-child .codo-ally__yes { color: #9a6b00; }

.codo-ally__no { color: var(--muted); }

.codo-ally .codo-hero {
	padding-top: 56px;
	padding-bottom: 72px;
}

.codo-ally .codo-kicker { margin-bottom: 12px; }
.codo-ally .codo-lead { margin-top: 28px; }
.codo-ally .codo-actions {
	margin-top: 40px;
	gap: 12px;
}
.codo-ally .codo-band { padding: 36px 0; }
.codo-ally .codo-path { gap: 14px; }
.codo-ally .codo-path li { padding: 12px 18px; }
.codo-ally .codo-block { padding: 88px 0; }
.codo-ally .codo-intro { margin-bottom: 56px; }
.codo-ally .codo-intro h2 { margin-bottom: 20px; }
.codo-ally .codo-copy { margin-top: 24px; }
.codo-ally .codo-split { gap: 56px; }
.codo-ally .codo-split h2 { margin-bottom: 0; }
.codo-ally .codo-defs,
.codo-ally .codo-points { margin-top: 32px; }
.codo-ally .codo-defs li { padding: 32px 0; gap: 12px; }
.codo-ally .codo-points li { padding: 20px 0; }
.codo-ally .codo-panel { padding: 32px 24px; }
.codo-ally .codo-end {
	padding-top: 96px;
	padding-bottom: 96px;
}
.codo-ally .codo-end p { margin-top: 24px; }
.codo-ally .codo-end--compact .codo-btn { margin-top: 36px; }

.codo-pieces p strong { display: block; margin-bottom: 6px; }

.codo-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 20px;
}

.codo-stack p {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
}

.codo-stack ul { list-style: none; margin: 0; padding: 0; }
.codo-stack li {
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 650;
	font-weight: 600;
}

.codo-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	border-left: 1px solid var(--line);
}

.codo-steps li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 8px;
	padding: 0 0 28px 18px;
	position: relative;
}

.codo-steps li::before {
	content: "";
	position: absolute;
	left: -4px;
	top: 6px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.codo-steps span { font-weight: 800; color: var(--accent); font-size: 0.82rem; }
.codo-steps p { margin: 6px 0 0; color: var(--muted); }

.codo-evolve {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.codo-evolve li {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 0 16px;
	border-left: 3px solid var(--accent);
	background: var(--paper);
	font-weight: 700;
}

.codo-evolve span { color: var(--accent); font-size: 0.8rem; }

.codo-end {
	background: var(--ink);
	color: #fff;
	padding: 72px 0;
}

.codo-end h2 { color: #fff; max-width: 18ch; }
.codo-end p { color: rgba(255,255,255,0.72); max-width: 48ch; margin: 14px 0 0; }
.codo-end a { color: #fff; font-weight: 700; }
.codo-end--compact .codo-btn { margin-top: 24px; }
.codo-end__grid { display: grid; gap: 36px; }

.codo-form-wrap { min-width: 0; }

body.codo-app .codo-form-wrap .wpcf7-form {
	margin: 0;
}

body.codo-app .codo-form-wrap .codo-form {
	display: grid;
	gap: 16px;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 24px;
	background: var(--paper);
	color: var(--ink);
	border: 1px solid var(--line);
	border-radius: 16px;
	font-family: inherit;
	box-shadow: 0 12px 40px rgba(17, 17, 132, 0.06);
}

body.codo-app .codo-end .codo-form-wrap .codo-form {
	border-color: transparent;
	box-shadow: none;
}

body.codo-app .codo-form-wrap .codo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

body.codo-app .codo-form-wrap .codo-field,
body.codo-app .codo-form-wrap .codo-form__submit {
	margin: 0;
}

body.codo-app .codo-form-wrap .codo-form p { margin: 0; }
body.codo-app .codo-form-wrap .codo-form label br { display: none; }
body.codo-app .codo-form-wrap .codo-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	margin: 0;
	color: var(--ink);
	text-transform: none;
	letter-spacing: 0;
}

.codo-form-wrap .wpcf7-form-control-wrap { display: block; margin-top: 6px; }

.codo-form-wrap input,
.codo-form-wrap textarea,
.codo-form-wrap select,
.codo-app .wpcf7 input:not([type="submit"]),
.codo-app .wpcf7 textarea,
.codo-app .wpcf7 select {
	width: 100%;
	max-width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 10px;
	font: inherit;
	background: var(--paper);
	color: var(--ink);
	box-sizing: border-box;
}

.codo-form-wrap select {
	appearance: none;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231e293b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
	cursor: pointer;
}

.codo-form-wrap input:focus,
.codo-form-wrap textarea:focus,
.codo-form-wrap select:focus,
.codo-app .wpcf7 input:not([type="submit"]):focus,
.codo-app .wpcf7 textarea:focus,
.codo-app .wpcf7 select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(42, 67, 248, 0.14);
}

.codo-app .wpcf7 textarea { min-height: 132px; resize: vertical; }

.codo-form-wrap .codo-form__submit { position: relative; }

.codo-app .wpcf7 input[type="submit"] {
	min-height: 48px;
	width: 100%;
	margin: 0;
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
}

.codo-app .wpcf7 input[type="submit"]:hover { background: var(--deep); }

.codo-form-wrap .wpcf7-spinner {
	margin: 0;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
}

.codo-form-wrap .wpcf7-response-output {
	margin: 0;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid var(--line);
	font-size: 0.92rem;
}

.codo-form-wrap .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 0.82rem;
	color: #b42318;
}

.codo-contact { padding-top: 40px; }
.codo-contact .codo-split { align-items: start; }
.codo-contact__ask { margin-top: 28px; }
.codo-contact .codo-points { margin-top: 12px; }
.codo-contact__form { min-width: 0; }
.codo-contact .codo-form-wrap { margin-top: 0; }

.codo-panel {
	background: var(--ink);
	color: #fff;
	padding: 28px;
	border-radius: 16px;
}

.codo-panel .codo-kicker { color: #9db0ff; }
.codo-panel p { margin: 10px 0 0; color: rgba(255,255,255,0.82); }

.codo-points {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.codo-points li {
	padding: 14px 0;
	border-top: 1px solid var(--line);
	font-weight: 600;
}

.codo-points li:last-child { border-bottom: 1px solid var(--line); }

.codo-related { display: grid; gap: 0; margin-top: 24px; }
.codo-related a {
	display: grid;
	grid-template-columns: 2.2rem 1fr;
	gap: 12px;
	padding: 16px 0;
	border-top: 1px solid var(--line);
	text-decoration: none;
	font-weight: 700;
}

.codo-related a:last-child { border-bottom: 1px solid var(--line); }
.codo-related em { color: var(--accent); font-style: normal; }

details { border-bottom: 1px solid var(--line); }
details summary {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	min-height: 52px;
	align-items: center;
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; }
details[open] summary::after { content: "–"; }
details p { margin: 0 0 16px; color: var(--muted); }

.codo-foot {
	border-top: 1px solid var(--line);
	background: var(--surface);
	padding: 48px 0 24px;
}

.codo-foot__grid { display: grid; gap: 28px; }
.codo-foot p { color: var(--muted); max-width: 32ch; }
.codo-foot__label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--muted);
}

.codo-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.codo-foot a { text-decoration: none; font-size: 0.92rem; }
.codo-foot a:hover { color: var(--accent); }
.codo-foot__base { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; }

.codo-reveal { opacity: 1; }

@media (min-width: 768px) {
	.codo-hero { padding: 56px 0 72px; }
	.codo-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
	.codo-hero__grid--flip { grid-template-columns: 0.95fr 1.05fr; }
	.codo-hero__grid--flip .codo-map { order: -1; }
	.codo-split { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
	.codo-contact .codo-split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px; }
	.codo-split--flip > .codo-panel { order: -1; }
	.codo-story { max-width: 720px; gap: 28px; }
	.codo-panel--wide { padding: 40px 44px; }
	.codo-pieces--mosaic { grid-template-columns: 1fr 1fr 1fr; }
	.codo-pieces--mosaic article:first-child { grid-column: span 2; }
	.codo-pieces--rail { grid-template-columns: 1fr; max-width: 640px; }
	.codo-pieces--layers article { min-width: 0; }
	.codo-pieces--layers article:nth-child(2),
	.codo-pieces--layers article:nth-child(4) { margin-left: 24px; width: calc(100% - 24px); }
	.codo-pieces--layers article:nth-child(3),
	.codo-pieces--layers article:nth-child(5) { margin-left: 48px; width: calc(100% - 48px); }
	.codo-split__sticky { position: sticky; top: calc(var(--header) + 24px); }
	.codo-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.codo-end__grid { grid-template-columns: 1fr 1fr; align-items: start; }
	body.codo-app .codo-form-wrap .codo-form { padding: 28px; }
	body.codo-app .codo-form-wrap .codo-grid { grid-template-columns: 1fr 1fr; }
	.codo-foot__grid { grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr; }
	.codo-evolve { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.codo-cases article { grid-template-columns: 3.2rem 1fr; gap: 24px; }
	.codo-catalog { grid-template-columns: 1fr 1fr; }
	.codo-journal__intro { padding: 64px 0 36px; }
	.codo-read__head { padding: 56px 0 64px; }
	.codo-read__body { padding: 64px 0 96px; }
	.codo-read__section + .codo-read__section { margin-top: 80px; }
	.codo-read__cta { padding: 112px 0; }
	.codo-pager { grid-template-columns: 1fr 1fr; }
	.codo-circuit__wire { display: block; }
	.codo-circuit ol { grid-template-columns: repeat(auto-fit, minmax(108px, 1fr)); }
	.codo-circuit li { text-align: center; }
	.codo-pieces { grid-template-columns: 1fr 1fr; }
	.codo-svc { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.codo-ally__roles { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 40px; }
	.codo-ally__side,
	.codo-ally .codo-panel { padding: 40px 36px; }
	.codo-ally .codo-split { gap: 80px; }
	.codo-ally .codo-block { padding: 112px 0; }
	.codo-ally .codo-hero { padding-top: 72px; padding-bottom: 88px; }
	.codo-ally .codo-end { padding-top: 112px; padding-bottom: 112px; }
	.codo-ally__levels { gap: 32px; }
	.codo-ally__table-wrap { padding: 12px 36px 16px; }
	.codo-level {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 56px;
		align-items: start;
		padding: 44px 40px;
	}
	.codo-level--silver { margin-left: 28px; width: calc(100% - 28px); }
	.codo-level--gold { margin-left: 56px; width: calc(100% - 56px); }
	.codo-path { flex-wrap: wrap; overflow: visible; }
	.codo-block { padding: 88px 0; }
}

@media (min-width: 1024px) {
	.codo-nav { display: flex; }
	.codo-top__cta { display: inline-flex; }
	.codo-menu { display: none; }
	.codo-drawer { display: none !important; }
	.codo-index { grid-template-columns: 1fr 1fr; column-gap: 40px; }
	.codo-index a:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 359px) {
	.codo-btn { width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
	.codo-map__pulse {
		animation: codo-flow-a 3.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	}
	.codo-map__pulse--b {
		animation-name: codo-flow-b;
		animation-duration: 3.8s;
		animation-delay: 0.9s;
	}
	.codo-map__node {
		transform-box: fill-box;
		transform-origin: center;
		animation: codo-node 2.6s ease-in-out infinite;
	}
	.codo-circuit__pulse {
		animation: codo-wire 3.2s linear infinite;
	}
	.codo-circuit li::after {
		animation: codo-hit 4.2s ease-in-out infinite;
		animation-delay: var(--d, 0s);
	}
	.codo-dia__band--1 { animation: codo-soft 3.6s ease-in-out infinite; }
	.codo-dia__band--2 { animation: codo-soft 3.6s ease-in-out 0.45s infinite; }
	.codo-dia__band--3 { animation: codo-soft 3.6s ease-in-out 0.9s infinite; }
	.codo-dia__band--4 { animation: codo-soft 3.6s ease-in-out 1.35s infinite; }
	.codo-dia__frame { animation: codo-trace 6s linear infinite; }
	.codo-dia__path { animation: codo-trace 4.8s linear infinite; }
	.codo-dia__path--b { animation-delay: -2.4s; }
	.codo-dia__tip { animation: codo-soft 3.2s ease-in-out infinite; }
	.codo-dia__live { animation: codo-soft 3s ease-in-out infinite; }
	.codo-dia__front { animation: codo-soft 3.8s ease-in-out infinite; }
	.codo-ico__pulse {
		stroke-dasharray: 18 80;
		animation: codo-ico-dash 2.4s linear infinite;
	}
	.codo-ico__run {
		offset-path: path("M24 8 L30 22 L24 32");
		offset-distance: 0%;
		animation: codo-ico-run 2.6s ease-in-out infinite;
	}
	.codo-ico--captacion-comercial .codo-ico__run {
		offset-path: path("M24 9 L24 20 L24 34");
	}
	.codo-ico--crm-a-medida .codo-ico__run {
		offset-path: none;
		animation: codo-ico-nudge 2.2s ease-in-out infinite;
	}
	.codo-ico__live { animation: codo-ico-blink 2.2s ease-in-out infinite; }
	.codo-ico__sat { transform-box: fill-box; transform-origin: center; animation: codo-ico-blink 2.4s ease-in-out infinite; }
	.codo-ico__sat--2 { animation-delay: 0.4s; }
	.codo-ico__sat--3 { animation-delay: 0.8s; }
	.codo-ico__hub { animation: codo-ico-soft 2.8s ease-in-out infinite; }
	.codo-ico__layer { animation: codo-ico-shift 3s ease-in-out infinite; }
	.codo-ico__layer--2 { animation-delay: 0.25s; }
	.codo-ico__layer--3 { animation-delay: 0.5s; }
	.codo-ico__slot { animation: codo-ico-fill 2.4s ease-in-out infinite; }
	.codo-ico__spin { transform-box: fill-box; transform-origin: center; animation: codo-ico-rot 6s linear infinite; }
	.codo-ico__spin--rev { animation-direction: reverse; animation-duration: 5s; }
	.codo-mega__card:hover .codo-ico__pulse { animation-duration: 1s; }
	.codo-mega__card:hover .codo-ico__spin { animation-duration: 2.4s; }
	.codo-mega__card:hover .codo-ico__run { animation-duration: 1.2s; }
	.codo-reveal {
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.45s ease, transform 0.45s ease;
	}
	.codo-reveal.is-in { opacity: 1; transform: none; }
	.codo-read__head h1.codo-reveal { transition-delay: 0.08s; }
	.codo-read__head .codo-lead.codo-reveal { transition-delay: 0.16s; }
	.codo-read__cta.codo-reveal { transform: translateY(16px); transition-duration: 0.55s; }
}

@keyframes codo-flow-a {
	to { stroke-dashoffset: -462; }
}

@keyframes codo-flow-b {
	to { stroke-dashoffset: -324; }
}

@keyframes codo-node {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.45; }
}

@keyframes codo-wire {
	to { stroke-dashoffset: -108; }
}

@keyframes codo-hit {
	0%, 18%, 100% { opacity: 0; }
	8%, 14% { opacity: 1; }
}

@keyframes codo-soft {
	0%, 100% { opacity: 0.72; }
	50% { opacity: 1; }
}

@keyframes codo-trace {
	to { stroke-dashoffset: -80; }
}

@keyframes codo-ico-dash {
	to { stroke-dashoffset: -98; }
}

@keyframes codo-ico-run {
	0% { offset-distance: 0%; opacity: 0; }
	12% { opacity: 1; }
	88% { opacity: 1; }
	100% { offset-distance: 100%; opacity: 0; }
}

@keyframes codo-ico-nudge {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(4px); }
}

@keyframes codo-ico-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.28; }
}

@keyframes codo-ico-soft {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

@keyframes codo-ico-shift {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-2px); }
}

@keyframes codo-ico-fill {
	0%, 100% { opacity: 0.22; }
	50% { opacity: 0.9; }
}

@keyframes codo-ico-rot {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.codo-map__pulse,
	.codo-map__node,
	.codo-circuit__pulse,
	.codo-circuit li::after,
	.codo-dia__band--1,
	.codo-dia__band--2,
	.codo-dia__band--3,
	.codo-dia__band--4,
	.codo-dia__frame,
	.codo-dia__path,
	.codo-dia__tip,
	.codo-dia__live,
	.codo-dia__front,
	.codo-ico__pulse,
	.codo-ico__run,
	.codo-ico__live,
	.codo-ico__sat,
	.codo-ico__hub,
	.codo-ico__layer,
	.codo-ico__slot,
	.codo-ico__spin { animation: none; }
	.codo-reveal { opacity: 1; transform: none; }
}

html.codo-nav-open,
html.codo-nav-open body {
	overflow: hidden;
	overscroll-behavior: none;
}

html.codo-nav-open body {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
}

html.codo-nav-open .codo-top {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 60;
}

html.codo-nav-open .codo-drawer { z-index: 55; }

.admin-bar .codo-top { top: 32px; }
.admin-bar .codo-drawer { top: calc(var(--header) + 32px); }

@media (max-width: 1023px) {
	body.codo-app { padding-top: var(--header); }
	.codo-top {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}
}

@media (max-width: 782px) {
	.admin-bar .codo-top { top: 46px; }
	.admin-bar .codo-drawer { top: calc(var(--header) + 46px); }
}

.codo-app a:focus-visible,
.codo-app button:focus-visible,
.codo-app summary:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}
