/* =====================================================================
   EKO Gateway — component styles
   Ports the Claude Design system. Tokens mirror theme.json.
   ===================================================================== */

:root {
	--eko-ink: #071120;
	--eko-ink-2: #0A1A2F;
	--eko-ink-3: #050D18;
	--eko-navy: #0B1B2E;
	--eko-panel: #0C1E36;
	--eko-accent: #22B8A8;
	--eko-accent-dark: #159888;
	--eko-accent-press: #06231F;
	--eko-slate: #4A5A6E;
	--eko-muted: #8395A8;
	--eko-surface: #F8FAFC;
	--eko-surface-2: #F2F6FA;
	--eko-line: #E3E9F0;
	--eko-white: #FFFFFF;
	--eko-max: 1200px;
	--eko-font-head: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
	--eko-font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;
}

@keyframes ekoPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

body { font-family: var(--eko-font-body); background: var(--eko-white); color: var(--eko-navy); }

/* Full-bleed page composition — sections butt together edge-to-edge, no block
   gap or root padding between them. Every template wraps its content in an
   .eko-section (which supplies its own padding), so this is safe globally. */
main.wp-block-group,
.wp-block-post-content { margin: 0 !important; padding: 0 !important; max-width: none !important; }
.wp-block-post-content > *,
main.wp-block-group > * { margin-block: 0 !important; }
section[class*="eko-"] { margin: 0; }

/* Links inside the design surfaces are never underlined. */
.eko-header a, .eko-drawer a, .eko-footer a,
section[class*="eko-"] a { text-decoration: none; }
.eko-prose a { text-decoration: underline; }

/* ---- Layout helpers ------------------------------------------------- */
.eko-section { padding: clamp(56px, 10vw, 96px) 24px; }
.eko-section--tight { padding: clamp(48px, 8vw, 80px) 24px; }
.eko-wrap { max-width: var(--eko-max); margin-inline: auto; }
.eko-wrap--narrow { max-width: 1000px; margin-inline: auto; }
.eko-wrap--slim { max-width: 800px; margin-inline: auto; }

.eko-bg-white { background: var(--eko-white); color: var(--eko-navy); }
.eko-bg-surface { background: var(--eko-surface-2); color: var(--eko-navy); }
.eko-bg-ink { background: var(--eko-ink); color: var(--eko-white); }
.eko-bg-ink-2 { background: var(--eko-ink-2); color: var(--eko-white); }
.eko-bg-cta { background: linear-gradient(135deg, var(--eko-ink-2) 0%, var(--eko-ink) 100%); color: var(--eko-white); }

