:root {
	--ink: #0d0d0e;
	--ink-soft: #171719;
	--paper: #f0eee8;
	--white: #fff;
	--grey: #9b9b98;
	--brand: #3f9470;
	--brand-deep: #286b50;
	--brand-bright: #62b28f;
	--brand-soft: #e4f0eb;
	--brand-mist: #f2f6f4;
	--line-dark: rgba(255, 255, 255, 0.17);
	--line-light: rgba(13, 13, 14, 0.18);
	--signal: #b8ff3d;
	--max: 1440px;
	--gutter: clamp(22px, 4.5vw, 76px);
	--section: clamp(68px, 7.5vw, 112px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--ink);
	font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(17px, 1.15vw, 19px);
	font-weight: 300;
	line-height: 1.55;
	letter-spacing: -0.015em;
	-webkit-font-smoothing: antialiased;
}

.wp-site-blocks { min-height: 100vh; }
.wp-site-blocks > *, .wp-block-post-content { margin-block-start: 0; }

body.menu-open { overflow: hidden; }

body.menu-open::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--ink);
	pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--signal); color: var(--ink); }

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--signal);
	color: var(--ink);
	transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	padding: 0 var(--gutter);
	color: var(--white);
	border-bottom: 1px solid var(--line-dark);
	background: rgba(13, 13, 14, .9);
	backdrop-filter: blur(12px);
	transition: background .35s ease, border-color .35s ease, transform .4s var(--ease);
}

.site-header.is-scrolled {
	background: rgba(13, 13, 14, .98);
	border-color: var(--line-dark);
	backdrop-filter: blur(16px);
}
.admin-bar .site-header { top: 32px; }

