/* ==========================================================================
   KAE Travel Suite: public site stylesheet  (v2.0.0)
   Navy foundation, gold details, purple accents, white space.
   ========================================================================== */

@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--navy-950: #070F24;
	--navy-900: #0A1633;
	--navy-800: #10224D;
	--navy-700: #1B3470;
	--navy-600: #28468F;
	--navy-100: #E8ECF6;
	--gold-600: #A9832B;
	--gold-500: #C9A24B;
	--gold-400: #DDBB68;
	--gold-200: #F0DFB4;
	--gold-50:  #FBF6E8;
	--purple-800: #3A2596;
	--purple-700: #4A2FB8;
	--purple-600: #5B3FD1;
	--purple-400: #9A87F2;
	--purple-100: #E7E1FD;
	--purple-50:  #F4F1FE;
	--green-700: #146C43;
	--green-600: #1E9A4B;  /* logo green */
	--green-400: #6CC04A;  /* logo lime  */
	--green-50:  #E8F6EE;
	--blue-700: #154A9E;
	--blue-600: #1B5FC1;   /* logo blue  */
	--blue-400: #6FA6EE;
	--blue-100: #DCE9FB;
	--blue-50:  #EEF4FD;

	/* Product layer language: Suite = blue, Intelligence = purple,
	   Discovery = green (+ gold), Complete = gold with all three. */
	--layer-suite: var(--blue-600);
	--layer-intel: var(--purple-600);
	--layer-disc:  var(--green-600);
	--layer-complete: var(--gold-500);
	--ink:   #0F1B33;
	--body:  #3B4764;
	--muted: #637091;
	--line:  #E2E6EF;
	--soft:  #F6F7FB;
	--white: #FFFFFF;

	--font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--r-sm: 8px;
	--r:    14px;
	--r-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(10, 22, 51, .06), 0 2px 8px rgba(10, 22, 51, .05);
	--shadow:    0 2px 6px rgba(10, 22, 51, .06), 0 16px 40px rgba(10, 22, 51, .10);
	--shadow-lg: 0 30px 80px rgba(3, 8, 24, .45);
	--wrap: 1180px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 9vw, 112px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
	margin: 0; background: var(--white); color: var(--body);
	font-family: var(--font); font-size: 17px; line-height: 1.65;
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-700); }
a:hover { color: var(--purple-800); }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4.1rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.015em; line-height: 1.3; }
.kae-h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.kae-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.kae-skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); text-decoration: none; font-weight: 700; }
.kae-skip:focus { top: 12px; color: #fff; }

.kae-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.kae-narrow { max-width: 820px; }
.kae-center { text-align: center; }
.kae-mt { margin-top: 36px; }
.kae-small { font-size: .9rem; color: var(--muted); }
.kae-muted { color: var(--muted); }
.kae-strong { color: var(--ink); font-weight: 700; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.kae-btn {
	--bg: var(--navy-900); --fg: #fff; --bd: transparent;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 46px; padding: 11px 22px; border-radius: 999px;
	background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
	font: 700 .98rem/1.2 var(--font); text-decoration: none; text-align: center;
	cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.kae-btn:hover { transform: translateY(-1px); color: var(--fg); }
.kae-btn--gold { --bg: var(--gold-500); --fg: var(--navy-950); box-shadow: 0 6px 20px rgba(201, 162, 75, .35); }
.kae-btn--gold:hover { --bg: var(--gold-400); }
.kae-btn--navy { --bg: var(--navy-900); --fg: #fff; }
.kae-btn--navy:hover { --bg: var(--navy-700); }
.kae-btn--primary { --bg: var(--purple-600); --fg: #fff; }
.kae-btn--outline { --bg: transparent; --fg: var(--navy-900); --bd: var(--navy-900); }
.kae-btn--outline:hover { --bg: var(--navy-900); --fg: #fff; }
.kae-btn--ghost { --bg: rgba(255,255,255,.06); --fg: #fff; --bd: rgba(255,255,255,.45); }
.kae-btn--ghost:hover { --bg: rgba(255,255,255,.14); }
.kae-btn--sm { min-height: 40px; padding: 8px 18px; font-size: .92rem; }
.kae-btn--lg { min-height: 54px; padding: 14px 28px; font-size: 1.02rem; }
.kae-btn--block { display: flex; width: 100%; }
.kae-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.kae-cta-row--center { justify-content: center; }
.kae-link { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--gold-400); color: var(--navy-900); padding-bottom: 1px; }
.kae-link:hover { color: var(--purple-700); border-color: var(--purple-400); }

/* ---------- Badges ---------- */
.kae-badge {
	display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
	padding: 3px 10px 3px 8px; border-radius: 999px;
	font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; line-height: 1.6;
	white-space: nowrap;
}
.kae-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.kae-badge--live { background: var(--green-50); color: var(--green-700); }
.kae-badge--dev  { background: var(--navy-100); color: var(--navy-700); }
.kae-badge--beta { background: var(--blue-50); color: var(--blue-700); }
.kae-badge--soon { background: var(--gold-50); color: #7A5A12; }
.kae-dark .kae-badge--dev, .kae-phero .kae-badge--dev, .kae-hero .kae-badge--dev { background: rgba(255, 255, 255, .1); color: #D5DDF0; }
.kae-dark .kae-badge--soon, .kae-phero .kae-badge--soon { background: rgba(221, 187, 104, .16); color: var(--gold-200); }
.kae-phero .kae-badge--live { background: rgba(92, 205, 145, .16); color: #A9EBC6; }

/* ---------- Eyebrows / section heads ---------- */
.kae-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 14px; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-700); }
.kae-eyebrow--light { color: var(--gold-400); }
.kae-eyebrow--gold { color: var(--gold-400); }
.kae-sh { max-width: 760px; margin-bottom: 44px; }
.kae-sh--center { margin-left: auto; margin-right: auto; text-align: center; }
.kae-sh--center .kae-eyebrow { justify-content: center; }
.kae-lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); line-height: 1.6; }
.kae-split-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.kae-split-head .kae-sh { margin-bottom: 36px; }

/* ---------- Header ---------- */
.kae-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.kae-header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(10, 22, 51, .06); }
.kae-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.kae-header__logo img { width: 150px; height: auto; }
.kae-nav { display: flex; align-items: center; gap: 22px; }
.kae-nav__list { list-style: none; display: flex; gap: 2px; }
.kae-nav__list a { display: block; padding: 8px 11px; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .94rem; }
.kae-nav__list a:hover { background: var(--soft); color: var(--purple-700); }
.kae-nav__list a[aria-current="page"] { color: var(--purple-700); box-shadow: inset 0 -2px 0 var(--gold-500); border-radius: 0; }
.kae-nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; position: relative; }
.kae-nav-toggle__bars, .kae-nav-toggle__bars::before, .kae-nav-toggle__bars::after { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; content: ""; transition: transform .2s, top .2s, opacity .2s; }
.kae-nav-toggle__bars { top: 21px; }
.kae-nav-toggle__bars::before { left: 0; top: -6px; }
.kae-nav-toggle__bars::after { left: 0; top: 6px; }
.kae-nav-toggle[aria-expanded="true"] .kae-nav-toggle__bars { background: transparent; }
.kae-nav-toggle[aria-expanded="true"] .kae-nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.kae-nav-toggle[aria-expanded="true"] .kae-nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1120px) {
	.kae-nav-toggle { display: block; }
	.kae-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 12px; padding: 12px var(--gutter) 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(10, 22, 51, .12); }
	.kae-nav.is-open { display: flex; }
	.kae-nav__list { flex-direction: column; }
	.kae-nav__list a { padding: 13px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--soft); border-radius: 0; }
	.kae-nav__list a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold-500); padding-left: 14px; }
	.kae-nav__cta { min-height: 50px; }
}