/* ---- Eyebrows & headings ------------------------------------------- */
.eko-eyebrow {
	color: var(--eko-accent); font-size: 13px; font-weight: 800;
	letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 14px;
}
.eko-h1 { font-family: var(--eko-font-head); font-size: clamp(34px, 7vw, 56px); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 24px; text-wrap: pretty; }
.eko-h2 { font-family: var(--eko-font-head); font-size: clamp(28px, 5.5vw, 40px); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 18px; }
.eko-h3 { font-family: var(--eko-font-head); font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.eko-lead { font-size: 17px; line-height: 1.65; color: var(--eko-slate); margin: 0; }
.eko-bg-ink .eko-lead, .eko-bg-ink-2 .eko-lead, .eko-bg-cta .eko-lead { color: rgba(255,255,255,0.72); }
.eko-bg-ink .eko-h1, .eko-bg-ink .eko-h2, .eko-bg-ink .eko-h3,
.eko-bg-ink-2 .eko-h1, .eko-bg-ink-2 .eko-h2, .eko-bg-ink-2 .eko-h3,
.eko-bg-cta .eko-h2 { color: var(--eko-white); }
.eko-section-head { max-width: 640px; margin: 0 0 56px; }
.eko-section-head--center { max-width: 680px; margin: 0 auto 56px; text-align: center; }

/* ---- Badges / pills / tags ----------------------------------------- */
.eko-pill {
	display: inline-flex; align-items: center; gap: 8px;
	border: 1px solid rgba(34,184,168,0.4); background: rgba(34,184,168,0.08);
	color: var(--eko-accent); font-size: 13px; font-weight: 700;
	letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px;
}
.eko-pill .eko-dotlive { width: 7px; height: 7px; border-radius: 50%; background: var(--eko-accent); animation: ekoPulse 2s infinite; }
.eko-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eko-accent); border: 1px solid rgba(34,184,168,0.4); padding: 3px 8px; border-radius: 4px; }
.eko-tag--muted { color: var(--eko-slate); border-color: #D5DEE8; }
.eko-bg-ink-2 .eko-tag--muted { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.eko-chip { font-size: 13px; font-weight: 700; color: var(--eko-navy); background: #EFF4F9; border: 1px solid var(--eko-line); padding: 7px 14px; border-radius: 999px; }
.eko-taxrow { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---- Buttons -------------------------------------------------------- */
.eko-btn { display: inline-block; background: var(--eko-accent); color: var(--eko-accent-press); font-size: 16px; font-weight: 800; padding: 15px 30px; border-radius: 8px; transition: filter .15s ease; }
.eko-btn:hover { filter: brightness(1.1); }
.eko-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--eko-white); }
.eko-btn--ghost:hover { border-color: var(--eko-accent); color: var(--eko-accent); filter: none; }
.eko-btn--sm { font-size: 15px; padding: 11px 22px; }
.eko-link-accent { font-size: 15px; font-weight: 700; color: var(--eko-accent-dark); }
.eko-bg-ink .eko-link-accent, .eko-bg-ink-2 .eko-link-accent { color: var(--eko-accent); }
.eko-link-accent:hover { color: var(--eko-accent); }

/* ---- Header / nav --------------------------------------------------- */
.eko-header { position: sticky; top: 0; z-index: 50; background: rgba(7,17,32,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.eko-header__inner { max-width: var(--eko-max); margin-inline: auto; padding: 0 20px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.eko-header__logo img { height: 44px; width: auto; display: block; }
.eko-nav { display: flex; align-items: center; gap: 36px; }
.eko-nav a { color: rgba(255,255,255,0.72); font-size: 15px; font-weight: 600; }
.eko-nav a:hover, .eko-nav a[aria-current="page"], .eko-nav a.current-menu-item { color: var(--eko-white); font-weight: 700; }
.eko-nav .eko-btn { color: var(--eko-accent-press); }
.eko-nav .eko-btn:hover { color: var(--eko-accent-press); }
.eko-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.eko-hamburger span { display: block; width: 24px; height: 2px; background: var(--eko-white); border-radius: 2px; }
.eko-drawer { position: fixed; inset: 0; z-index: 100; background: rgba(7,17,32,0.98); flex-direction: column; padding: 16px 24px; overflow-y: auto; display: none; }
.eko-drawer.is-open { display: flex; }
.eko-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.eko-drawer__top img { height: 40px; width: auto; }
.eko-drawer__close { background: none; border: none; color: var(--eko-white); font-size: 34px; line-height: 1; cursor: pointer; padding: 6px; }
.eko-drawer__links { display: flex; flex-direction: column; margin-top: 36px; }
.eko-drawer__links a { color: var(--eko-white); font-family: var(--eko-font-head); font-size: 24px; font-weight: 700; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.eko-drawer__links .eko-btn { margin-top: 28px; text-align: center; border: none; padding: 15px; }

/* ---- Hero ----------------------------------------------------------- */
.eko-hero { position: relative; background: var(--eko-ink); color: var(--eko-white); overflow: hidden; }
.eko-hero__bg { position: absolute; inset: 0; }
.eko-slides { position: absolute; inset: 0; }
.eko-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.eko-slide.is-active { opacity: 1; }
.eko-hero__scrim-1 { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,32,0.94) 0%, rgba(7,17,32,0.82) 45%, rgba(7,17,32,0.45) 100%); pointer-events: none; }
.eko-hero__scrim-2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,32,0.5) 0%, transparent 30%, transparent 70%, rgba(7,17,32,0.85) 100%); pointer-events: none; }
.eko-hero__scrim-center { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,32,0.85) 0%, rgba(7,17,32,0.72) 55%, rgba(7,17,32,0.95) 100%); pointer-events: none; }
.eko-hero__inner { position: relative; max-width: var(--eko-max); margin-inline: auto; padding: clamp(64px, 11vw, 120px) 24px clamp(56px, 10vw, 96px); }
.eko-hero__inner--center { text-align: center; }
.eko-hero__body { max-width: 640px; }
.eko-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.eko-hero__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: clamp(40px, 7vw, 72px); }
.eko-hero__caption { font-family: var(--eko-font-head); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.eko-hero__dots { display: flex; gap: 6px; }
.eko-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.45); border: none; padding: 0; cursor: pointer; transition: all .4s ease; }
.eko-dot.is-active { width: 22px; background: var(--eko-accent); }