.wordmark, .wordmark a { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 500; letter-spacing: -0.045em; }
.wordmark em { font-style: italic; }
.wordmark span { color: #aaa; font-size: 12px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.wordmark .header-brand-image { display: block; width: 140px; height: 40px; background: url("../images/nekai-green-logo.png") center / contain no-repeat; }

.primary-navigation { display: flex; align-items: center; gap: clamp(13px, 1.45vw, 24px); font-size: 14px; font-weight: 400; }
.primary-navigation > a:not(.nav-cta) { position: relative; color: #c5c5c3; transition: color .2s ease; }
.primary-navigation > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.primary-navigation > a:hover { color: var(--white); }
.primary-navigation > a:hover::after { transform: scaleX(1); transform-origin: left; }
.primary-navigation > a.nav-cta { padding: 10px 15px; border: 1px solid rgba(255,255,255,.4); transition: background .25s ease, color .25s ease; }
.primary-navigation > a.nav-cta:hover { background: var(--white); color: var(--ink); }

.nav-group { position: relative; }
.nav-group-toggle { display: flex; align-items: center; gap: 8px; padding: 10px 0; border: 0; background: transparent; color: #c5c5c3; font-size: 14px; font-weight: 400; cursor: pointer; transition: color .2s ease; }
.nav-group-toggle:hover, .nav-group-toggle[aria-expanded="true"] { color: var(--white); }
.nav-group-toggle span { color: #777774; font-size: 9px; }
.nav-submenu { position: absolute; top: calc(100% + 14px); left: -18px; width: 255px; padding: 8px 18px; border: 1px solid var(--line-dark); background: rgba(13, 13, 14, .98); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease); }
.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu, .nav-group.is-open .nav-submenu { opacity: 1; visibility: visible; transform: none; }
.nav-submenu a { display: grid; grid-template-columns: 27px 1fr; gap: 7px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); color: #c5c5c3; font-size: 14px; white-space: nowrap; transition: color .2s ease, padding .25s var(--ease); }
.nav-submenu a:last-child { border-bottom: 0; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { padding-left: 5px; color: var(--white); }
.nav-submenu a span { color: #676765; font-size: 9px; }

.menu-toggle { display: none; border: 0; background: none; color: var(--white); cursor: pointer; }

.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--white); color: var(--ink); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-brand { background: var(--brand); color: var(--white); }
.section-brand-soft { background: var(--brand-soft); color: var(--ink); }

.kicker {
	margin: 0 0 30px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.kicker span { color: var(--grey); margin-right: 14px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 300; line-height: .98; letter-spacing: -.055em; }
h1 { font-size: clamp(52px, 7.4vw, 126px); }
h2 { font-size: clamp(42px, 5.6vw, 86px); }
h3 { font-size: clamp(27px, 3vw, 48px); }
h1 em, h2 em { font-weight: 300; }

.button-row { display: flex; align-items: center; gap: clamp(24px, 4vw, 60px); flex-wrap: wrap; }
.button, .wp-block-button.nekai-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 20px;
	border: 1px solid currentColor;
	border-radius: 0 !important;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.button-light, .wp-block-button.button-light .wp-block-button__link { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover, .wp-block-button.button-light .wp-block-button__link:hover { background: var(--signal); border-color: var(--signal); }
.button-dark, .wp-block-button.button-dark .wp-block-button__link { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button-dark:hover, .wp-block-button.button-dark .wp-block-button__link:hover { background: transparent; color: var(--ink); }
.button-outline, .wp-block-button.button-outline .wp-block-button__link { background: transparent; color: inherit; }
.button-outline:hover, .wp-block-button.button-outline .wp-block-button__link:hover { background: var(--ink); color: var(--white); }
.button-brand, .wp-block-button.button-brand .wp-block-button__link { background: var(--brand); border-color: var(--brand); color: var(--white); }
.button-brand:hover, .wp-block-button.button-brand .wp-block-button__link:hover { background: var(--brand-bright); border-color: var(--brand-bright); color: var(--white); }
.price-featured .button-outline:hover, .section-dark .button-outline:hover,
.price-featured .wp-block-button.button-outline .wp-block-button__link:hover,
.section-dark .wp-block-button.button-outline .wp-block-button__link:hover { background: var(--white); color: var(--ink); }

.text-link, .wp-block-button.nekai-text-link .wp-block-button__link { display: inline-flex; gap: 20px; align-items: center; padding: 0 0 3px; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; background: transparent; color: inherit; font-size: 15px; font-weight: 400; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { color: var(--white); }

/* Nekai umbrella homepage. Keep the original, restrained single-screen character. */
.nekai-umbrella-home { background: var(--ink); }
.nekai-umbrella-home #content { min-height: 100vh; }
.umbrella {
	display: grid;
	min-height: 100svh;
	place-items: center;
	padding: clamp(44px, 6vw, 76px) 22px;
	background: #111;
	color: var(--white);
}
.umbrella-inner { width: min(920px, calc(100vw - 44px)); margin: 0 auto; text-align: center; }
.umbrella-copy { max-width: 645px; margin: 0 auto; }
.umbrella h1 { margin: 0 0 19px; font-size: clamp(38px, 3.7vw, 48px); font-weight: 600; line-height: 1.4; letter-spacing: -.015em; }
.umbrella h1 em { font-weight: 600; }
.umbrella-copy > p { margin: 0; color: #c4c4c1; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.4; letter-spacing: -.01em; }
.nekai-spaces { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); text-align: left; }
.nekai-space { display: flex; flex-direction: column; min-height: 188px; padding: 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: transparent; }
.nekai-space h3 { margin: 0 0 14px; color: var(--white); font-size: 23px; font-weight: 400; line-height: 1.1; letter-spacing: -.035em; }
.nekai-space > p { margin: 0; color: #b7b7b4; font-size: 16px; line-height: 1.45; }
.space-actions { margin-top: auto; padding-top: 18px; }
.space-actions .wp-block-button.nekai-text-link .wp-block-button__link { color: var(--brand-bright); font-size: 14px; }

/* Free monitoring enquiry, shown on /pulse/. */
.free-monitoring-fields { display: grid; grid-template-columns: minmax(180px, .85fr) minmax(230px, 1.15fr) auto; gap: 10px; max-width: 920px; }
.free-monitoring-fields label { display: grid; gap: 8px; color: #d5dfda; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.free-monitoring-fields input { min-width: 0; padding: 14px 16px; border: 1px solid rgba(255,255,255,.48); border-radius: 0; outline: 0; background: rgba(255,255,255,.1); color: var(--white); font-size: 17px; }
.free-monitoring-fields input::placeholder { color: #b9c5bf; }
.free-monitoring-fields input:focus { box-shadow: inset 0 0 0 2px var(--white); }
.free-monitoring-fields .button { align-self: end; min-height: 53px; border-color: var(--white); background: var(--white); color: var(--ink); cursor: pointer; }
.free-monitoring-fields .button:hover { background: var(--brand-soft); }
.free-monitoring-permission { display: flex; align-items: flex-start; gap: 10px; max-width: 920px; margin-top: 14px; color: #d5dfda; font-size: 14px; line-height: 1.45; cursor: pointer; }
.free-monitoring-permission input { flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--brand-bright); }
.free-monitoring-privacy { max-width: 920px; margin: 10px 0 0; color: #b7c5be; font-size: 14px; }
.free-monitoring-success, .free-monitoring-error { max-width: 760px; margin: 0; padding: 16px 18px; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); font-size: 16px; }
.free-monitoring-error { border-color: #ffc3c3; color: #ffe0e0; }
/* Product home */
.pulse-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
	column-gap: clamp(50px, 8vw, 140px);
	row-gap: 42px;
	align-items: center;
	min-height: 88svh;
	padding: 126px var(--gutter) 72px;
}
.hero-copy { grid-column: 1; grid-row: 1; max-width: 880px; }
.pulse-hero h1 { margin-bottom: 34px; }
.pulse-hero h1 em { color: #8f8f8d; }
.hero-intro { max-width: 700px; margin-bottom: 24px; color: #d0d6d2; font-size: clamp(19px, 1.55vw, 24px); line-height: 1.55; }
.hero-trust { max-width: 680px; margin-bottom: 34px; padding-left: 18px; border-left: 3px solid var(--brand-bright); color: #aebbb5; font-size: 16px; }
.pulse-free-strip { display: grid; grid-column: 1 / -1; grid-row: 2; grid-template-columns: .8fr 1.2fr; column-gap: clamp(35px, 7vw, 110px); row-gap: 18px; align-items: start; padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
.pulse-free-strip .kicker { grid-column: 1; margin: 0; }
.pulse-free-strip h2 { grid-column: 1; grid-row: 2; margin: 0; font-size: clamp(38px, 4.7vw, 72px); }
.pulse-free-strip > p:not(.kicker) { grid-column: 2; grid-row: 1; max-width: 680px; margin: 0; color: #bdbdb9; font-size: 17px; }
.pulse-free-strip > .free-monitoring-capture { grid-column: 2; grid-row: 2; width: 100%; }

.scroll-progress-cue { position: fixed; left: 50%; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 90; display: flex; visibility: visible; align-items: center; gap: 12px; min-height: 46px; padding: 9px 13px 9px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 0; background: rgba(13,13,14,.9); color: var(--white); box-shadow: 0 12px 35px rgba(0,0,0,.2); cursor: pointer; transform: translateX(-50%); transition: opacity .25s ease, transform .3s var(--ease), border-color .2s ease, visibility 0s linear; backdrop-filter: blur(10px); }
.scroll-progress-cue:hover { border-color: var(--brand-bright); }
.scroll-progress-cue span { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.scroll-progress-cue i { color: var(--brand-bright); font-size: 20px; font-style: normal; line-height: 1; animation: scroll-cue 1.5s ease-in-out infinite; }
.scroll-progress-cue.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition-delay: 0s, 0s, 0s, .25s; }
@keyframes scroll-cue { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

.monitor-window { grid-column: 2; grid-row: 1; align-self: end; border: 1px solid var(--line-dark); background: #111113; font-size: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.monitor-topline, .monitor-footer { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; color: #a9afac; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.monitor-topline p, .monitor-footer p { margin: 0; }
.monitor-topline { border-bottom: 1px solid var(--line-dark); }
.live-label { display: flex; align-items: center; gap: 8px; color: var(--white); }
.live-label i, .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px rgba(184,255,61,.65); }
.monitor-address { padding: 22px 18px; border-bottom: 1px solid var(--line-dark); color: #e5e5e2; }
.journey-list { margin: 0; padding: 0; list-style: none; }
.journey-list li { display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; padding: 17px 18px; border-bottom: 1px solid var(--line-dark); }
.journey-index { color: #5e5e5c; }
.journey-result { color: var(--signal); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.monitor-pulse { overflow: hidden; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.monitor-pulse svg { width: 100%; }
.pulse-gridline { fill: none; stroke: rgba(255,255,255,.07); }
.pulse-line { fill: none; stroke: var(--signal); stroke-width: 1.5; stroke-linecap: square; stroke-dasharray: 750; stroke-dashoffset: 750; animation: draw-pulse 2.4s 1s var(--ease) forwards; }
@keyframes draw-pulse { to { stroke-dashoffset: 0; } }
.monitor-footer strong { color: var(--white); font-weight: 500; }

.manifesto { display: grid; grid-template-columns: 1fr 2.1fr; gap: 8vw; padding: var(--section) var(--gutter); }
.section-number { font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.manifesto-copy { max-width: 1000px; }
.muted-strike { color: #9c9c98; font-size: clamp(22px, 2.3vw, 36px); text-decoration: line-through; text-decoration-thickness: 1px; }
.manifesto h2 { margin: 20px 0 50px; }
.manifesto-copy > p:last-of-type { max-width: 710px; margin-left: auto; font-size: clamp(18px, 1.65vw, 25px); line-height: 1.55; }

.levels { padding: var(--section) var(--gutter); }
.section-heading { display: grid; grid-template-columns: 1fr 2.1fr; gap: 8vw; margin-bottom: clamp(48px, 6vw, 88px); }
.section-heading h2 { margin: 0; }
.level-list { display: grid; gap: 16px; }
.level { display: grid; grid-template-columns: .9fr 1.2fr 1.2fr; gap: clamp(30px, 5vw, 90px); padding: clamp(34px, 4vw, 54px); border: 1px solid var(--line-light); background: var(--white); }
.level:nth-child(2) { background: var(--ink); color: var(--white); }
.level:nth-child(2) .level-meta p:last-child, .level:nth-child(2) .level-copy ul { color: #d0ddd7; }
.level:nth-child(2) .level-copy li { border-color: rgba(255,255,255,.17); }
.level:last-child { border-color: #c6c3bb; background: #e7e4dc; }
.level-meta { display: flex; flex-direction: column; justify-content: space-between; min-height: 145px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.level-meta p { margin: 0; }
.level-meta p:last-child { color: #686865; }
.level-question { margin: 0; font-size: clamp(31px, 3.35vw, 52px); font-weight: 300; line-height: 1.05; letter-spacing: -.045em; }
.level-copy p { margin-bottom: 25px; font-size: 18px; }
.level-copy ul { margin: 0; padding: 0; color: #555552; list-style: none; }
.level-copy li { padding: 8px 0; border-bottom: 1px solid rgba(13,13,14,.09); font-size: 15px; }
.level-copy li::before { content: "—"; margin-right: 10px; color: #999; }
.level-action { margin-top: 28px; }
.level-action .wp-block-button__link { white-space: nowrap; }
.level-future { color: #686865; }
.level-future .level-meta span:first-child::after { content: " soon"; display: inline-block; margin-left: 10px; padding: 3px 5px; border: 1px solid currentColor; font-size: 11px; }

.use-cases { padding: var(--section) var(--gutter); }
.tab-instruction { max-width: 720px; margin: -30px 0 34px auto; color: #5c5c59; font-size: 17px; }
.use-case-layout { display: grid; grid-template-columns: minmax(230px, .75fr) 2.25fr; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.tab-list { display: flex; flex-direction: column; border-right: 1px solid var(--line-light); }
.tab-list .wp-block-button { width: 100%; }
.tab-list .wp-block-button.nekai-text-link .wp-block-button__link { display: flex; width: 100%; gap: 22px; padding: 23px 20px 23px 14px; border: 0; border-bottom: 1px solid var(--line-light); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: color .2s ease, padding .3s var(--ease), background .25s ease; }
.tab-list button:last-child { border-bottom: 0; }
.tab-list button span { display: inline-grid; flex: 0 0 34px; place-items: center; min-height: 34px; margin: -7px 0; color: #858582; font-size: 12px; transition: background .2s ease, color .2s ease; }
.tab-list .wp-block-button__link::after { content: "view →"; margin-left: auto; color: var(--brand); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.tab-list .wp-block-button__link:hover { padding-left: 22px; background: rgba(63,148,112,.09); color: var(--ink); }
.tab-list .wp-block-button.nekai-text-link .wp-block-button__link[aria-selected="true"] { background: var(--ink); color: var(--white); }
.tab-list .wp-block-button.nekai-text-link .wp-block-button__link[aria-selected="true"] span { color: var(--white); }
.tab-list .wp-block-button.nekai-text-link .wp-block-button__link[aria-selected="true"]::after { content: "current •"; color: var(--white); }
.tab-panels { min-height: 490px; }
.tab-panel { padding: clamp(38px, 6vw, 95px); }
.tab-panel[hidden] { display: none; }
.panel-label { margin-bottom: 35px; color: #5d6b65; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.tab-panel h3 { max-width: 820px; margin-bottom: 34px; }
.tab-panel > p:not(.panel-label) { max-width: 710px; color: #5c5c59; font-size: clamp(17px, 1.4vw, 21px); }
.path-line { display: flex; align-items: center; gap: 15px; margin-top: 48px; color: #54645d; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.path-line p { margin: 0; }
.path-line hr { flex: 1; width: auto; height: 1px; margin: 0; border: 0; background: var(--line-light); }
.panel-action { margin-top: 30px; }
/* Sector tabs: keep each tab title and panel action on one line. */
.use-case-layout { grid-template-columns: minmax(272px, .75fr) 2.25fr; }
.tab-list .wp-block-button.nekai-text-link .wp-block-button__link { align-items: center; gap: 14px; white-space: nowrap; }
.tab-list .wp-block-button__link span { flex: 0 0 auto; min-width: 34px; }
.tab-list .wp-block-button__link::after { flex: 0 0 auto; padding-left: 8px; }
.panel-action .wp-block-button__link { white-space: nowrap; }

.product-tour { padding: var(--section) var(--gutter); }
.product-tour-intro { max-width: 760px; margin: -25px 0 48px auto; color: #56635d; font-size: 17px; }
.product-shot-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 18px; align-items: stretch; }
.product-shot { margin: 0; padding: 14px; border: 1px solid rgba(19,95,65,.25); background: var(--white); }
.product-shot-frame { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 360px; overflow: hidden; border: 1px solid rgba(11,73,49,.25); background: #f7faf8; }
.product-shot-frame > .wp-block-image { display: flex; align-items: center; justify-content: center; width: 100%; height: auto; min-height: 0; margin: 0; }
.product-shot-frame > .wp-block-image img { display: block; width: 100% !important; height: auto !important; min-height: 0; object-fit: contain !important; object-position: center !important; }
.product-shot-chrome { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; border-bottom: 1px solid #cfddd6; background: var(--brand-soft); }
.product-shot-chrome i { width: 7px; height: 7px; border-radius: 50%; background: #92aa9f; }
.product-shot-chrome span { margin-left: auto; color: #61756b; font-size: 10px; }
.product-shot-ui { display: grid; grid-template-columns: 52px 1fr; min-height: 325px; }
.product-shot-ui aside { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 18px 8px; background: var(--brand-deep); }
.product-shot-ui aside b { color: var(--white); font-size: 10px; }
.product-shot-ui aside span { width: 18px; height: 2px; background: rgba(255,255,255,.38); }
.product-shot-main { padding: 22px; }
.product-shot-title { display: flex; align-items: center; justify-content: space-between; color: var(--brand-deep); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product-shot-title i { width: 62px; height: 18px; background: var(--brand); }
.product-shot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 24px 0; }
.product-shot-cards span { min-height: 66px; border: 1px solid #cbdad3; background: var(--white); }
.product-shot-cards span:first-child { border-color: var(--brand-bright); background: var(--brand-soft); }
.product-shot-chart { display: flex; align-items: end; gap: 8px; height: 138px; padding: 16px; border: 1px solid #cbdad3; background: var(--white); }
.product-shot-chart span { flex: 1; height: var(--bar); background: linear-gradient(var(--brand-bright), var(--brand)); opacity: .78; }
.product-shot-placeholder { position: absolute; right: 14px; bottom: 13px; padding: 5px 7px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product-shot figcaption, .product-shot-caption { display: grid; gap: 6px; padding: 18px 6px 5px; }
.product-shot figcaption strong, .product-shot-caption h3 { margin: 0; color: var(--brand-deep); font-size: 18px; font-weight: 500; line-height: 1.3; }
.product-shot figcaption span, .product-shot-caption p { margin: 0; color: #5d6963; font-size: 15px; }
.product-shot-grid .product-shot:not(:first-child) .product-shot-ui { grid-template-columns: 42px 1fr; }
.product-shot-grid .product-shot:not(:first-child) .product-shot-main { padding: 18px 14px; }
.product-shot-grid .product-shot:not(:first-child) .product-shot-cards { grid-template-columns: 1fr; }
.product-shot-grid .product-shot:not(:first-child) .product-shot-cards span { min-height: 34px; }
.product-shot-grid .product-shot:not(:first-child) .product-shot-chart { height: 104px; }
.manifesto-copy .product-shot, .story-copy .product-shot { max-width: 760px; margin: clamp(36px, 4vw, 54px) 0 0 auto; }
.manifesto-copy .product-shot-frame, .story-copy .product-shot-frame { min-height: 310px; }
.section-dark .product-shot { border-color: var(--line-dark); background: rgba(255,255,255,.055); }

.about-evidence { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 120px); align-items: center; padding: var(--section) var(--gutter); }
.about-evidence-copy h2 { margin-bottom: 36px; }
.about-evidence-copy > p:not(.kicker) { max-width: 610px; color: #c2cbc7; font-size: 17px; }
.about-evidence .product-shot { background: rgba(255,255,255,.06); border-color: var(--line-dark); }
.about-scope { padding: var(--section) var(--gutter); }
.scope-table th:first-child, .scope-table td:first-child { background: var(--brand-mist); }
.scope-table th:last-child, .scope-table td:last-child { background: #ebe8e0; }

.team-section { padding: var(--section) var(--gutter); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.team-card { display: grid; grid-template-rows: minmax(230px, 1fr) auto; min-height: 610px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.team-card-mark { display: grid; place-items: center; min-height: 250px; background: var(--brand-soft); color: var(--brand-deep); }
.team-card-future .team-card-mark { background: #e6e3dc; color: #8b8b86; }
.team-monogram { margin: 0; font-family: Georgia, serif; font-size: clamp(100px, 13vw, 190px); font-style: italic; font-weight: 300; line-height: 1; }
.team-card-copy { padding: clamp(28px, 4vw, 54px); }
.team-card-copy h2 { margin-bottom: 28px; font-size: clamp(42px, 5vw, 72px); }
.team-card-copy > p:last-child { max-width: 580px; margin: 0; color: #56615b; font-size: 17px; }
.team-card-future .team-card-copy { color: #686864; }

.origin-story { display: grid; grid-template-columns: .55fr 2fr; gap: 8vw; padding: var(--section) var(--gutter); }
.story-mark { color: #38383a; font-family: Georgia, serif; font-size: clamp(160px, 25vw, 360px); line-height: .7; }
.story-copy { max-width: 920px; }
.story-copy h2 { margin: 0 0 65px; }
.story-copy > p:not(.kicker) { max-width: 660px; margin-left: auto; color: #b9b9b7; font-size: clamp(17px, 1.45vw, 22px); }
.story-copy .story-conclusion { margin-top: 42px; color: var(--white) !important; }

.comparison { padding: var(--section) var(--gutter); }
.comparison-table { border-top: 1px solid var(--line-light); }
.comparison-row { display: grid; grid-template-columns: 2fr .8fr .8fr; border-bottom: 1px solid var(--line-light); }
.comparison-row > div { padding: 18px 16px 18px 0; font-size: 14px; }
.comparison-row > div:not(:first-child) { padding-left: 20px; border-left: 1px solid var(--line-light); text-transform: lowercase; }
.comparison-head > div { color: #747471; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase !important; }
.comparison-row .yes::before { content: "●"; margin-right: 10px; color: #5d881d; font-size: 8px; }
.comparison-note { max-width: 560px; margin: 26px 0 0 auto; color: #5f6b65; font-size: 15px; }
.comparison-actions { justify-content: flex-end; margin-top: 22px; }
.wp-block-table.comparison-table { margin: 0; }
.wp-block-table table { width: 100%; border-collapse: collapse; background: var(--brand-mist); }
.wp-block-table th { background: var(--brand-soft); color: var(--brand-deep); }
.wp-block-table tbody tr:nth-child(even) { background: rgba(255,255,255,.55); }
.wp-block-table.comparison-table table { width: 100%; border: 1px solid rgba(19,95,65,.25); border-collapse: collapse; background: var(--brand-mist); }
.wp-block-table.comparison-table th, .wp-block-table.comparison-table td { padding: 18px 16px; border: 0; border-bottom: 1px solid rgba(19,95,65,.18); text-align: left; font-size: 15px; font-weight: 300; }
.wp-block-table.comparison-table th:not(:first-child), .wp-block-table.comparison-table td:not(:first-child) { padding-left: 20px; border-left: 1px solid var(--line-light); text-transform: lowercase; }
.wp-block-table.comparison-table th { background: var(--brand-soft); color: var(--brand-deep); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase !important; }
.wp-block-table.comparison-table th:nth-child(2), .wp-block-table.comparison-table td:nth-child(2) { background: #dce8e2; }
.wp-block-table.comparison-table th:last-child, .wp-block-table.comparison-table td:last-child { background: #fbfdfc; }
.wp-block-table.comparison-table th:first-child, .wp-block-table.comparison-table td:first-child { width: 56%; }
.wp-block-table.comparison-table .yes::before { content: "●"; margin-right: 10px; color: #5d881d; font-size: 8px; }
.topic-index { margin-top: clamp(50px, 6vw, 82px); padding-top: 28px; border-top: 1px solid var(--line-light); }
.topic-index nav { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.topic-index a { display: flex; justify-content: space-between; gap: 16px; min-height: 115px; padding: 20px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); font-size: 13px; transition: background .25s ease, color .25s ease; }
.topic-index a:hover { background: var(--ink); color: var(--white); }
.topic-index a span { color: #858582; }
.topic-index-links { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.topic-index-links .wp-block-button { display: block; }
.topic-index-links .wp-block-button.nekai-text-link .wp-block-button__link { display: flex; align-items: flex-start; justify-content: space-between; width: 100%; min-height: 105px; gap: 16px; padding: 20px; border: 0; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); border-radius: 0; font-size: 15px; line-height: 1.45; text-align: left; overflow-wrap: normal; word-break: normal; hyphens: none; transition: background .25s ease, color .25s ease; }
.topic-index-links .wp-block-button__link span { flex: 0 0 auto; }
.topic-index-links .wp-block-button__link:hover { background: var(--ink); color: var(--white); }

.quiet-promise { padding: var(--section) var(--gutter); text-align: center; }
.promise-small { margin-bottom: 45px; color: #777774; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.quiet-promise h2 { margin-bottom: 65px; }
.quiet-promise h2 em { color: #777774; }
.quiet-promise .button-row { justify-content: center; }

/* Inner pages */
.page-hero, .journal-hero {
	min-height: 64svh;
	padding: clamp(126px, 13vw, 178px) var(--gutter) 76px;
}

/* Search topic pages retain the same editorial rhythm as the product pages. */
.topic-hero { min-height: 68svh; padding: clamp(126px, 13vw, 178px) var(--gutter) 76px; }
.topic-hero h1 { max-width: 1200px; margin-bottom: 50px; }
.breadcrumbs { display: flex; gap: 10px; margin-bottom: clamp(42px, 5vw, 72px); color: #9a9f9c; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a { color: #b8b8b5; }
.breadcrumbs a:hover { color: var(--white); }
.topic-explainer { display: grid; grid-template-columns: .8fr 2.2fr; gap: 8vw; padding: var(--section) var(--gutter); }
.topic-explainer-copy { max-width: 960px; }
.topic-explainer-copy h2 { margin-bottom: 40px; }
.topic-explainer-copy p { max-width: 720px; margin-left: auto; color: #5e5e5b; font-size: clamp(17px, 1.45vw, 22px); }
.topic-explainer-copy p + p { margin-top: 25px; }
.topic-checks { padding: var(--section) var(--gutter); }
.topic-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.topic-check-grid article { min-height: 285px; padding: clamp(26px, 3.4vw, 50px); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.topic-check-grid article > span, .topic-check-grid .item-index { color: var(--brand); font-size: 12px; font-weight: 600; letter-spacing: .1em; }
.topic-check-grid h3 { margin: 58px 0 25px; font-size: clamp(30px, 3.2vw, 48px); }
.topic-check-grid p { max-width: 520px; margin: 0; color: #58625d; font-size: 16px; }
.monitor-test-verify { padding: var(--section) var(--gutter); }
.monitor-test-verify .section-heading { margin-bottom: 80px; }
.mtv-list { border-top: 1px solid var(--line-dark); }
.mtv-list article { display: grid; grid-template-columns: .65fr 1.25fr 1.2fr; gap: 5vw; align-items: baseline; padding: 34px 0; border-bottom: 1px solid var(--line-dark); }
.mtv-list article > span, .mtv-list .item-index { color: #a1aaa6; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.mtv-list h3 { margin: 0; font-size: clamp(28px, 3.2vw, 48px); }
.mtv-list p { max-width: 470px; margin: 0; color: #bbbdbb; font-size: 16px; }
.topic-observation { display: grid; grid-template-columns: .7fr 2.3fr; gap: 8vw; padding: var(--section) var(--gutter); }
.topic-observation > div { max-width: 990px; }
.topic-observation h2 { margin-bottom: 55px; }
.topic-observation > div p { max-width: 680px; margin-left: auto; color: #666663; font-size: clamp(17px, 1.45vw, 22px); }
.related-topics { padding: var(--section) var(--gutter); }
.related-list { border-top: 1px solid var(--line-light); }
.related-list a { display: flex; align-items: center; justify-content: space-between; padding: 25px 0; border-bottom: 1px solid var(--line-light); font-size: clamp(24px, 3vw, 44px); line-height: 1.2; letter-spacing: -.045em; }
.related-list a span:last-child { color: #8a8a87; font-size: 15px; transition: transform .25s var(--ease); }
.related-list a:hover span:last-child { transform: translate(5px, -5px); }
.related-list { display: block; border-top: 1px solid var(--line-light); }
.related-list .wp-block-button { display: block; }
.related-list .wp-block-button.nekai-text-link .wp-block-button__link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 25px 0; border: 0; border-bottom: 1px solid var(--line-light); border-radius: 0; font-size: clamp(24px, 3vw, 44px); line-height: 1.2; letter-spacing: -.045em; }
.page-hero h1, .journal-hero h1 { max-width: 1200px; margin-bottom: 45px; }
.page-hero h1 em { color: #8f8f8d; }
.page-intro { max-width: 640px; margin: 0 0 45px auto; color: #b7b7b4; font-size: clamp(18px, 1.6vw, 24px); }
.compact-hero { min-height: 66svh; }
.agency-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.agency-hero-copy { max-width: 820px; }
.agency-hero .page-intro { margin-left: 0; }
.agency-hero .product-shot { width: 100%; }
.agency-hero .product-shot-frame { min-height: 330px; }
.agency-hero .product-shot figcaption strong,
.agency-hero .product-shot figcaption span,
.agency-hero .product-shot-caption h3,
.agency-hero .product-shot-caption p { color: var(--white); }

/* Terms and future legal pages use the same editorial grid at a calmer scale. */
.legal-hero .kicker { margin-bottom: clamp(46px, 6vw, 82px); }
.legal-content { padding: var(--section) var(--gutter); }
.legal-intro { max-width: 920px; margin: 0 0 clamp(62px, 8vw, 104px) auto; font-size: clamp(19px, 1.6vw, 24px); }
.legal-intro p { margin-bottom: 24px; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-intro a, .legal-section-copy a { border-bottom: 1px solid currentColor; }
.legal-section { display: grid; grid-template-columns: .8fr 2.2fr; gap: 8vw; padding: clamp(42px, 5vw, 68px) 0; border-top: 1px solid var(--line-light); }
.legal-section:last-child { border-bottom: 1px solid var(--line-light); }
.legal-section h2 { margin: 0; font-size: clamp(24px, 2.25vw, 36px); line-height: 1.12; letter-spacing: -.04em; }
.legal-section-copy { max-width: 780px; }
.legal-section-copy p { margin-bottom: 22px; color: #555552; font-size: clamp(16px, 1.25vw, 19px); }
.legal-section-copy p:last-child { margin-bottom: 0; }
.legal-section-copy ul { margin: 30px 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.legal-section-copy li { padding: 13px 0 13px 24px; border-bottom: 1px solid var(--line-light); color: #555552; font-size: clamp(15px, 1.1vw, 17px); }
.legal-section-copy li::before { content: "—"; margin-left: -24px; margin-right: 12px; color: #8a8a87; }

.pricing-section { padding: var(--section) var(--gutter); }
.free-pricing-tier { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(35px, 7vw, 110px); align-items: end; margin-bottom: 42px; padding: clamp(30px, 4vw, 58px); background: var(--ink); color: var(--white); box-shadow: 0 20px 55px rgba(13,13,14,.15); }
.free-pricing-tier h3 { margin: 0; }
.free-pricing-tier > div:last-child p { color: #d5e2dc; font-size: 18px; }
.free-pricing-tier .wp-block-buttons { margin-top: 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-tier { position: relative; display: flex; flex-direction: column; min-height: 700px; padding: clamp(28px, 3.5vw, 50px); border: 1px solid var(--line-light); background: var(--white); box-shadow: 0 14px 35px rgba(13,13,14,.055); }
.price-featured { z-index: 1; background: var(--ink-soft); color: var(--white); transform: translateY(-14px); box-shadow: 0 24px 55px rgba(13,13,14,.24); }
.price-future { background: #e7e4dc; color: #353533; }
.tier-flag { position: absolute; top: 18px; right: 18px; padding: 5px 8px; border: 1px solid currentColor; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.tier-top { margin-bottom: 55px; }
.tier-index { margin-bottom: 32px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.tier-top h2 { display: flex; align-items: flex-start; margin: 0; font-size: clamp(72px, 7vw, 112px); }
.tier-top h2 span { margin-top: 10px; margin-right: 4px; font-size: 23px; }
.tier-top > p:last-child { color: #616d67; font-size: 13px; text-transform: uppercase; }
.price-featured .tier-top > p:last-child { color: #a3a3a0; }
.tier-question { min-height: 76px; margin-bottom: 35px; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.4; }
.feature-list { flex: 1; margin: 0 0 45px; padding: 0; list-style: none; }
.feature-list li { padding: 10px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; }
.price-featured .feature-list li { border-color: var(--line-dark); }
.feature-list li::before { content: "·"; margin-right: 10px; }
.price-tier .button, .price-tier .wp-block-buttons { align-self: flex-start; }
.pricing-context { max-width: 700px; margin: 42px 0 0 auto; color: #5e6963; font-size: 15px; }
.pricing-context + .pricing-context { margin-top: 14px; }
.product-shot-frame > .wp-block-image + .wp-block-image { border-top: 1px solid rgba(11,73,49,.25); }
/* Large screenshots and photos must not widen their column beyond the viewport. */
.product-shot, .team-card-mark { contain: inline-size; }
.team-card-mark .wp-block-image { width: 100%; margin: 0; }
.team-card-mark .wp-block-image img { display: block; width: 100%; height: auto; }

.agency-strip { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10vw; padding: var(--section) var(--gutter); }
.agency-strip h2 { margin-bottom: 0; }
.agency-strip > div:last-child { align-self: end; }
.agency-strip > div:last-child p { margin-bottom: 35px; color: #b8b8b5; font-size: 19px; }

.faq-section { padding: var(--section) var(--gutter); }
.faq-list { max-width: 1050px; margin-left: auto; border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0; font-size: clamp(18px, 1.6vw, 24px); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 12px; transition: transform .3s var(--ease); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding: 0 0 32px; color: #656562; }

.page-cta { padding: var(--section) var(--gutter); }
.page-cta h2 { margin: 0 0 60px; }

.agency-problem { display: grid; grid-template-columns: .7fr 2.3fr; gap: 8vw; padding: var(--section) var(--gutter); }
.email-sequence { max-width: 950px; }
.email-sequence > div { display: grid; grid-template-columns: 85px 1fr; gap: 30px; padding: 31px 0; border-top: 1px solid var(--line-light); }
.email-sequence > div:last-child { border-bottom: 1px solid var(--line-light); }
.email-sequence span { color: #68736d; font-size: 12px; font-weight: 500; letter-spacing: .1em; }
.email-sequence p { margin: 0; font-size: clamp(20px, 2vw, 32px); line-height: 1.3; }
.email-sequence .sequence-better { margin-top: 75px; color: var(--white); background: var(--ink); border: 0; padding: 31px; }
.sequence-better span { color: var(--signal); }

.agency-benefits { padding: var(--section) var(--gutter); }
.benefit-lines { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.benefit-lines article { min-height: 310px; padding: 35px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.benefit-lines article > span, .benefit-lines .item-index { color: #68736d; font-size: 12px; }
.benefit-lines h3 { margin: 70px 0 22px; font-size: clamp(28px, 2.8vw, 44px); }
.benefit-lines p { max-width: 460px; color: #656562; }

.agency-model { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10vw; padding: var(--section) var(--gutter); }
.agency-model h2 { margin-bottom: 0; }
.agency-model-copy { align-self: end; }
.agency-model-copy > p { color: #b8b8b5; font-size: 19px; }
.agency-model-copy ul { margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.agency-model-copy li { padding: 13px 0; border-bottom: 1px solid var(--line-dark); font-size: 13px; }
.agency-model-copy li::before { content: "—"; margin-right: 12px; color: #777; }

/* Enquiry */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; min-height: 100svh; padding: clamp(150px, 15vw, 220px) var(--gutter) var(--section); }
.contact-intro { position: sticky; top: 140px; align-self: start; }
.contact-intro h1 { margin-bottom: 40px; font-size: clamp(50px, 6.3vw, 96px); }
.contact-intro > p:not(.kicker) { max-width: 540px; color: #686865; font-size: 19px; }
.contact-aside { margin-top: 80px; font-size: 13px; }
.contact-aside p { margin-bottom: 4px; color: #888885; }
.contact-aside a { border-bottom: 1px solid currentColor; }
.contact-form-wrap { border-top: 1px solid var(--line-light); }
.pulse-form label { display: block; padding: 23px 0; border-bottom: 1px solid var(--line-light); }
.pulse-form label > span { display: block; margin-bottom: 12px; color: #5f6964; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.pulse-form input, .pulse-form select, .pulse-form textarea { width: 100%; padding: 4px 0; border: 0; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 17px; font-weight: 300; }
.pulse-form input:focus, .pulse-form select:focus, .pulse-form textarea:focus { box-shadow: 0 2px 0 var(--ink); }
.pulse-form textarea { resize: vertical; }
.pulse-form .button { width: auto; margin-top: 28px; padding: 14px 22px; cursor: pointer; }
.form-privacy { max-width: 520px; margin: 25px 0 0; color: #65706a; font-size: 14px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-error { padding: 15px; border: 1px solid #994848; color: #7a2f2f; font-size: 13px; }
.form-notice { padding: 75px 0; }
.form-notice h2 { margin-bottom: 25px; }
.form-notice > p:not(.kicker) { color: #656562; }

/* Journal and editorial pages */
.journal-hero.compact-hero { min-height: auto; padding-top: clamp(116px, 10vw, 150px); padding-bottom: clamp(46px, 5vw, 70px); }
.journal-hero h1 { max-width: 930px; margin-bottom: 0; font-size: clamp(48px, 6.3vw, 92px); line-height: .96; letter-spacing: -.045em; }
.journal-list { padding: clamp(50px, 5vw, 76px) var(--gutter); }
.journal-item { border-top: 1px solid var(--line-light); }
.journal-item:last-of-type { border-bottom: 1px solid var(--line-light); }
.journal-item { display: grid; grid-template-columns: .7fr 1.7fr .9fr; gap: 4vw; padding: 32px 0; }
.journal-meta { display: flex; flex-direction: column; gap: 8px; color: #69736e; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.journal-item h2 { margin: 0; font-size: clamp(28px, 2.7vw, 43px); line-height: 1.03; letter-spacing: -.045em; transition: transform .3s var(--ease); }
.journal-item:hover h2 { transform: translateX(8px); }
.journal-item p { color: #58615c; font-size: 16px; }
.journal-read { align-self: end; justify-self: end; font-size: 13px; text-transform: uppercase; }
.empty-journal { max-width: 780px; margin-left: auto; }
.empty-journal p:last-child { max-width: 570px; color: #666663; }
.pagination { margin-top: 50px; }

.article-page, .standard-page { min-height: 80svh; padding: clamp(122px, 11vw, 168px) var(--gutter) var(--section); }
.article-header, .standard-page > header { max-width: 1100px; margin: 0 auto clamp(44px, 5vw, 72px); }
.article-header h1, .standard-page h1 { margin-bottom: 28px; }
.article-header h1 { max-width: 980px; font-size: clamp(48px, 6.3vw, 92px); line-height: 1.01; letter-spacing: -.045em; }
.article-deck { max-width: 650px; color: #666663; font-size: 20px; }
.article-image { max-width: 1200px; margin: 0 auto 56px; }
.article-image img { width: 100%; height: auto; }
.article-content { max-width: 760px; margin: 0 auto; font-family: Georgia, serif; font-size: clamp(18px, 1.4vw, 21px); line-height: 1.75; letter-spacing: 0; }
.article-content h2, .article-content h3 { margin: 2.2em 0 .8em; font-family: "Manrope", sans-serif; letter-spacing: -.04em; }
.article-content h2 { font-size: 38px; }
.article-content h3 { font-size: 28px; }
.article-content a { text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote { margin: 2em 0; padding-left: 25px; border-left: 1px solid var(--ink); font-size: 1.2em; }
.article-footer { max-width: 760px; margin: 80px auto 0; padding-top: 25px; border-top: 1px solid var(--line-light); }

.coming-soon, .not-found { display: grid; align-content: center; min-height: 100svh; padding: var(--section) var(--gutter); }
.coming-soon .standalone-mark { position: absolute; top: 30px; left: var(--gutter); }
.coming-soon > div { max-width: 850px; }
.coming-soon h1, .not-found h1 { margin-bottom: 40px; }
.coming-soon > div > p:not(.kicker) { color: #aaa; }

/* Footer */
.site-footer { padding: clamp(68px, 7vw, 102px) var(--gutter) 28px; background: var(--ink-soft); color: var(--white); }
.footer-lead { padding-bottom: clamp(56px, 7vw, 96px); }
.footer-statement { max-width: 1080px; margin: 0; font-size: clamp(42px, 6.5vw, 98px); line-height: 1; letter-spacing: -.055em; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 7vw; padding: 38px 0 70px; border-top: 1px solid var(--line-dark); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-label { margin-bottom: 15px; color: #9aa49f; font-size: 12px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid p:not(.footer-label) { font-size: 15px; }
.footer-grid a { color: #c7c7c4; }
.footer-grid a:hover { color: var(--white); }
.footer-status { justify-self: end; }
.footer-status > p:nth-child(2) { display: flex; align-items: center; gap: 9px; }
.footer-status > p:last-child { margin-top: 20px; color: #7e7e7b; }
.footer-base { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line-dark); color: #9aa49f; font-size: 12px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.footer-base p { margin: 0; }
.footer-trademark { letter-spacing: .04em; text-transform: none; }
@media (min-width: 681px) { .footer-trademark { white-space: nowrap; } }
.footer-navigation, .footer-navigation .wp-block-navigation__container { align-items: flex-start; gap: 8px; }

/* Block-theme navigation preserves the original fixed header while remaining editable. */
.site-header > .wordmark { margin: 0; }
.primary-navigation.wp-block-navigation { gap: clamp(13px, 1.45vw, 24px); font-size: 14px; font-weight: 400; }
.primary-navigation .wp-block-navigation__container { gap: clamp(13px, 1.45vw, 24px); }
.primary-navigation .wp-block-navigation-item__content { color: #c5c5c3; }
.primary-navigation .wp-block-navigation-item__content:hover { color: var(--white); }
.primary-navigation .nav-login > .wp-block-navigation-item__content { color: var(--white); font-weight: 600; }
.primary-navigation .nav-cta > .wp-block-navigation-item__content { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 17px !important; border: 1px solid var(--brand-bright); border-radius: 0 !important; background: var(--brand); color: var(--white); font-size: 12px; font-weight: 600; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.primary-navigation .nav-cta > .wp-block-navigation-item__content:hover { background: var(--brand-bright); color: var(--white); }
.primary-navigation .wp-block-navigation__submenu-container { width: 255px !important; padding: 8px 18px !important; border: 1px solid var(--line-dark) !important; background: rgba(13,13,14,.98) !important; }
.primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content { padding: 12px 0; border-bottom: 1px solid var(--line-dark); color: #c5c5c3; font-size: 14px; white-space: nowrap; }
.primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item:last-child .wp-block-navigation-item__content { border-bottom: 0; }
.primary-navigation .wp-block-navigation__submenu-icon { color: #777774; }

/* Keep animation helpers visible and layouts manageable inside the visual editor. */
.editor-styles-wrapper { background: var(--paper); color: var(--ink); }
body#tinymce.wp-editor,
body.mce-content-body { background: var(--paper) !important; color: var(--ink) !important; }
.editor-styles-wrapper .reveal { opacity: 1 !important; transform: none !important; }
.editor-styles-wrapper .site-header { position: relative; top: auto; }
.editor-styles-wrapper .contact-intro { position: static; }
.editor-styles-wrapper .wp-block-post-content { max-width: none; }

/* Progressive motion */
.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.has-js .reveal[data-delay="1"] { transition-delay: .12s; }
.has-js .reveal[data-delay="2"] { transition-delay: .24s; }
.has-js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.has-js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1320px) {
	.site-header { height: 68px; }
	.primary-navigation .wp-block-navigation__responsive-container-open { display: flex; color: var(--white); }
	.wp-block-navigation__responsive-container.is-menu-open { position: fixed !important; inset: 0 !important; min-height: 100vh; padding: 90px var(--gutter) 40px !important; background: var(--ink) !important; color: var(--white) !important; }
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close { top: 22px; right: var(--gutter); color: var(--white); }
	.admin-bar .wp-block-navigation__responsive-container.is-menu-open { padding-top: 120px !important; }
	.primary-navigation .wp-block-navigation__responsive-container-content,
	.primary-navigation .wp-block-navigation__container { align-items: stretch; width: 100%; gap: 0; }
	.primary-navigation .wp-block-navigation-item { width: 100%; border-bottom: 1px solid var(--line-dark); }
	.primary-navigation .wp-block-navigation-item__content { width: 100%; padding: 18px 0; font-size: 22px; }
	.primary-navigation .nav-cta { margin-top: 30px; border-bottom: 0; }
	.primary-navigation .nav-cta > .wp-block-navigation-item__content { padding: 13px 20px !important; font-size: 12px; text-align: center; }
	.primary-navigation .wp-block-navigation__submenu-container { position: static !important; width: 100% !important; padding: 0 0 15px 12px !important; border: 0 !important; }
	.menu-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 12px; }
	[data-navigation].primary-navigation { position: fixed; inset: 68px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 40px var(--gutter); background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .3s ease, transform .3s var(--ease); }
	[data-navigation].primary-navigation.is-open { opacity: 1; pointer-events: auto; transform: none; }
	[data-navigation].primary-navigation > a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-size: 22px; }
	[data-navigation].primary-navigation .nav-cta { margin-top: 30px; padding: 15px; font-size: 12px; text-align: center; }
	.nav-group { width: 100%; border-bottom: 1px solid var(--line-dark); }
	.nav-group-toggle { justify-content: space-between; width: 100%; padding: 18px 0; color: #c5c5c3; font-size: 22px; }
	.nav-group-toggle span { font-size: 11px; }
	.nav-submenu { position: static; width: 100%; max-height: 0; padding: 0; border: 0; background: transparent; opacity: 1; visibility: visible; overflow: hidden; transform: none; transition: max-height .45s var(--ease), padding .35s ease; }
	.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu { max-height: 0; padding: 0; }
	.nav-group.is-open .nav-submenu { max-height: 310px; padding: 3px 0 15px 12px; }
	.nav-submenu a { padding: 10px 0; font-size: 14px; }
	.pulse-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 155px; }
	.hero-copy, .pulse-free-strip, .monitor-window { grid-column: 1; grid-row: auto; }
	.monitor-window { width: min(100%, 680px); margin-left: auto; }
	.pulse-free-strip { grid-template-columns: 1fr 1.5fr; }
	.manifesto, .section-heading, .origin-story, .agency-problem { grid-template-columns: 1fr; }
	.topic-explainer, .topic-observation { grid-template-columns: 1fr; }
	.legal-section { grid-template-columns: 1fr; gap: 30px; }
	.manifesto-copy, .section-heading h2, .story-copy { max-width: 850px; margin-left: auto; }
	.story-mark { display: none; }
	.level { grid-template-columns: .55fr 1fr; }
	.level-copy { grid-column: 2; }
	.pricing-grid { grid-template-columns: 1fr; border-left: 0; }
	.price-tier { min-height: auto; border-left: 1px solid var(--line-light); }
	.price-featured { transform: none; }
	.product-shot-grid { grid-template-columns: 1fr 1fr; }
	.product-shot-grid .product-shot:first-child { grid-column: 1 / -1; }
	.about-evidence { grid-template-columns: 1fr; }
	.team-card { min-height: 560px; }
	.feature-list { margin-bottom: 45px; }
	.agency-hero, .agency-strip, .agency-model { grid-template-columns: 1fr; }
	.agency-hero .product-shot { width: min(100%, 680px); margin-left: auto; }
	.agency-strip > div:last-child, .agency-model-copy { max-width: 620px; margin-left: auto; }
	.contact-page { grid-template-columns: 1fr; }
	.topic-explainer-copy, .topic-observation > div { max-width: 850px; margin-left: auto; }
	.contact-intro { position: static; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-status { grid-column: 1 / -1; justify-self: start; margin-top: 30px; }
}

@media (max-width: 900px) {
	.topic-index nav, .topic-index-links { grid-template-columns: 1fr 1fr; }
	.topic-index a:first-child, .topic-index-links .wp-block-button:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	:root { --gutter: 21px; --section: 64px; }
	body { font-size: 17px; }
	h1 { font-size: clamp(48px, 15vw, 72px); }
	h2 { font-size: clamp(38px, 12vw, 58px); }
	.umbrella { min-height: 100svh; padding: 42px 21px; }
	.umbrella-inner { width: 100%; }
	.umbrella h1 { font-size: 38px; }
	.umbrella-copy > p { font-size: 16px; }
	.wordmark .header-brand-image { width: 118px; height: 36px; }
	.free-monitoring-fields { grid-template-columns: 1fr; }
	.free-monitoring-fields .button { width: 100%; }
	.nekai-spaces { grid-template-columns: 1fr; }
	.nekai-space { min-height: 138px; padding: 19px; }
	.pulse-hero { gap: 46px; padding-top: 112px; }
	.hero-intro { font-size: 18px; }
	.hero-trust { font-size: 16px; }
	.pulse-free-strip { grid-template-columns: 1fr; row-gap: 18px; }
	.pulse-free-strip .kicker, .pulse-free-strip h2, .pulse-free-strip > p:not(.kicker), .pulse-free-strip > .free-monitoring-capture { grid-column: 1; grid-row: auto; }
	.scroll-progress-cue { bottom: max(12px, env(safe-area-inset-bottom)); min-height: 43px; padding: 8px 11px 8px 14px; }
	.monitor-window { font-size: 12px; }
	.journey-list li { grid-template-columns: 28px 1fr; }
	.journey-result { grid-column: 2; }
	.monitor-footer { align-items: flex-start; gap: 12px; flex-direction: column; }
	.manifesto-copy > p:last-of-type { margin-left: 0; }
	.section-heading { margin-bottom: 46px; }
	.level { grid-template-columns: 1fr; gap: 25px; }
	.level-meta { min-height: auto; flex-direction: row; }
	.level-copy { grid-column: auto; }
	.level-action .wp-block-button__link { padding-right: 12px; padding-left: 12px; font-size: clamp(10px, 3.3vw, 12px); letter-spacing: .04em; }
	.use-case-layout { grid-template-columns: 1fr; }
	.tab-list { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--line-light); }
	.tab-instruction, .product-tour-intro { margin-top: -15px; }
	.tab-list .wp-block-button.nekai-text-link .wp-block-button__link { padding: 16px 10px; font-size: 14px; }
	.tab-list .wp-block-button__link::after { content: "→"; }
	.tab-list .wp-block-button:nth-child(odd) { border-right: 1px solid var(--line-light); }
	.tab-list .wp-block-button__link:hover, .tab-list .wp-block-button__link[aria-selected="true"] { padding-left: 7px; }
	.tab-panels { min-height: 530px; }
	.tab-panel { padding: 45px 0; }
	.path-line { gap: 7px; overflow: hidden; font-size: 11px; }
	.product-shot-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: 1fr; }
	.team-card { min-height: auto; }
	.product-shot-grid .product-shot:first-child { grid-column: auto; }
	.product-shot-frame { min-height: 0; }
	.agency-hero .product-shot-frame { min-height: 0; }
	.manifesto-copy .product-shot-frame, .story-copy .product-shot-frame { min-height: 0; }
	.product-shot-frame > .wp-block-image { display: flex; align-items: center; justify-content: center; height: auto; min-height: 0; }
	.product-shot-frame > .wp-block-image img { display: block; width: 100% !important; height: auto !important; min-height: 0; object-fit: contain !important; object-position: center !important; }
	.product-shot-ui { min-height: 295px; }
	.manifesto-copy .product-shot, .story-copy .product-shot { margin-left: 0; }
	.origin-story .story-copy > p:not(.kicker) { margin-left: 0; }
	.comparison-row { grid-template-columns: 1.5fr .75fr .75fr; }
	.comparison-row > div { padding: 14px 8px 14px 0; font-size: 13px; }
	.comparison-row > div:not(:first-child) { padding-left: 8px; }
	.topic-index nav, .topic-index-links { grid-template-columns: 1fr 1fr; }
	.topic-index a:first-child, .topic-index-links .wp-block-button:first-child { grid-column: 1 / -1; }
	.quiet-promise { text-align: left; }
	.quiet-promise .button-row { justify-content: flex-start; }
	.page-hero, .journal-hero { min-height: auto; padding-top: 135px; }
	.journal-hero.compact-hero { padding-top: 112px; padding-bottom: 44px; }
	.journal-hero h1 { font-size: clamp(43px, 12.5vw, 58px); }
	.journal-list { padding-top: 44px; padding-bottom: 52px; }
	.journal-item { padding: 28px 0; }
	.article-page { padding-top: 112px; }
	.article-header { margin-bottom: 42px; }
	.article-header h1 { font-size: clamp(43px, 12.5vw, 58px); line-height: 1.02; }
	.page-intro { margin-left: 0; }
	.price-tier { padding: 30px 24px; }
	.free-pricing-tier { grid-template-columns: 1fr; }
	.agency-strip > div:last-child, .agency-model-copy { margin-left: 0; }
	.email-sequence > div { grid-template-columns: 58px 1fr; gap: 12px; }
	.email-sequence .sequence-better { padding: 24px 16px; }
	.benefit-lines { grid-template-columns: 1fr; }
	.topic-hero { min-height: auto; padding-top: 125px; }
	.legal-intro { margin-left: 0; }
	.breadcrumbs { margin-bottom: 70px; }
	.topic-explainer-copy p, .topic-observation > div p { margin-left: 0; }
	.topic-check-grid { grid-template-columns: 1fr; }
	.topic-check-grid article { min-height: 280px; }
	.mtv-list article { grid-template-columns: 1fr; gap: 12px; }
	.benefit-lines article { min-height: 270px; padding: 27px 22px; }
	.contact-page { gap: 70px; padding-top: 130px; }
	.contact-aside { margin-top: 45px; }
	.journal-item { grid-template-columns: 1fr; gap: 18px; }
	.journal-meta { flex-direction: row; }
	.journal-read { justify-self: start; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
	.footer-status { grid-column: 1 / -1; }
	.footer-base { flex-direction: column; gap: 8px; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

/* SEO/UX release: align WordPress's overlay and theme breakpoints. */
@media (max-width: 1320px) {
 .primary-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) { display: none !important; }
 .primary-navigation .wp-block-navigation__responsive-container-open { display: flex !important; }
 .primary-navigation .is-menu-open .wp-block-navigation__container { flex-direction: column; }
 .primary-navigation .is-menu-open .wp-block-navigation-item { width: 100%; }
}
@media (min-width: 1321px) {
 .primary-navigation .wp-block-navigation__responsive-container-open { display: none !important; }
 .primary-navigation .wp-block-navigation__container { flex-wrap: nowrap; }
 .primary-navigation .wp-block-navigation-item__content { white-space: nowrap; }
}
.footer-status p { color: #c5c5c3; }
:where(a, button, input, select, textarea, summary):focus-visible { outline: 2px solid #589c78; outline-offset: 5px; }
.pulse-form :where(input, select, textarea):focus-visible { outline: 2px solid #135f41; }
.plan-summary, .monitoring-scope { margin: 24px 0; padding: 20px; border: 1px solid currentColor; font-size: 16px; line-height: 1.6; }
.plan-summary h2 { font-size: 24px; letter-spacing: -.02em; }
.pulse-form .field-error { color: #962c22; font-size: 14px; }
.pulse-free-section { padding: 48px var(--gutter); background: var(--ink); color: var(--white); }
.pulse-free-section .pulse-free-strip { max-width: 1280px; margin: 0 auto; }
.article-byline { margin: 20px 0; font-size: 16px; }
.legal-toc { padding: 24px; border: 1px solid var(--line); margin: 32px 0; }
.comparison-table { overflow-x: auto; }
@media (max-width: 680px) {
 .nekai-spaces { grid-template-columns: 1fr; }
 .contact-page { gap: 28px; padding-top: 110px; }
 .contact-aside { margin-top: 20px; }
 .contact-form-wrap { padding-top: 0; }
 .free-monitoring-fields { grid-template-columns: 1fr; }
 .free-monitoring-fields button { width: 100%; }
}

/* Region and currency selector, appended to the footer by inc/market.php. */
.market-switcher {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em;
	margin-top: 1.25rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.8;
}

.market-switcher a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.market-switcher [aria-current="true"] {
	font-weight: 700;
}

/* Sector tabs on narrow screens: shorter tab markers and a compact action. */
@media (max-width: 1100px) {
	.tab-list .wp-block-button__link::after { content: "→"; }
	.tab-list .wp-block-button.nekai-text-link .wp-block-button__link[aria-selected="true"]::after { content: "•"; }
	.use-case-layout { grid-template-columns: minmax(220px, .75fr) 2.25fr; }
}
@media (max-width: 680px) {
	.use-case-layout { grid-template-columns: minmax(0, 1fr); }
	.tab-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tab-list .wp-block-button { min-width: 0; }
	.tab-list .wp-block-button.nekai-text-link .wp-block-button__link { gap: 8px; }
	.tab-list .wp-block-button__link span { min-width: 20px; }
	.panel-action .wp-block-button.nekai-button .wp-block-button__link { padding-right: 10px; padding-left: 10px; font-size: clamp(10px, 2.85vw, 12px); letter-spacing: .03em; }
}
@media (max-width: 420px) {
	.level { padding-right: 22px; padding-left: 22px; }
	.level-action .wp-block-button.nekai-button .wp-block-button__link { white-space: normal; text-wrap: balance; }
}
@media (max-width: 340px) {
	.panel-action .wp-block-button.nekai-button .wp-block-button__link { white-space: normal; text-wrap: balance; }
}