/* ---------- Sections ---------- */
.kae-section { padding: var(--section) 0; }
.kae-section--soft { background: var(--soft); }
.kae-dark { background: var(--navy-900); color: #C9D2E8; position: relative; overflow: hidden; }
.kae-dark h2, .kae-dark h3 { color: #fff; }
.kae-dark .kae-lede { color: #AFBAD6; }
.kae-dark::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 70%; height: 120%; background: radial-gradient(closest-side, rgba(27, 95, 193, .26), transparent 70%); pointer-events: none; }
.kae-dark.kae-intel::before { background: radial-gradient(closest-side, rgba(91, 63, 209, .3), transparent 70%); }
.kae-dark > .kae-wrap { position: relative; }

/* ---------- Home hero ---------- */
.kae-hero { position: relative; overflow: hidden; background: var(--navy-950); color: #C9D2E8; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); }
.kae-hero::before { content: ""; position: absolute; right: -15%; top: -30%; width: 75%; height: 140%; background: radial-gradient(closest-side, rgba(27, 95, 193, .34), rgba(91, 63, 209, .12) 55%, transparent 72%); pointer-events: none; }
.kae-hero::after { content: ""; position: absolute; left: -10%; bottom: -60%; width: 60%; height: 110%; background: radial-gradient(closest-side, rgba(201, 162, 75, .14), transparent 70%); pointer-events: none; }
.kae-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.kae-hero h1 { color: #fff; }
.kae-hero__lede { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: #B9C3DD; max-width: 560px; }
.kae-hero__meta { margin-top: 22px; font-size: .92rem; color: #8F9BBB; }
.kae-hero__meta a { color: var(--gold-400); font-weight: 700; }

/* ---------- Mock workspace ---------- */
.kae-mock { margin: 0; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; color: var(--body); border: 1px solid rgba(255,255,255,.08); }
.kae-mock__chrome { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--soft); border-bottom: 1px solid var(--line); }
.kae-mock__chrome span { width: 10px; height: 10px; border-radius: 50%; background: #D5DAE6; }
.kae-mock__chrome em { margin-left: 10px; font-style: normal; font-size: .78rem; font-weight: 700; color: var(--muted); }
.kae-mock__body { display: grid; grid-template-columns: 128px 1fr; min-height: 330px; }
.kae-mock__side { background: var(--navy-900); padding: 16px 10px; display: flex; flex-direction: column; gap: 4px; }
.kae-mock__side b { font-weight: 600; font-size: .8rem; color: #93A0C2; padding: 7px 10px; border-radius: 8px; }
.kae-mock__side b.is-on { background: rgba(255,255,255,.1); color: #fff; box-shadow: inset 3px 0 0 var(--blue-400); }
.kae-mock__main { padding: 18px 20px; }
.kae-mock__h { font-weight: 800; color: var(--ink); margin: 0 0 10px; font-size: 1rem; }
.kae-mock__list { list-style: none; display: grid; gap: 8px; }
.kae-mock__list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; }
.kae-mock__list strong { display: block; font-size: .86rem; color: var(--ink); line-height: 1.35; }
.kae-mock__list small { display: block; font-size: .76rem; color: var(--muted); line-height: 1.4; }
.dot { flex: none; width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; }
.dot--gold { background: var(--gold-500); } .dot--purple { background: var(--purple-600); } .dot--navy { background: var(--blue-600); }
.kae-mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.kae-mock__stats div { background: var(--soft); border-radius: 10px; padding: 9px 11px; }
.kae-mock__stats small { display: block; font-size: .68rem; color: var(--muted); line-height: 1.3; }
.kae-mock__stats strong { font-size: 1.1rem; color: var(--navy-900); }
.kae-mock figcaption { padding: 9px 16px; font-size: .72rem; color: var(--muted); background: var(--soft); border-top: 1px solid var(--line); }
.kae-hero .kae-mock { transform: perspective(1400px) rotateY(-5deg) rotateX(2deg); }

/* ---------- Problem ---------- */
.kae-problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.kae-problem .kae-sh { margin-bottom: 20px; }
.kae-scatter { list-style: none; display: grid; gap: 12px; }
.kae-scatter li { position: relative; padding: 16px 20px 16px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); color: var(--muted); }
.kae-scatter li span { font-weight: 800; color: var(--ink); }
.kae-scatter li:nth-child(odd) { transform: translateX(-10px) rotate(-.6deg); }
.kae-scatter li:nth-child(even) { transform: translateX(14px) rotate(.5deg); }
.kae-scatter li::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--gold-500); }

/* ---------- Tabs ---------- */
.kae-tabs { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.kae-tabs__list { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); background: #fff; scrollbar-width: none; }
.kae-tabs__list::-webkit-scrollbar { display: none; }
.kae-tabs__list button { flex: 1 0 auto; padding: 18px 22px; border: 0; background: none; font: 700 .98rem var(--font); color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; }
.kae-tabs__list button:hover { color: var(--ink); }
.kae-tabs__list button[aria-selected="true"] { color: var(--navy-900); border-color: var(--blue-600); }
.kae-tabs__panel { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; padding: clamp(24px, 4vw, 48px); align-items: center; }
.kae-tabs__panel[hidden] { display: none; }
.kae-tabs__text h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.kae-tabs__text p { margin: 0; }
.kae-tabs__panel + .kae-tabs__panel { border-top: 1px solid var(--line); }

/* ---------- Checks ---------- */
.kae-checks { list-style: none; display: grid; gap: 10px; margin: 18px 0 0; }
.kae-checks li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.kae-checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 50%; background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%231B5FC1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; }
.kae-duo__col--ai .kae-checks li::before, .kae-step--plus .kae-checks li::before { background-color: var(--purple-50); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%234A2FB8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.kae-step--complete .kae-checks li::before { background-color: var(--gold-50); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%23A9832B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.kae-checks--2 { grid-template-columns: 1fr 1fr; margin: 0; }
.kae-dark .kae-checks li { color: #DCE3F3; }
.kae-dash { list-style: none; display: grid; gap: 8px; margin: 14px 0; }
.kae-dash li { position: relative; padding-left: 22px; }
.kae-dash li::before { content: ""; position: absolute; left: 0; top: .78em; width: 12px; height: 2px; background: var(--gold-500); }

/* ---------- Intelligence section ---------- */
.kae-intel__head { max-width: 820px; margin-bottom: 36px; }
.kae-example-tag { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; padding: 5px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border: 1px dashed currentColor; color: var(--gold-400); }
.kae-example-tag span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.kae-health { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kae-hcard { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 22px 20px; }
.kae-hcard::before { content: ""; position: absolute; left: 20px; right: 20px; top: 0; height: 3px; border-radius: 0 0 3px 3px; background: var(--accent); }
.kae-hcard h3 { font-size: 1.08rem; margin: 6px 0 10px; }
.kae-hcard p { font-size: .92rem; margin: 0; color: #AAB5D2; }
.kae-hcard .kae-hcard__k { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.kae-hcard--good { --accent: var(--green-400); }
.kae-hcard--look { --accent: var(--gold-400); }
.kae-hcard--keep { --accent: var(--blue-400); }
.kae-hcard--test { --accent: var(--purple-400); background: rgba(91, 63, 209, .16); border-color: rgba(154, 135, 242, .35); }
.kae-intel__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.kae-mantra { margin: 0; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.kae-mantra span + span { color: var(--gold-400); }

/* ---------- Compare (generic vs KAE) ---------- */
.kae-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.kae-compare__side { padding: clamp(26px, 4vw, 44px); }
.kae-compare__side--generic { background: var(--soft); }
.kae-compare__side--kae { background: var(--navy-900); color: #C9D2E8; }
.kae-compare__label { display: flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.kae-compare__side--kae .kae-compare__label { color: var(--gold-400); }
.kae-compare__ex { font-size: .66rem; padding: 2px 8px; border: 1px dashed currentColor; border-radius: 999px; letter-spacing: .08em; }
.kae-compare__quote { font-size: clamp(1.15rem, 1.9vw, 1.4rem); line-height: 1.5; font-weight: 600; color: var(--ink); margin: 16px 0 20px; }
.kae-compare__side--generic .kae-compare__quote { color: var(--muted); }
.kae-compare__side--kae .kae-compare__quote { color: #fff; }
.kae-compare__note { font-size: .92rem; margin: 0; color: var(--muted); }
.kae-compare__side--kae .kae-compare__note { color: #9FAACB; }

/* ---------- Loop ---------- */
.kae-loop { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; counter-reset: none; position: relative; }
.kae-loop li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 16px; box-shadow: var(--shadow-sm); }
.kae-loop li:not(:last-child)::after { content: ""; position: absolute; right: -11px; top: 32px; width: 10px; height: 10px; border-top: 2px solid var(--gold-500); border-right: 2px solid var(--gold-500); transform: rotate(45deg); z-index: 1; background: transparent; }
.kae-loop strong { display: block; color: var(--ink); font-size: 1.05rem; margin: 10px 0 4px; }
.kae-loop p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.kae-loop__n { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--navy-900); color: var(--gold-400); font-weight: 800; font-size: .85rem; }
.kae-loop--tight { margin-top: 48px; }
.kae-loop--tight li { text-align: center; padding: 16px 10px; }
.kae-loop--tight strong { margin-bottom: 0; }

/* ---------- Journey ---------- */
.kae-journey { list-style: none; display: flex; overflow-x: auto; gap: 0; padding: 6px 2px 18px; scroll-snap-type: x mandatory; }
.kae-journey li { flex: 1 0 150px; scroll-snap-align: start; position: relative; padding: 18px 16px 18px 0; }
.kae-journey li::before { content: ""; display: block; height: 4px; margin-bottom: 16px; border-radius: 4px; background: linear-gradient(90deg, var(--navy-700), var(--purple-600)); }
.kae-journey li:nth-last-child(-n+2)::before { background: linear-gradient(90deg, var(--purple-600), var(--gold-500)); }
.kae-journey li::after { content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 3px solid var(--navy-700); }
.kae-journey strong { display: block; color: var(--ink); font-size: 1rem; }
@media (min-width: 1081px) {
	.kae-journey { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); overflow: visible; }
	.kae-journey li { padding-right: 4px; }
	.kae-journey strong { font-size: .84rem; letter-spacing: -.01em; }
	.kae-journey small { font-size: .8rem; }
}
.kae-journey small { display: block; font-size: .85rem; color: var(--muted); line-height: 1.45; margin-top: 4px; padding-right: 8px; }

/* ---------- Content story ---------- */
.kae-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.kae-story__cards { display: grid; gap: 16px; }
.kae-post { border-radius: var(--r); padding: 22px 24px; }
.kae-post p:last-child { margin: 0; }
.kae-post__k { display: flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.kae-post--meh { background: #fff; border: 1px dashed #C8CEDD; color: var(--muted); }
.kae-post--meh p:last-child { text-decoration: line-through; text-decoration-color: rgba(99, 112, 145, .5); }
.kae-post--real { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-left: 4px solid var(--gold-500); color: var(--ink); font-size: 1.06rem; font-weight: 500; }
.kae-post--real .kae-post__k { color: var(--purple-700); }

/* ---------- Stages ---------- */
.kae-stages { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.kae-stages::before { content: ""; position: absolute; left: 10%; right: 10%; top: 13px; height: 2px; background: linear-gradient(90deg, var(--navy-100), var(--gold-400)); }
.kae-stages li { position: relative; text-align: center; padding: 42px 14px 0; }
.kae-stages li::before { content: ""; position: absolute; left: 50%; top: 4px; width: 20px; height: 20px; margin-left: -10px; border-radius: 50%; background: #fff; border: 4px solid var(--navy-700); }
.kae-stages li:last-child::before { border-color: var(--gold-500); }
.kae-stages__k { font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.kae-stages li p:last-child { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Agency band ---------- */
.kae-agency-band { background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); color: #C9D2E8; }
.kae-agency-band h2 { color: #fff; }
.kae-agency-band__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.kae-agency-band__list { list-style: none; display: grid; gap: 10px; }
.kae-agency-band__list li { padding: 14px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #fff; font-weight: 600; background: rgba(255,255,255,.03); }
.kae-agency-band__list li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); margin-right: 12px; vertical-align: middle; }

/* ---------- Plans ---------- */
.kae-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.kae-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.kae-plan--complete { border: 2px solid var(--gold-500); box-shadow: 0 18px 50px rgba(201, 162, 75, .18); }
.kae-plan__head h3 { margin: 0 0 2px; font-size: 1.15rem; }
.kae-plan__note { font-size: .86rem; color: var(--muted); margin: 0 0 16px; }
.kae-plan__price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; margin-bottom: 6px; }
.kae-plan__amt { font-size: 2.6rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.03em; line-height: 1; }
.kae-plan__amt--word { font-size: 2.1rem; }
.kae-plan__per { font-size: .9rem; color: var(--muted); font-weight: 600; }
.kae-plan__founding { margin: 8px 0 4px; padding: 10px 12px; border-radius: 10px; background: var(--gold-50); color: #5E4610; font-size: .88rem; line-height: 1.45; }
.kae-plan__founding strong { color: #4A370B; }
.kae-plan__status { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin: 12px 0 4px; }
.kae-plan__statusnote { font-size: .84rem; font-weight: 600; color: var(--muted); }
.kae-plan__desc { font-size: .93rem; color: var(--body); margin: 6px 0 0; }
.kae-plan .kae-checks { font-size: .92rem; margin-top: 16px; gap: 8px; }
.kae-plan__cta { margin-top: auto; padding-top: 22px; }
.kae-plans--compact .kae-plan__desc { min-height: 0; }

/* ---------- Page hero ---------- */
.kae-phero { position: relative; overflow: hidden; background: var(--navy-950); color: #C9D2E8; padding: clamp(56px, 8vw, 100px) 0 clamp(52px, 7vw, 88px); }
.kae-phero::before { content: ""; position: absolute; right: -20%; top: -50%; width: 80%; height: 170%; background: radial-gradient(closest-side, rgba(27, 95, 193, .3), transparent 72%); pointer-events: none; }
.kae-page--intelligence .kae-phero::before { background: radial-gradient(closest-side, rgba(91, 63, 209, .32), transparent 72%); }
.kae-page--discovery .kae-phero::before { background: radial-gradient(closest-side, rgba(30, 154, 75, .22), rgba(201, 162, 75, .08) 60%, transparent 72%); }
.kae-phero__inner { position: relative; }
.kae-phero__inner > * { max-width: 860px; }
.kae-phero h1 { color: #fff; }
.kae-phero__badge { margin: 0 0 18px; }
.kae-phero__lede { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: #B9C3DD; max-width: 720px; margin: 0; }

/* ---------- Jump nav ---------- */
.kae-jump { position: sticky; top: 76px; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.kae-jump .kae-wrap { display: flex; gap: 6px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; }
.kae-jump .kae-wrap::-webkit-scrollbar { display: none; }
.kae-jump a { flex: none; padding: 7px 14px; border-radius: 999px; background: var(--soft); color: var(--ink); text-decoration: none; font-weight: 600; font-size: .9rem; }
.kae-jump a:hover { background: var(--purple-50); color: var(--purple-700); }

/* ---------- Feature stories ---------- */
.kae-feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.kae-feature--rev .kae-feature__copy { order: 2; }
.kae-feature__copy p { max-width: 540px; }
.kae-vis { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow); }
.kae-section--soft .kae-vis { background: #fff; }
.kae-vis figcaption, .kae-feature figcaption { margin-top: 16px; font-size: .75rem; color: var(--muted); }
.kae-vis__title { font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.kae-vis__name { font-weight: 800; font-size: 1.2rem; color: var(--ink); margin: 0 0 16px; display: flex; flex-direction: column; }
.kae-vis__name small { font-weight: 600; font-size: .82rem; color: var(--muted); }
.kae-vis__dl { margin: 0; display: grid; gap: 0; }
.kae-vis__dl div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.kae-vis__dl dt { font-size: .82rem; font-weight: 700; color: var(--muted); }
.kae-vis__dl dd { margin: 0; color: var(--ink); font-weight: 500; font-size: .95rem; }

.kae-timeline { list-style: none; position: relative; display: grid; gap: 18px; padding-left: 30px; }
.kae-timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.kae-timeline li { position: relative; }
.kae-timeline li::before { content: ""; position: absolute; left: -29px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--line); }
.kae-timeline li.is-done::before { background: var(--blue-600); border-color: var(--blue-600); }
.kae-timeline li.is-next::before { border-color: var(--gold-500); box-shadow: 0 0 0 5px var(--gold-50); }
.kae-timeline strong { display: block; color: var(--ink); }
.kae-timeline small { color: var(--muted); font-size: .88rem; }

.kae-pipe { list-style: none; display: grid; gap: 10px; }
.kae-pipe li { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.kae-pipe em { margin-left: auto; font-style: normal; font-size: .8rem; color: #8A6516; font-weight: 700; }
.kae-pipe__s { flex: none; min-width: 88px; text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.kae-pipe__s--sent { background: var(--navy-100); color: var(--navy-700); }
.kae-pipe__s--viewed { background: var(--gold-50); color: #7A5A12; }
.kae-pipe__s--resp { background: var(--green-50); color: var(--green-700); }

.kae-ledger { width: 100%; border-collapse: collapse; font-size: .92rem; }
.kae-ledger th { text-align: left; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 0 8px 10px 0; }
.kae-ledger td { padding: 12px 8px 12px 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 500; }
.kae-pill { font-size: .74rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.kae-pill--ok { background: var(--green-50); color: var(--green-700); }
.kae-pill--wait { background: var(--navy-100); color: var(--navy-700); }
.kae-pill--late { background: #FDECEC; color: #A12A2A; }

.kae-bars { list-style: none; display: grid; gap: 12px; }
.kae-bars li { display: grid; grid-template-columns: 140px 1fr 52px; align-items: center; gap: 12px; font-size: .9rem; color: var(--ink); font-weight: 600; }
.kae-bars i { display: block; height: 12px; border-radius: 6px; background: var(--soft); position: relative; overflow: hidden; }
.kae-bars i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w); border-radius: 6px; background: linear-gradient(90deg, var(--navy-700), var(--blue-600)); }
.kae-bars b { text-align: right; font-size: .88rem; }

.kae-org { display: grid; gap: 22px; justify-items: center; }
.kae-org__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; position: relative; }
.kae-org__row--4 { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kae-org__node { text-align: center; padding: 12px 10px; border: 1px solid var(--line); border-radius: 12px; font-weight: 700; color: var(--ink); background: #fff; font-size: .92rem; }
.kae-org__node--owner { background: var(--navy-900); color: #fff; border-color: var(--navy-900); min-width: 200px; box-shadow: inset 0 -3px 0 var(--gold-500); }
.kae-org__node--sm { font-size: .8rem; color: var(--muted); padding: 10px 6px; }

.kae-status-list { list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.kae-status-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.kae-status-list .kae-badge { flex: none; min-width: 132px; justify-content: flex-start; }

.kae-mini-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.kae-mini-grid li { background: #fff; padding: 24px 24px 26px; }
.kae-mini-grid strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.kae-mini-grid span { font-size: .93rem; color: var(--muted); }

/* ---------- Tables ---------- */
.kae-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.kae-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 620px; }
.kae-table th, .kae-table td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.kae-table thead th { background: var(--navy-900); color: #fff; font-size: .85rem; letter-spacing: .02em; }
.kae-table tbody th { color: var(--ink); font-weight: 700; }
.kae-table tbody tr:last-child th, .kae-table tbody tr:last-child td { border-bottom: 0; }
.kae-table td:last-child { color: var(--ink); font-weight: 600; }
.kae-table--cmp td:last-child { color: var(--body); font-weight: 400; }
.kae-table--cmp td, .kae-table--cmp thead th { text-align: center; }
.kae-table--cmp thead th:nth-child(4) { background: var(--navy-700); box-shadow: inset 0 -3px 0 var(--gold-500); }
.kae-table small { color: #7A5A12; font-weight: 700; }

/* ---------- Duo (calculate / interpret) ---------- */
.kae-duo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.kae-duo__col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-sm); }
.kae-duo__col--ai { background: var(--purple-50); border-color: var(--purple-100); }
.kae-duo__k { font-size: 1.5rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; margin-bottom: 4px; }
.kae-duo__col--ai .kae-duo__k { color: var(--purple-700); }
.kae-duo__plus { align-self: center; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-500); color: var(--navy-950); font-size: 1.6rem; font-weight: 800; }
.kae-duo__note { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--purple-100); font-weight: 700; color: var(--purple-800); }

/* ---------- Business Health story ---------- */
.kae-bh { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.kae-bh__col { display: grid; gap: 14px; }
.kae-bh__say { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 18px 18px 18px 4px; padding: 20px 22px; color: #E3E8F5; font-size: 1.04rem; }
.kae-bh__say p:last-child { margin: 0; }
.kae-bh__say--gold { background: rgba(201, 162, 75, .12); border-color: rgba(221, 187, 104, .4); color: #fff; font-weight: 600; }
.kae-bh__who { font-size: .72rem !important; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 8px !important; }
.kae-bh__inspect { padding: 18px 22px; border-left: 2px dashed rgba(255,255,255,.2); margin-left: 16px; }
.kae-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.kae-chips li { padding: 6px 12px; border-radius: 999px; font-size: .85rem; font-weight: 600; background: rgba(255,255,255,.08); color: #E3E8F5; border: 1px solid rgba(255,255,255,.14); }
.kae-chips--light li { background: #fff; color: var(--ink); border-color: var(--line); }
.kae-fihr { list-style: none; display: grid; gap: 10px; }
.kae-fihr li { background: #fff; color: var(--body); border-radius: 12px; padding: 16px 18px; border-left: 4px solid var(--c); }
.kae-fihr li p { margin: 0; font-size: .95rem; }
.kae-fihr li p + p { color: var(--ink); }
.kae-fihr__k { font-size: .72rem !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--c) !important; margin-bottom: 4px !important; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.kae-fihr__k span { font-size: .66rem; letter-spacing: .06em; padding: 1px 8px; border: 1px dashed currentColor; border-radius: 999px; }
.kae-fihr--fact { --c: var(--navy-700); }
.kae-fihr--interp { --c: #7A5A12; }
.kae-fihr--hyp { --c: var(--purple-700); background: var(--purple-50) !important; }
.kae-fihr--rec { --c: #146C43; }
.kae-fihr--protect { --c: #28468F; }

/* ---------- Three columns ---------- */
.kae-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.kae-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---------- Funnel ---------- */
.kae-funnel { list-style: none; display: grid; gap: 10px; }
.kae-funnel li { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow-sm); }
.kae-funnel li:nth-child(1) { margin: 0; }
.kae-funnel li:nth-child(2) { margin: 0 7%; }
.kae-funnel li:nth-child(3) { margin: 0 14%; background: var(--navy-900); border-color: var(--navy-900); box-shadow: inset 0 -3px 0 var(--gold-500), var(--shadow); }
.kae-funnel strong { display: block; color: var(--ink); font-size: 1.05rem; }
.kae-funnel span { font-size: .92rem; color: var(--muted); }
.kae-funnel li:nth-child(3) strong { color: #fff; }
.kae-funnel li:nth-child(3) span { color: #B9C3DD; }

/* ---------- Voice ---------- */
.kae-voice { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.kae-voice__title { font-weight: 800; color: var(--ink); }

/* ---------- Equation ---------- */
.kae-equation { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin: 32px 0 20px; }
.kae-equation span { padding: 14px 22px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-weight: 800; color: var(--ink); box-shadow: var(--shadow-sm); }
.kae-equation b { font-size: 1.6rem; color: var(--gold-600); }
.kae-equation__out { background: var(--navy-900) !important; color: #fff !important; border-color: var(--navy-900) !important; box-shadow: inset 0 -3px 0 var(--gold-500) !important; }

/* ---------- Modules ---------- */
.kae-modules { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.kae-modules li { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.kae-modules strong { display: block; color: var(--ink); }
.kae-modules span:not(.kae-badge) { display: block; font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* ---------- Advisors stages ---------- */
.kae-stage__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.kae-stage__num { font-size: 3.5rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--gold-500); margin-bottom: 14px; }
.kae-stage__cards { display: grid; gap: 14px; }
.kae-stage__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.kae-stage__card .kae-checks { margin-top: 12px; }
.kae-stage__card--next { background: var(--gold-50); border-color: var(--gold-200); box-shadow: none; }
.kae-stage__card--next p:last-child { margin: 10px 0 0; color: var(--ink); }
.kae-stage__label { margin: 0; }

/* ---------- Pillars / panels ---------- */
.kae-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.kae-pillars > div { padding: 26px 22px; border-top: 3px solid var(--gold-500); background: #fff; border-radius: 0 0 var(--r) var(--r); box-shadow: var(--shadow-sm); }
.kae-pillars p { margin: 0; font-size: .95rem; color: var(--muted); }
.kae-panel { background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.kae-panel--outline { background: transparent; box-shadow: none; border: 1.5px dashed #C3CADB; }
.kae-panel--gold { background: var(--gold-50); border-color: var(--gold-200); box-shadow: none; }
.kae-steps { margin: 16px 0 24px; padding-left: 20px; display: grid; gap: 10px; color: var(--ink); }
.kae-steps li::marker { color: var(--gold-600); font-weight: 800; }

/* ---------- Notes (pricing fine print) ---------- */
.kae-notes { margin: 0; display: grid; gap: 0; }
.kae-notes > div { padding: 20px 0; border-top: 1px solid var(--line); }
.kae-notes dt { font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.kae-notes dd { margin: 0; }

/* ---------- Prose / logo ---------- */
.kae-prose h2 { margin-bottom: .6em; }
.kae-prose p { font-size: 1.08rem; }
.kae-logo-figure { margin: 0; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); padding: 20px; box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.kae-faq { display: grid; gap: 12px; }
.kae-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.kae-faq__item[open] { border-color: var(--purple-100); box-shadow: var(--shadow); }
.kae-faq__item summary { list-style: none; cursor: pointer; padding: 20px 60px 20px 24px; position: relative; }
.kae-faq__item summary::-webkit-details-marker { display: none; }
.kae-faq__item summary h3 { margin: 0; font-size: 1.1rem; }
.kae-faq__item summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 2.5px solid var(--gold-600); border-bottom: 2.5px solid var(--gold-600); transform: rotate(45deg); transition: transform .2s; }
.kae-faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.kae-faq__a { padding: 0 24px 8px; }
.kae-faq__a p { color: var(--body); }

/* ---------- CTA band ---------- */
.kae-ctaband { position: relative; overflow: hidden; background: var(--navy-900); color: #C9D2E8; padding: clamp(64px, 8vw, 104px) 0; text-align: center; }
.kae-ctaband::before { content: ""; position: absolute; inset: auto -10% -70% -10%; height: 140%; background: radial-gradient(closest-side, rgba(201, 162, 75, .18), transparent 70%); pointer-events: none; }
.kae-ctaband__inner { position: relative; max-width: 760px; }
.kae-ctaband h2 { color: #fff; }
.kae-ctaband p { font-size: 1.1rem; color: #B2BDD8; }

/* ---------- Founding access / form ---------- */
.kae-phero--form { padding-bottom: clamp(56px, 8vw, 96px); }
.kae-join { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.kae-join__list { list-style: none; display: grid; gap: 14px; margin: 28px 0; }
.kae-join__list li { padding-left: 18px; border-left: 2px solid var(--gold-500); color: #C9D2E8; }
.kae-join__list strong { color: #fff; }
.kae-join__fine { font-size: .92rem; color: #8F9BBB; }
.kae-join__form { background: #fff; border-radius: var(--r-lg); padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--shadow-lg); color: var(--body); scroll-margin-top: 96px; }
.kae-form__set { border: 0; padding: 0; margin: 0 0 20px; }
.kae-form__set legend { font-weight: 800; color: var(--ink); margin-bottom: 10px; padding: 0; }
.kae-radios { display: grid; gap: 8px; }
.kae-radio { display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-size: .95rem; color: var(--ink); font-weight: 500; transition: border-color .15s, background .15s; }
.kae-radio:hover { border-color: var(--purple-400); }
.kae-radio input { margin-top: 4px; accent-color: var(--purple-600); width: 17px; height: 17px; flex: none; }
.kae-radio:has(input:checked) { border-color: var(--purple-600); background: var(--purple-50); }
.kae-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.kae-field { margin: 0 0 14px; }
.kae-field--full { grid-column: 1 / -1; }
.kae-field label { display: block; font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.kae-opt { font-weight: 500; color: var(--muted); }
.kae-field input, .kae-field select, .kae-field textarea { width: 100%; min-height: 46px; padding: 10px 13px; border: 1.5px solid #D5DBE7; border-radius: 10px; font: 400 1rem var(--font); color: var(--ink); background: #fff; }
.kae-field textarea { min-height: 110px; resize: vertical; }
.kae-field input:focus, .kae-field select:focus, .kae-field textarea:focus { outline: none; border-color: var(--purple-600); box-shadow: 0 0 0 4px var(--purple-100); }
.kae-field input[aria-invalid="true"] { border-color: #C0392B; }
.kae-form__fine { margin: 14px 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.kae-notice { padding: 13px 16px; border-radius: 10px; font-weight: 600; margin-bottom: 18px; }
.kae-notice--ok { background: var(--green-50); color: var(--green-700); }
.kae-notice--err { background: #FDECEC; color: #A12A2A; }
.kae-hp { position: absolute; left: -9999px; top: -9999px; width: 0; height: 0; overflow: hidden; }
.kae-field--agency[hidden] { display: none; }

/* ---------- Footer ---------- */
.kae-footer { background: var(--soft); border-top: 1px solid var(--line); padding: 64px 0 32px; font-size: .93rem; }
.kae-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.kae-footer__brand img { width: 170px; margin-bottom: 14px; }
.kae-footer__brand p { color: var(--muted); max-width: 320px; }
.kae-footer h2 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.kae-footer ul { list-style: none; display: grid; gap: 8px; }
.kae-footer a { color: var(--body); text-decoration: none; }
.kae-footer a:hover { color: var(--purple-700); text-decoration: underline; }
.kae-footer__legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }
.kae-footer__legal p { margin: 0 0 8px; }


/* ==========================================================================
   v2.1: product layers, pricing ladder, reviews
   ========================================================================== */

/* ---------- Layer eyebrows & level tags ---------- */
.kae-eyebrow--suite { color: var(--blue-600); }
.kae-eyebrow--intel { color: var(--purple-700); }
.kae-dark .kae-eyebrow--intel, .kae-phero .kae-eyebrow--intel { color: var(--purple-400); }
.kae-eyebrow--discovery { color: var(--green-700); }
.kae-level { display: inline-flex; align-items: center; gap: 6px; padding: 2px 10px; border-radius: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .02em; text-transform: none; white-space: nowrap; border: 1px solid currentColor; line-height: 1.7; vertical-align: middle; }
.kae-level--suite { color: var(--blue-700); background: var(--blue-50); border-color: var(--blue-100); }
.kae-level--plus { color: var(--purple-700); background: var(--purple-50); border-color: var(--purple-100); }
.kae-level--complete { color: #6B4F0E; background: var(--gold-50); border-color: var(--gold-200); }
.kae-level--agency { color: var(--navy-700); background: var(--navy-100); border-color: var(--navy-100); }
.kae-dark .kae-level, .kae-phero .kae-level, .kae-hero .kae-level { background: rgba(255,255,255,.06); }
.kae-dark .kae-level--suite, .kae-phero .kae-level--suite { color: #B9D3F7; border-color: rgba(111,166,238,.45); }
.kae-dark .kae-level--plus, .kae-phero .kae-level--plus { color: #D2C8FF; border-color: rgba(154,135,242,.45); }
.kae-dark .kae-level--complete, .kae-phero .kae-level--complete { color: var(--gold-200); border-color: rgba(221,187,104,.45); }
.kae-phero__badge { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.kae-dark .kae-review .kae-level--suite { color: var(--blue-700); background: var(--blue-50); border-color: var(--blue-100); }
.kae-dark .kae-review .kae-level--plus { color: var(--purple-700); background: var(--purple-50); border-color: var(--purple-100); }
.kae-dark .kae-review .kae-level--complete { color: #6B4F0E; background: var(--gold-50); border-color: var(--gold-200); }
.kae-dark .kae-review .kae-level--agency { color: var(--navy-700); background: var(--navy-100); border-color: var(--navy-100); }

/* ---------- Layer chips (what a plan includes) ---------- */
.kae-layers { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 4px; }
.kae-layers__item { position: relative; padding: 4px 10px 4px 22px; border-radius: 999px; font-size: .76rem; font-weight: 700; color: #9AA4BD; background: var(--soft); border: 1px dashed #D3D9E6; }
.kae-layers__item::before { content: ""; position: absolute; left: 9px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #C8CFDD; }
.kae-layers__item.is-on { border-style: solid; color: var(--ink); }
.kae-layers__item--suite.is-on { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-700); }
.kae-layers__item--suite.is-on::before { background: var(--layer-suite); }
.kae-layers__item--intelligence.is-on { background: var(--purple-50); border-color: var(--purple-100); color: var(--purple-700); }
.kae-layers__item--intelligence.is-on::before { background: var(--layer-intel); }
.kae-layers__item--discovery.is-on { background: var(--green-50); border-color: #CBEBD5; color: var(--green-700); }
.kae-layers__item--discovery.is-on::before { background: var(--layer-disc); box-shadow: 0 0 0 2px var(--gold-200); }

/* ---------- Pricing ladder ---------- */
.kae-ladder { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; counter-reset: none; }
.kae-step { display: flex; flex-direction: column; position: relative; }
.kae-step__add { display: flex; align-items: center; gap: 8px; min-height: 30px; margin: 0 0 10px; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.kae-step__add strong { color: var(--ink); letter-spacing: .02em; }
.kae-step--plus .kae-step__add { color: var(--purple-700); }
.kae-step--complete .kae-step__add { color: var(--green-700); }
.kae-step__add--start { color: var(--blue-600); }
.kae-step__arrow { position: relative; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-900); flex: none; }
.kae-step__arrow::after { content: "+"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold-400); font-weight: 800; font-size: 1rem; line-height: 1; }
.kae-step__card { flex: 1; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.kae-step__card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--layer-suite); }
.kae-step--plus .kae-step__card::before { background: linear-gradient(90deg, var(--layer-suite) 0 50%, var(--layer-intel) 50% 100%); }
.kae-step--complete .kae-step__card { border: 2px solid var(--gold-500); box-shadow: 0 18px 50px rgba(201, 162, 75, .2); }
.kae-step--complete .kae-step__card::before { background: linear-gradient(90deg, var(--layer-suite) 0 33.3%, var(--layer-intel) 33.3% 66.6%, var(--layer-disc) 66.6% 100%); }
.kae-step__name { margin: 0; font-size: 1.2rem; }
.kae-step__tag { margin: 2px 0 14px; font-weight: 700; color: var(--muted); font-size: .95rem; }
.kae-step--suite .kae-step__tag { color: var(--blue-700); }
.kae-step--plus .kae-step__tag { color: var(--purple-700); }
.kae-step--complete .kae-step__tag { color: #6B4F0E; }
.kae-step__price { display: flex; align-items: baseline; gap: 6px; margin: 0; }
.kae-step__amt { font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--navy-900); line-height: 1; }
.kae-step__per { font-size: .95rem; font-weight: 600; color: var(--muted); }
.kae-step__per b { display: inline-block; margin-left: 4px; padding: 1px 8px; border-radius: 6px; background: var(--navy-900); color: var(--gold-400); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.kae-step__math { margin: 8px 0 0; font-size: .86rem; color: var(--muted); font-weight: 600; }
.kae-step__desc { margin: 14px 0 0; font-size: .95rem; }
.kae-step .kae-checks { font-size: .92rem; gap: 8px; margin-top: 14px; }
.kae-step__disclose { margin: 18px 0 0; padding: 12px 14px; border-radius: 10px; background: var(--green-50); border-left: 3px solid var(--green-600); font-size: .82rem; line-height: 1.5; color: #26533A; }
.kae-ladder--compact .kae-step__card { padding: 24px 22px 22px; }
.kae-agency-plan { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; margin-top: 22px; padding: 22px 26px; background: var(--navy-900); color: #C9D2E8; border-radius: var(--r-lg); }
.kae-agency-plan h3 { color: #fff; margin: 0 0 4px; }
.kae-agency-plan p { margin: 0; max-width: 720px; }
.kae-agency-plan .kae-step__add { color: var(--gold-400); margin-bottom: 4px; min-height: 0; }
.kae-agency-plan__price { margin-left: 8px; font-size: .9rem; font-weight: 700; color: var(--gold-400); }
.kae-agency-plan .kae-btn--outline { --fg: #fff; --bd: rgba(255,255,255,.6); }
.kae-agency-plan .kae-btn--outline:hover { --bg: #fff; --fg: var(--navy-900); }

/* ---------- Three-layer story ---------- */
.kae-layers-sec__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.kae-stack { list-style: none; display: grid; gap: 10px; }
.kae-stack__row { position: relative; padding: 18px 22px 18px 26px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.kae-stack__row::before { content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 4px; border-radius: 0 4px 4px 0; background: var(--c); }
.kae-stack__row--suite { --c: var(--blue-400); }
.kae-stack__row--intelligence { --c: var(--purple-400); margin-left: 16px; }
.kae-stack__row--discovery { --c: var(--green-400); margin-left: 32px; }
.kae-stack__k { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 4px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c); }
.kae-stack__v { margin: 0; font-size: 1.15rem; font-weight: 700; color: #fff; }
.kae-stack__add { margin: 6px 0 0; font-size: .88rem; color: #9FAACB; }
.kae-stack__add a { color: var(--gold-400); font-weight: 700; }
.kae-section:not(.kae-dark) .kae-stack__row { background: var(--navy-900); }

/* ---------- Comparison table colors ---------- */
.kae-table--cmp thead th span { display: inline-block; margin-top: 4px; font-weight: 600; color: #C9D2E8; font-size: .82rem; }
.kae-table--cmp thead th.kae-col--suite { box-shadow: inset 0 -3px 0 var(--blue-400); }
.kae-table--cmp thead th.kae-col--plus { box-shadow: inset 0 -3px 0 var(--purple-400); }
.kae-table--cmp thead th.kae-col--complete { background: var(--navy-700); box-shadow: inset 0 -3px 0 var(--gold-500); }
.kae-table--cmp thead th:nth-child(4) { background: var(--navy-700); }
.kae-table--cmp tbody th { text-align: left; font-weight: 600; font-size: .92rem; }
.kae-table--cmp td small { display: block; color: var(--muted); font-weight: 600; }
.kae-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.kae-dot--suite { background: var(--layer-suite); }
.kae-dot--intelligence { background: var(--layer-intel); }
.kae-dot--discovery { background: var(--layer-disc); box-shadow: 0 0 0 2px var(--gold-200); }

/* ---------- Module groups ---------- */
.kae-modhead { display: flex; align-items: center; gap: 10px; margin: 34px 0 14px; font-size: 1.05rem; }
.kae-modhead::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: var(--layer-intel); }
.kae-modhead--complete::before { background: var(--gold-500); }
.kae-modules__item--plus { border-left: 3px solid var(--purple-400) !important; }
.kae-modules__item--complete { border-left: 3px solid var(--gold-400) !important; }
.kae-modules--discovery li { border-left: 3px solid var(--green-600); }
.kae-disclose { padding: 14px 16px; border-radius: 12px; background: var(--green-50); border-left: 3px solid var(--green-600); color: #26533A; font-size: .95rem; }
.kae-join__list li.kae-join__li--suite { border-left-color: var(--blue-400); }
.kae-join__list li.kae-join__li--plus { border-left-color: var(--purple-400); }
.kae-join__list li.kae-join__li--complete { border-left-color: var(--green-400); }

/* ---------- Checkbox ---------- */
.kae-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; font-size: .92rem; color: var(--ink); cursor: pointer; }
.kae-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green-600); flex: none; }
.kae-hint { display: block; margin-top: 6px; font-size: .8rem; color: var(--muted); }
.kae-perms { margin: 6px 0 18px; padding: 14px 16px; border-radius: 12px; background: var(--soft); }
.kae-perms .kae-check:first-child { margin-top: 0; }
.kae-perms .kae-hint { margin: 10px 0 0; }

/* ---------- Star rating input ---------- */
.kae-rate { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.kae-rate input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.kae-rate label { width: 40px; height: 40px; cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4L2.8 9.5l6.4-.8z' fill='%23E2E6EF' stroke='%23C3CADB' stroke-width='1'/%3E%3C/svg%3E") center/34px no-repeat; border-radius: 8px; }
.kae-rate input:checked ~ label, .kae-rate label:hover, .kae-rate label:hover ~ label { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4L2.8 9.5l6.4-.8z' fill='%23C9A24B' stroke='%23A9832B' stroke-width='1'/%3E%3C/svg%3E"); }
.kae-rate input:focus-visible + label { outline: 3px solid var(--purple-600); outline-offset: 2px; }
.kae-field input[type="file"] { padding: 9px; background: var(--soft); }

/* ---------- Review cards ---------- */
.kae-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.kae-stars i { width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4L2.8 9.5l6.4-.8z' fill='%23C3CADB'/%3E%3C/svg%3E") center/contain no-repeat; }
.kae-stars i.is-on { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4L2.8 9.5l6.4-.8z' fill='%23DDBB68'/%3E%3C/svg%3E"); }
.kae-reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.kae-reviews--home { margin-top: 8px; }
.kae-review { display: flex; flex-direction: column; background: #fff; color: var(--body); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.kae-review__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.kae-review__text { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.6; }
.kae-review__text p:last-child { margin-bottom: 0; }
.kae-review__changed { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line); font-size: .92rem; }
.kae-review__who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; }
.kae-review__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.kae-review__who p { margin: 0; }
.kae-review__name { font-weight: 800; color: var(--ink); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.kae-review__agency, .kae-review__meta, .kae-review__date { font-size: .84rem; color: var(--muted); }
.kae-verified { display: inline-flex; align-items: center; gap: 5px; padding: 1px 9px; border-radius: 999px; background: var(--green-50); color: var(--green-700); font-size: .72rem; font-weight: 800; letter-spacing: .02em; }
.kae-verified::before { content: ""; width: 12px; height: 12px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%231E9A4B'/%3E%3Cpath d='M6 10.5l2.6 2.6L14 7.6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.kae-review-stat { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; font-weight: 700; color: #fff; }
.kae-review-stat--light { color: var(--ink); }
.kae-reviews-home .kae-split-head { align-items: flex-end; }
.kae-reviews-home .kae-sh { margin-bottom: 28px; }
.kae-reviews-home--empty { padding: clamp(48px, 6vw, 72px) 0; }
.kae-reviews-home--empty .kae-sh { margin-bottom: 0; }
.kae-reviews-home--empty .kae-cta-row { margin-top: 18px; }
.kae-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.kae-filters a { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .9rem; }
.kae-filters a span { color: var(--muted); font-weight: 500; }
.kae-filters a[aria-current="true"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.kae-filters a[aria-current="true"] span { color: #B9C3DD; }
.kae-empty { max-width: 640px; margin: 0 auto; text-align: center; padding: 48px 28px; border: 1.5px dashed #C3CADB; border-radius: var(--r-lg); }
.kae-empty p { color: var(--muted); }

@media (max-width: 1080px) {
	.kae-ladder { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
	.kae-agency-plan { max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 900px) {
	.kae-layers-sec__grid { grid-template-columns: 1fr; }
	.kae-reviews-home .kae-split-head { align-items: flex-start; }
}
@media (max-width: 640px) {
	.kae-stack__row--intelligence { margin-left: 8px; }
	.kae-stack__row--discovery { margin-left: 16px; }
	.kae-reviews { grid-template-columns: 1fr; }
	.kae-step__amt { font-size: 2.6rem; }
}

/* ---------- Reveal motion ---------- */
.js .kae-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .kae-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js .kae-reveal { opacity: 1; transform: none; transition: none; }
	.kae-btn { transition: none; }
	.kae-hero .kae-mock { transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.kae-plans { grid-template-columns: 1fr 1fr; }
	.kae-health { grid-template-columns: 1fr 1fr; }
	.kae-loop { grid-template-columns: repeat(3, 1fr); }
	.kae-loop li:nth-child(3)::after { display: none; }
	.kae-pillars { grid-template-columns: 1fr 1fr; }
	.kae-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
	.kae-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
	.kae-hero__grid, .kae-problem__grid, .kae-story, .kae-feature__grid, .kae-agency-band__inner, .kae-stage__grid, .kae-join, .kae-bh, .kae-two { grid-template-columns: 1fr; }
	.kae-feature--rev .kae-feature__copy { order: 0; }
	.kae-hero .kae-mock { transform: none; }
	.kae-tabs__panel { grid-template-columns: 1fr; gap: 20px; }
	.kae-compare { grid-template-columns: 1fr; }
	.kae-stages { grid-template-columns: 1fr; gap: 0; }
	.kae-stages::before { left: 13px; right: auto; top: 10px; bottom: 10px; width: 2px; height: auto; background: linear-gradient(180deg, var(--navy-100), var(--gold-400)); }
	.kae-stages li { text-align: left; padding: 0 0 26px 46px; }
	.kae-stages li::before { left: 13px; top: 2px; }
	.kae-three { grid-template-columns: 1fr; }
	.kae-mini-grid { grid-template-columns: 1fr 1fr; }
	.kae-modules { grid-template-columns: 1fr; }
	.kae-duo { grid-template-columns: 1fr; }
	.kae-duo__plus { justify-self: center; }
	.kae-split-head { flex-direction: column; gap: 0; }
	.kae-split-head > p { order: -1; margin-bottom: 10px; }
	.kae-scatter li:nth-child(odd), .kae-scatter li:nth-child(even) { transform: none; }
}
@media (max-width: 640px) {
	body { font-size: 16px; }
	.kae-header__inner { min-height: 66px; }
	.kae-header__logo img { width: 128px; }
	.kae-jump { top: 66px; }
	.kae-plans, .kae-health, .kae-pillars, .kae-mini-grid { grid-template-columns: 1fr; }
	.kae-loop { grid-template-columns: 1fr 1fr; }
	.kae-loop li::after { display: none; }
	.kae-checks--2 { grid-template-columns: 1fr; }
	.kae-form__grid { grid-template-columns: 1fr; }
	.kae-cta-row .kae-btn { flex: 1 1 100%; }
	.kae-mock__body { grid-template-columns: 1fr; }
	.kae-mock__side { flex-direction: row; overflow: hidden; padding: 8px; }
	.kae-mock__side b { font-size: .72rem; padding: 5px 8px; }
	.kae-mock__stats strong { font-size: .95rem; }
	.kae-bars li { grid-template-columns: 96px 1fr 44px; font-size: .8rem; }
	.kae-vis__dl div { grid-template-columns: 1fr; gap: 2px; }
	.kae-footer__grid { grid-template-columns: 1fr 1fr; }
	.kae-org__row--4 { grid-template-columns: 1fr 1fr; }
	.kae-funnel li:nth-child(2), .kae-funnel li:nth-child(3) { margin: 0; }
	.kae-status-list li { align-items: flex-start; flex-direction: column; gap: 4px; }
	.kae-modules li { flex-direction: column; gap: 8px; }
	.kae-equation { flex-direction: column; gap: 6px; }
}