/* Hero stat strip */
.eko-hero__stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.eko-hero__stat-t { font-family: var(--eko-font-head); font-size: 15px; font-weight: 700; color: var(--eko-white); }
.eko-hero__stat-d { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.eko-hero__divider { width: 1px; background: rgba(255,255,255,0.12); }

/* ---- Generic grids -------------------------------------------------- */
.eko-grid { display: grid; gap: 28px; }
.eko-grid--3 { grid-template-columns: repeat(3, 1fr); }
.eko-grid--4 { grid-template-columns: repeat(4, 1fr); }
.eko-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.eko-grid--2 { grid-template-columns: 1fr 1fr; gap: 20px; }
.eko-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.eko-split--64 { gap: 64px; }
.eko-split--wide-left { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
.eko-split--wide-right { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.eko-split--dash { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }

/* ---- Cards ---------------------------------------------------------- */
.eko-card { border: 1px solid var(--eko-line); border-radius: 14px; padding: 32px; background: var(--eko-surface); transition: all .2s ease; }
.eko-card:hover { border-color: var(--eko-accent); transform: translateY(-3px); }
.eko-card__num { font-family: var(--eko-font-head); font-size: 26px; font-weight: 700; color: #C6D2DE; margin-bottom: 16px; }
.eko-card p { font-size: 15px; line-height: 1.6; color: var(--eko-slate); margin: 0; }
.eko-card h3 { color: var(--eko-navy); }

.eko-stat { border: 1px solid var(--eko-line); border-radius: 14px; padding: 28px; background: var(--eko-surface); }
.eko-stat__v { font-family: var(--eko-font-head); font-size: 34px; font-weight: 700; color: var(--eko-navy); margin-bottom: 8px; }
.eko-stat__l { font-size: 14px; line-height: 1.55; color: var(--eko-slate); }

.eko-feature { border: 1px solid var(--eko-line); border-radius: 12px; padding: 24px; background: var(--eko-surface); }
.eko-feature h3 { font-family: var(--eko-font-head); font-size: 15.5px; font-weight: 700; margin: 0 0 8px; color: var(--eko-navy); }
.eko-feature p { font-size: 13.5px; line-height: 1.55; color: var(--eko-slate); margin: 0; }
.eko-bg-ink-2 .eko-feature { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.eko-bg-ink-2 .eko-feature h3 { color: var(--eko-white); }
.eko-bg-ink-2 .eko-feature p { color: rgba(255,255,255,0.62); }

/* Icon + text row (solutions / checklist) */
.eko-iconrow { display: flex; gap: 18px; }
.eko-iconrow__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: rgba(34,184,168,0.1); border: 1px solid rgba(34,184,168,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--eko-font-head); font-weight: 700; color: var(--eko-accent-dark); font-size: 17px; }
.eko-iconrow h3 { font-family: var(--eko-font-head); font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--eko-navy); }
.eko-iconrow p { font-size: 15px; line-height: 1.6; color: var(--eko-slate); margin: 0; }
.eko-checks { display: flex; flex-direction: column; gap: 16px; }
.eko-check { display: flex; gap: 14px; align-items: flex-start; }
.eko-check__tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(34,184,168,0.15); color: var(--eko-accent); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 2px; }
.eko-check span:last-child { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.eko-bg-white .eko-check__tick { background: rgba(34,184,168,0.12); color: var(--eko-accent-dark); width: 20px; height: 20px; font-size: 11px; }
.eko-bg-white .eko-check span:last-child { color: var(--eko-slate); font-size: 14.5px; }

/* ---- Product family cards ------------------------------------------ */
.eko-prodcard { display: block; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; transition: all .2s ease; }
.eko-prodcard:hover { border-color: var(--eko-accent); transform: translateY(-4px); }
.eko-prodcard__img { height: 230px; background: #0D2540; display: flex; align-items: center; justify-content: center; padding: 24px; }
.eko-prodcard__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.eko-prodcard__body { padding: 28px; }
.eko-prodcard__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.eko-prodcard__head h3 { font-family: var(--eko-font-head); font-size: 22px; font-weight: 700; margin: 0; color: var(--eko-white); }
.eko-prodcard__body p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0 0 16px; }
.eko-prodcard__more { font-size: 14px; font-weight: 700; color: var(--eko-accent); }

/* Products page hero jump links */
.eko-jumps { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.eko-jump { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 16px 24px; transition: all .2s ease; }
.eko-jump:hover { border-color: var(--eko-accent); transform: translateY(-2px); }
.eko-jump__t { font-family: var(--eko-font-head); font-size: 17px; font-weight: 700; color: var(--eko-white); }
.eko-jump__s { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.eko-jump__a { color: var(--eko-accent); font-size: 16px; }

/* ---- Product detail sections --------------------------------------- */
.eko-prod { }
.eko-prod__badges { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eko-prod__title { font-family: var(--eko-font-head); font-size: clamp(30px, 6vw, 44px); font-weight: 700; margin: 0 0 8px; letter-spacing: -0.02em; }
.eko-prod__sub { font-family: var(--eko-font-head); font-size: 18px; font-weight: 600; color: var(--eko-accent-dark); margin-bottom: 20px; }
.eko-bg-ink-2 .eko-prod__sub { color: var(--eko-accent); }
.eko-prod__p { font-size: 16.5px; line-height: 1.7; color: var(--eko-slate); margin: 0 0 18px; }
.eko-bg-ink-2 .eko-prod__p { color: rgba(255,255,255,0.72); }
.eko-prod__img { width: 100%; border-radius: 14px; border: 1px solid var(--eko-line); display: block; box-shadow: 0 20px 50px rgba(11,27,46,0.12); background: #0D2540; }
.eko-prod__cap { text-align: center; font-size: 13px; color: var(--eko-muted); margin-top: 12px; }
.eko-prod__stack { position: relative; }
.eko-prod__stack .eko-prod__img { box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.eko-prod__stack-glow { position: absolute; inset: -30px; background: radial-gradient(circle at 50% 50%, rgba(34,184,168,0.14) 0%, transparent 65%); }
.eko-prod__stack-inset { position: absolute; right: -18px; bottom: -24px; width: 190px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }

/* ---- Comparison table ---------------------------------------------- */
.eko-compare { background: var(--eko-white); border: 1px solid var(--eko-line); border-radius: 14px; overflow-x: auto; box-shadow: 0 12px 40px rgba(11,27,46,0.07); }
.eko-compare__grid { min-width: 640px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.eko-compare__head { background: var(--eko-ink-2); color: var(--eko-white); }
.eko-compare__head > div { padding: 18px 20px; font-family: var(--eko-font-head); font-size: 17px; font-weight: 700; text-align: center; }
.eko-compare__head > div:first-child { text-align: left; font-family: var(--eko-font-body); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 18px 24px; }
.eko-compare__row { border-top: 1px solid #EDF2F7; align-items: center; }
.eko-compare__row > div { padding: 15px 20px; font-size: 14px; text-align: center; font-weight: 600; }
.eko-compare__row > div:first-child { text-align: left; font-size: 14.5px; font-weight: 700; color: var(--eko-navy); padding: 15px 24px; }
.eko-compare .yes { color: var(--eko-accent-dark); }
.eko-compare .dim { color: #9AA9BA; }

/* ---- Dashboard mock ------------------------------------------------- */
.eko-dash { background: var(--eko-panel); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.eko-dash__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.eko-dash__bar-t { font-family: var(--eko-font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.eko-dash__live { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; color: var(--eko-accent); }
.eko-dash__live span { width: 6px; height: 6px; border-radius: 50%; background: var(--eko-accent); animation: ekoPulse 2s infinite; }
.eko-dash__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.eko-dash__tile { background: var(--eko-panel); padding: 18px 20px; }
.eko-dash__tile-n { font-family: var(--eko-font-head); font-size: 14px; font-weight: 700; color: var(--eko-accent); margin-bottom: 6px; }
.eko-dash__tile-c { font-family: var(--eko-font-head); font-size: 24px; font-weight: 700; color: var(--eko-white); }
.eko-dash__tile-s { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.eko-dash__stream { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 20px; }
.eko-dash__stream-h { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.eko-dash__rows { display: flex; flex-direction: column; gap: 7px; }
.eko-dash__row { display: grid; grid-template-columns: 72px 88px 1fr auto; gap: 12px; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 7px; padding: 9px 14px; font-size: 12.5px; }
.eko-dash__row .t { color: rgba(255,255,255,0.5); font-variant-numeric: tabular-nums; }
.eko-dash__row .d { font-family: var(--eko-font-head); font-weight: 700; color: var(--eko-accent); }
.eko-dash__row .m { color: rgba(255,255,255,0.82); }
.eko-dash__badge { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 999px; background: rgba(34,184,168,0.15); color: var(--eko-accent); white-space: nowrap; }
.eko-dash__badge--deny { background: rgba(255,95,87,0.15); color: #FF8A80; }

/* ---- Platform connection diagram ----------------------------------- */
.eko-diagram { display: grid; grid-template-columns: 1fr 120px 1.15fr 120px 1fr; align-items: center; }
.eko-diagram__col { display: flex; flex-direction: column; gap: 16px; }
.eko-diagram__label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.eko-node { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px 18px; }
.eko-node__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.eko-node__t { font-family: var(--eko-font-head); font-size: 15.5px; font-weight: 700; color: var(--eko-white); }
.eko-node__count { font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--eko-accent); border: 1px solid rgba(34,184,168,0.4); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.eko-node__d { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.eko-diagram__link { position: relative; height: 100%; min-height: 300px; }
.eko-diagram__link .wire { position: absolute; top: 50%; left: 0; right: 0; height: 2px; }
.eko-diagram__link .wire--l { background: linear-gradient(90deg, rgba(34,184,168,0.15), rgba(34,184,168,0.7)); }
.eko-diagram__link .wire--r { background: linear-gradient(90deg, rgba(34,184,168,0.7), rgba(34,184,168,0.15)); }
.eko-diagram__tags { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; gap: 6px; }
.eko-wtag { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eko-accent); background: var(--eko-ink-2); border: 1px solid rgba(34,184,168,0.4); padding: 4px 10px; border-radius: 999px; text-align: center; }
.eko-portal { background: linear-gradient(160deg, rgba(34,184,168,0.14), rgba(34,184,168,0.04)); border: 1px solid rgba(34,184,168,0.45); border-radius: 18px; padding: 32px 30px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.eko-portal img { height: 40px; width: auto; margin-bottom: 16px; }
.eko-portal__t { font-family: var(--eko-font-head); font-size: 22px; font-weight: 700; color: var(--eko-white); margin-bottom: 8px; }
.eko-portal p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0 0 18px; }
.eko-portal__tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.eko-portal__tags span { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 4px 11px; border-radius: 999px; }

/* ---- Management screenshots ---------------------------------------- */
.eko-shots { display: flex; flex-direction: column; gap: 88px; }
.eko-shot__ico-label { color: var(--eko-accent-dark); font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.eko-shot h3 { font-family: var(--eko-font-head); font-size: 28px; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; color: var(--eko-navy); }
.eko-shot p { font-size: 15.5px; line-height: 1.65; color: var(--eko-slate); margin: 0 0 20px; }
.eko-shot img, .eko-shot__img { width: 100%; max-width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--eko-line); display: block; box-shadow: 0 24px 60px rgba(11,27,46,0.14); }

/* ---- Founders / investors ------------------------------------------ */
.eko-founder { border: 1px solid var(--eko-line); border-radius: 14px; overflow: hidden; background: var(--eko-surface); }
.eko-founder img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #DCE5EE; filter: grayscale(1); }
.eko-founder__body { padding: 22px; }
.eko-founder__name { font-family: var(--eko-font-head); font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--eko-navy); }
.eko-founder__role { font-size: 13px; font-weight: 700; color: var(--eko-accent-dark); margin-bottom: 12px; }
.eko-founder__bio { font-size: 13.5px; line-height: 1.6; color: var(--eko-slate); margin: 0; }
.eko-investors { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.eko-investor { width: 200px; background: var(--eko-white); border: 1px solid var(--eko-line); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 18px; transition: all .2s ease; }
.eko-investor:hover { border-color: var(--eko-accent); transform: translateY(-3px); }
.eko-investor__ico { width: 72px; height: 72px; border-radius: 16px; background: rgba(34,184,168,0.09); border: 1px solid rgba(34,184,168,0.25); display: flex; align-items: center; justify-content: center; color: var(--eko-accent-dark); }
.eko-investor__l { font-family: var(--eko-font-head); font-size: 15px; font-weight: 700; color: var(--eko-navy); }

/* ---- Video ---------------------------------------------------------- */
.eko-video { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,27,46,0.18); background: var(--eko-ink); }
.eko-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.eko-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 88px; height: 88px; border-radius: 50%; background: var(--eko-accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
.eko-video__play::after { content: ""; width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid var(--eko-accent-press); margin-left: 6px; }
.eko-video__cap { position: absolute; bottom: 20px; left: 24px; color: var(--eko-white); font-family: var(--eko-font-head); font-size: 15px; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

/* ---- Product family / section headers with side link --------------- */
.eko-head-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; }

/* ---- Footer --------------------------------------------------------- */
.eko-footer { background: var(--eko-ink-3); color: rgba(255,255,255,0.6); }
.eko-footer__inner { max-width: var(--eko-max); margin-inline: auto; padding: 48px 24px 32px; }
.eko-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.eko-footer__grid img { height: 48px; width: auto; margin-bottom: 16px; }
.eko-footer__grid > div > p { font-size: 14px; line-height: 1.6; margin: 0; }
.eko-footer__col-t { font-family: var(--eko-font-head); font-size: 14px; font-weight: 700; color: var(--eko-white); margin-bottom: 16px; }
.eko-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.eko-footer__links a, .eko-footer a { color: rgba(255,255,255,0.6); }
.eko-footer__links a:hover, .eko-footer a:hover { color: var(--eko-accent); }
.eko-footer__legal { padding-top: 28px; font-size: 13px; }

/* ---- Legal / prose pages ------------------------------------------- */
.eko-prose { max-width: 800px; margin-inline: auto; }
.eko-prose h1 { font-family: var(--eko-font-head); font-size: clamp(30px, 5vw, 42px); margin: 0 0 24px; }
.eko-prose h2 { font-family: var(--eko-font-head); font-size: 22px; margin: 34px 0 12px; color: var(--eko-navy); }
.eko-prose p, .eko-prose li { font-size: 16px; line-height: 1.7; color: var(--eko-slate); }
.eko-prose a { color: var(--eko-accent-dark); }

/* ---- Responsive ----------------------------------------------------- */
@media (max-width: 920px) {
	.eko-nav { display: none; }
	.eko-hamburger { display: flex; }
	.eko-split, .eko-split--wide-left, .eko-split--wide-right, .eko-split--dash { grid-template-columns: 1fr; gap: 40px; }
	.eko-grid--3 { grid-template-columns: 1fr; }
	.eko-grid--4, .eko-grid--5 { grid-template-columns: 1fr 1fr; }
	.eko-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.eko-hero__stats { row-gap: 18px; }
	.eko-diagram { grid-template-columns: 1fr; gap: 20px; }
	.eko-diagram__link { display: none; }
}
@media (max-width: 560px) {
	.eko-grid--4, .eko-grid--5, .eko-grid--2, .eko-footer__grid { grid-template-columns: 1fr; }
	.eko-hero__stat-divider, .eko-hero__divider { display: none; }
}
