/* ElevaRank website — brand: dark navy / deep yellow / white */
:root {
	--navy: #0e1129;
	--navy-soft: #1c2142;
	--yellow: #f2a900;
	--yellow-soft: #fff6e0;
	--ink: #1d2033;
	--muted: #6a6f85;
	--line: #e6e7ee;
	--bg: #f6f7fb;
	--radius: 14px;
	--shadow: 0 10px 40px rgba(14, 17, 41, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--yellow); }

.er-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.er-nav { background: var(--navy); position: sticky; top: 0; z-index: 50; }
.er-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.er-brand { display: flex; align-items: center; color: #fff; font-size: 19px; }
.er-logo-full { display: block; width: auto; height: 42px; }
.er-logo-mark { display: block; width: auto; }
.er-brand strong { color: var(--yellow); font-weight: 800; }
.er-brand span { font-weight: 600; }
.er-nav-links { display: flex; align-items: center; gap: 22px; }
.er-nav-links a { color: #c8cbe0; font-size: 14px; font-weight: 500; }
.er-nav-links a:hover, .er-nav-links a.active { color: #fff; }

/* Buttons */
.er-btn { display: inline-block; padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; border: 0; transition: transform .1s ease, background .15s ease; }
.er-btn:hover { transform: translateY(-1px); }
.er-btn-primary { background: var(--yellow); color: var(--navy) !important; }
.er-btn-primary:hover { background: #ffbb1a; }
.er-btn-navy { background: var(--navy); color: #fff !important; }
.er-btn-navy:hover { background: var(--navy-soft); }
.er-btn-ghost { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.25); }
.er-btn-ghost:hover { border-color: var(--yellow); }
.er-btn-outline { background: #fff; color: var(--navy) !important; border: 1px solid #c9ccda; }
.er-btn-outline:hover { border-color: var(--yellow); background: #fffdf5; }
.er-btn-block { display: block; width: 100%; text-align: center; }
.er-btn-lg { padding: 14px 28px; font-size: 16px; }

/* Hero */
.er-hero { background: radial-gradient(1200px 500px at 70% -10%, #1c2350 0%, var(--navy) 55%); color: #fff; padding: 84px 0 96px; }
.er-hero h1 { font-size: 52px; line-height: 1.1; margin: 0 0 18px; font-weight: 800; letter-spacing: -0.02em; }
.er-hero h1 .hl { color: var(--yellow); }
.er-hero p { font-size: 19px; color: #c8cbe0; max-width: 620px; margin: 0 0 30px; }
.er-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.er-hero-badges { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; color: #9aa0c0; font-size: 14px; }
.er-hero-badges b { color: var(--yellow); }

/* Sections */
.er-section { padding: 76px 0; }
.er-section h2 { font-size: 34px; text-align: center; margin: 0 0 12px; font-weight: 800; letter-spacing: -0.01em; }
.er-section .er-lead { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 48px; font-size: 17px; }

/* Feature grid */
.er-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.er-feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.er-feature .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--yellow-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.er-feature h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.er-feature p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Pricing */
.er-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 940px; margin: 0 auto; }
.er-price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; position: relative; }
.er-price.featured { border: 2px solid var(--yellow); box-shadow: var(--shadow); }
.er-price .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--navy); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.er-price h3 { margin: 0 0 6px; color: var(--navy); font-size: 20px; }
.er-price .amount { font-size: 40px; font-weight: 800; color: var(--navy); margin: 8px 0; }
.er-price .credits { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.er-price ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.er-price li { padding: 6px 0; font-size: 14px; color: var(--ink); }
.er-price li::before { content: "\2713"; color: #00a32a; font-weight: 700; margin-right: 8px; }

/* Cards / dashboard */
.er-page { padding: 46px 0 80px; }
.er-page h1 { font-size: 30px; margin: 0 0 6px; }
.er-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; box-shadow: 0 1px 3px rgba(14,17,41,.04); }
.er-card h2 { margin: 0 0 16px; font-size: 18px; color: var(--navy); }

.er-stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.er-stat { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 22px; }
.er-stat .label { color: #9aa0c0; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.er-stat .value { font-size: 30px; font-weight: 800; margin-top: 4px; }
.er-stat .value.yellow { color: var(--yellow); }

/* Forms */
.er-field { margin-bottom: 16px; }
.er-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.er-input { width: 100%; padding: 11px 13px; border: 1px solid #c9ccda; border-radius: 10px; font-size: 15px; }
.er-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,17,41,.08); }

/* Login box */
.er-login { max-width: 420px; margin: 60px auto; }
.er-login .er-card { text-align: center; }
.er-login .er-key { font-family: monospace; }

/* Tables */
.er-table { width: 100%; border-collapse: collapse; }
.er-table th, .er-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.er-table th { background: #fafbff; color: var(--navy); font-weight: 700; }
.er-table tbody tr:hover { background: #fafbff; }
.er-table code { background: #f0f1f7; padding: 2px 6px; border-radius: 5px; font-size: 12px; }

.er-badge { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.er-badge.active { background: #edfaef; color: #00892a; }
.er-badge.blocked { background: #fcecec; color: #d63638; }

.er-key-pill { font-family: monospace; background: var(--yellow-soft); border: 1px solid var(--yellow); color: var(--navy); padding: 6px 12px; border-radius: 8px; display: inline-block; }

.er-notice { padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; }
.er-notice.ok { background: #edfaef; color: #00722a; border: 1px solid #b8e6c2; }
.er-notice.err { background: #fcecec; color: #b32020; border: 1px solid #f0c0c0; }

.er-muted { color: var(--muted); }
.er-inline-form { display: flex; gap: 8px; align-items: center; }
.er-inline-form .er-input { width: auto; padding: 6px 9px; }

/* Footer */
.er-footer { background: var(--navy); color: #c8cbe0; padding: 40px 0; margin-top: 40px; }
.er-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.er-footer-brand strong { color: var(--yellow); }
.er-footer p { margin: 4px 0; font-size: 14px; }
.er-footer a { color: var(--yellow); }

@media (max-width: 860px) {
	.er-grid, .er-pricing { grid-template-columns: 1fr; }
	.er-hero h1 { font-size: 38px; }
	.er-nav-links a:not(.er-btn) { display: none; }
}

/* Admin dashboard sidebar layout */
.er-admin-layout { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 30px; align-items: flex-start; }
.er-admin-side { width: 214px; flex: none; position: sticky; top: 24px; background: var(--navy, #0e1129); border-radius: 16px; padding: 20px 12px; min-height: 74vh; box-shadow: 0 10px 30px rgba(14,17,41,.16); }
.er-side-title { font-size: 11px; text-transform: uppercase; letter-spacing: .7px; color: #6b7192; margin: 2px 0 14px 12px; }
.er-side-link { display: block; padding: 10px 14px; border-radius: 10px; color: #ced3e8; text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 3px; transition: background .12s, color .12s; }
.er-side-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.er-side-link.active { background: var(--yellow, #f2a900); color: var(--navy, #0e1129); }
.er-side-sub { padding-left: 28px; font-size: 13px; font-weight: 500; color: #a7adca; }
.er-side-sub.active { padding-left: 28px; }
.er-side-group { margin-top: 4px; }
.er-admin-main { flex: 1; min-width: 0; }
.er-admin-main > h1 { font-size: 30px; margin: 0 0 6px; }
@media (max-width: 820px) {
	.er-admin-layout { flex-direction: column; }
	.er-admin-side { width: 100%; position: static; min-height: 0; display: flex; flex-wrap: wrap; gap: 4px; }
	.er-side-title { width: 100%; }
	.er-side-sub { padding-left: 14px; }
}

/* ============================================================
   Landing page v2 — centred hero, product shot, steps, FAQ
   Brand only: --navy #0e1129 / --yellow #f2a900 / white
   ============================================================ */

/* Centred hero */
.er-hero-center { text-align: center; padding: 70px 0 0; overflow-x: clip; }
.er-hero-center .er-container { max-width: 1000px; }
.er-eyebrow {
	display: inline-block; text-transform: uppercase; letter-spacing: .12em;
	font-size: 12.5px; font-weight: 800; color: var(--yellow);
	background: rgba(242,169,0,.1); border: 1px solid rgba(242,169,0,.3);
	padding: 7px 16px; border-radius: 30px; margin-bottom: 26px;
}
.er-hero-center h1 {
	font-size: 58px; line-height: 1.08; font-weight: 800;
	letter-spacing: -0.025em; margin: 0 auto 22px; max-width: 15ch;
}
.er-hero-center h1 .u {
	position: relative; white-space: nowrap; color: #fff;
}
.er-hero-center h1 .u::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
	height: 5px; border-radius: 4px; background: var(--yellow);
}
.er-hero-center .er-hero-sub {
	font-size: 19.5px; color: #c8cbe0; max-width: 640px; margin: 0 auto 36px;
}
.er-cta-stack { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.er-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.er-btn-hero {
	padding: 18px 44px; font-size: 17px; font-weight: 800; border-radius: 44px;
	letter-spacing: .01em; box-shadow: 0 12px 30px rgba(242,169,0,.28);
}
.er-hero-link {
	color: #fff !important; font-size: 15px; font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px;
}
.er-hero-link:hover { color: var(--yellow) !important; border-color: var(--yellow); }

/* Factual trust strip under the CTA */
.er-trust {
	margin-top: 34px; display: flex; gap: 12px 30px; flex-wrap: wrap;
	justify-content: center; color: #9aa0c0; font-size: 14px;
}
.er-trust span { display: inline-flex; align-items: center; gap: 7px; }
.er-trust svg { flex: none; }
.er-trust b { color: #fff; font-weight: 700; }

/* Product shot that bleeds into the next section */
.er-container-wide, .er-hero-center .er-container-wide { max-width: 1280px; }
.er-shot-wrap { margin-top: 58px; padding-bottom: 0; position: relative; }
/* Full-bleed white band behind the bottom half, so the mockup straddles a
   50 / 50 split: top half on the navy hero, bottom half on white. */
.er-shot-wrap::before {
	content: ''; position: absolute; left: calc(50% - 50vw); width: 100vw;
	top: 50%; bottom: 0; background: #fff; z-index: 0;
}
.er-shot {
	max-width: 1240px; margin: 0 auto; background: #fff; position: relative; z-index: 1;
	border-radius: 14px; box-shadow: 0 -2px 0 rgba(255,255,255,.12), 0 30px 70px rgba(0,0,0,.45);
	overflow: hidden; text-align: left;
}
.er-shot-bar {
	background: #23272e; padding: 13px 20px; display: flex; align-items: center; gap: 9px;
}
.er-shot-bar i { width: 13px; height: 13px; border-radius: 50%; background: #4b5158; display: block; }
.er-shot-bar .t { color: #a7adba; font-size: 14px; margin-left: 12px; }
.er-shot-body { display: flex; min-height: 440px; }
.er-shot-side { width: 218px; flex: none; background: #1d2327; padding: 14px 0; }
.er-shot-side .s {
	color: #c3c4c7; font-size: 14.5px; padding: 10px 18px; display: flex; gap: 9px; align-items: center;
}
.er-shot-side .s.on { background: var(--yellow); color: var(--navy); font-weight: 700; }
.er-shot-main { flex: 1; padding: 28px 32px; background: #f0f0f1; min-width: 0; }
.er-shot-h { font-size: 21px; font-weight: 700; color: var(--navy); margin: 0 0 20px; }
.er-shot-cards { display: grid; grid-template-columns: 178px 1fr; gap: 20px; }
.er-shot-col { display: flex; flex-direction: column; gap: 14px; }
.er-score {
	background: var(--navy); border-radius: 14px; padding: 22px 16px; text-align: center; color: #fff;
	flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.er-mini {
	background: #fff; border: 1px solid #dcdcde; border-radius: 12px; padding: 11px 15px; flex: none;
}
.er-mini .n { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.er-mini .l { font-size: 12px; color: #6a6f85; }
.er-score .n { font-size: 54px; font-weight: 800; color: var(--yellow); line-height: 1; }
.er-score .l { font-size: 12.5px; color: #9aa0c0; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }
.er-issues { background: #fff; border: 1px solid #dcdcde; border-radius: 14px; padding: 8px 20px; display: flex; flex-direction: column; justify-content: center; }
.er-issue {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	padding: 14px 0; border-bottom: 1px solid #f0f0f1; font-size: 15px; color: #2c3338;
}
.er-issue:last-child { border-bottom: 0; }
.er-issue .fix {
	background: var(--yellow); color: var(--navy); font-size: 12.5px; font-weight: 800;
	padding: 5px 14px; border-radius: 20px; flex: none;
}
.er-issue .dot { width: 8px; height: 8px; border-radius: 50%; background: #d63638; flex: none; margin-right: 8px; }
.er-issue .dot.warn { background: var(--yellow); }

/* --- WordPress-style dashboard mockup --- */
.er-shot-wp .wpab {
	background: #1d2327; display: flex; align-items: center; height: 36px;
	color: #c3c4c7; font-size: 13px;
}
.er-shot-wp .wpab-i { display: flex; align-items: center; gap: 5px; padding: 0 11px; height: 36px; white-space: nowrap; }
.er-shot-wp .wpab .dashicons { font-size: 18px; width: 18px; height: 18px; line-height: 1; color: #c3c4c7; }
.er-shot-wp .wpab-logo { padding: 0 10px; }
.er-shot-wp .wpab-r { margin-left: auto; padding: 0 12px; display: flex; align-items: center; gap: 6px; }
.wpmenu { width: 200px; flex: none; background: #1d2327; padding-bottom: 20px; }
.wpmi {
	display: flex; align-items: center; gap: 8px; color: #c3c4c7; font-size: 14px;
	padding: 9px 12px; cursor: default; transition: background .12s, color .12s;
}
.wpmi .dashicons { font-size: 19px; width: 20px; height: 20px; line-height: 1; color: #a7aaad; }
.wpmi .wpmi-logo { width: 20px; height: 20px; object-fit: contain; border-radius: 3px; }
.wpmi:hover { background: #2c3338; color: #72aee6; }
.wpmi:hover .dashicons { color: #72aee6; }
.wpmi.wpmi-on { background: #2271b1; color: #fff; font-weight: 600; }
.wpmi.wpmi-on .dashicons { color: #fff; }
.wpsub { background: #2c3338; padding: 5px 0 8px; }
.wpsub a { display: block; color: #c3c4c7; font-size: 13px; padding: 6px 12px 6px 40px; cursor: default; }
.wpsub a:hover { color: #72aee6; }
.wpsub a.cur { color: #fff; font-weight: 600; }
.wpsub-sec { color: #8c8f94; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; padding: 11px 12px 4px 40px; }
.wp-credit {
	background: #fff; border-left: 4px solid var(--yellow); border-radius: 6px;
	padding: 12px 16px; margin-bottom: 20px; font-size: 14px; color: #2c3338;
	box-shadow: 0 1px 1px rgba(0,0,0,.04); display: flex; align-items: center; gap: 6px;
}
.wp-credit .dashicons { color: var(--yellow); font-size: 18px; }
.wp-credit .lk { color: #2271b1; font-weight: 600; margin-left: 8px; }
.wp-credit .lk:hover, .wp-hint a:hover { color: #135e96; text-decoration: underline; }
.wp-idx { background: #fff; border: 1px solid #dcdcde; border-radius: 14px; padding: 18px 20px; margin-top: 20px; }
.wp-idx-h { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.wp-idx-bar { display: flex; height: 9px; border-radius: 6px; overflow: hidden; margin-bottom: 14px; }
.wp-idx-bar i { display: block; height: 100%; }
.wp-idx-bar .g { flex: 7; background: #00a32a; }
.wp-idx-bar .y { flex: 4; background: var(--yellow); }
.wp-idx-bar .r { flex: 2; background: #d63638; }
.wp-idx-nums { display: flex; gap: 26px; flex-wrap: wrap; }
.wp-idx-nums div { display: flex; flex-direction: column; }
.wp-idx-nums b { font-size: 24px; font-weight: 800; color: #00a32a; line-height: 1.1; }
.wp-idx-nums b.y { color: #b8860b; }
.wp-idx-nums b.r { color: #d63638; }
.wp-idx-nums span { font-size: 12px; color: #6a6f85; }
/* Clickable menu items in the mockup */
.wpmi-link { cursor: pointer; }
/* Plugins panel (WP "Add Plugins" screen) */
.wp-plug-top h3 { font-size: 21px; font-weight: 700; color: #1d2327; margin: 0 0 6px; display: flex; align-items: center; gap: 12px; }
.wp-plug-top > p { margin: 0 0 14px; font-size: 13.5px; color: #50575e; }
.wp-btn-sec { background: #f6f7f7; border: 1px solid #2271b1; color: #2271b1; font-size: 12.5px; font-weight: 500; padding: 5px 12px; border-radius: 4px; }
.wp-btn-pri { background: #f6f7f7; border: 1px solid #2271b1; color: #2271b1; font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 4px; display: inline-block; }
.wp-plug-tabs { display: flex; align-items: center; gap: 20px; border-bottom: 1px solid #c3c4c7; padding-bottom: 0; margin-bottom: 22px; flex-wrap: wrap; font-size: 13.5px; color: #50575e; }
.wp-plug-tabs span { padding: 8px 0; }
.wp-plug-tabs span.on { color: #1d2327; font-weight: 600; box-shadow: inset 0 -3px 0 #2271b1; }
.wp-plug-search { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.wp-plug-search i { font-style: normal; background: #fff; border: 1px solid #2271b1; box-shadow: 0 0 0 2px #b8d5ea; border-radius: 3px; padding: 4px 12px; color: #1d2327; min-width: 140px; }
.wp-plug-card { background: #fff; border: 1px solid #dcdcde; border-radius: 4px; max-width: 620px; }
.wp-plug-body { display: flex; gap: 16px; padding: 20px; align-items: flex-start; }
.wp-plug-icon { width: 108px; height: 108px; object-fit: contain; flex: none; }
.wp-plug-txt { flex: 1; min-width: 0; }
.wp-plug-txt h4 { margin: 0 0 8px; font-size: 19px; color: #2271b1; font-weight: 600; }
.wp-plug-txt p { margin: 0 0 8px; font-size: 13.5px; color: #3c434a; line-height: 1.5; }
.wp-plug-txt .by { font-style: italic; color: #50575e; margin: 0; }
.wp-plug-txt .by em { color: #2271b1; font-style: italic; }
.wp-plug-act { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wp-plug-act .more { color: #2271b1; font-size: 13px; }
.wp-plug-foot { border-top: 1px solid #dcdcde; background: #f6f7f7; padding: 12px 20px; display: flex; gap: 22px; flex-wrap: wrap; font-size: 12.5px; color: #50575e; }
.wp-plug-foot .stars { color: var(--yellow); letter-spacing: 1px; }
.wp-plug-foot .stars b { color: #1d2327; letter-spacing: 0; }
/* Settings panel (mimics the real plugin settings screen) */
.wp-set-h { font-size: 21px; font-weight: 700; color: #1d2327; margin: 0 0 8px; }
.wp-set-links { font-size: 13px; color: #50575e; margin: 0 0 22px; line-height: 2; }
.wp-set-links a { color: #2271b1; }
.wp-set-sec { font-size: 16px; font-weight: 700; color: #1d2327; margin: 24px 0 12px; }
.wp-set-row { display: flex; gap: 20px; padding: 11px 0; align-items: flex-start; }
/* display:flex above would beat the UA [hidden] rule — keep hidden rows hidden */
.er-shot-wp [hidden] { display: none !important; }
.wp-set-lbl { width: 190px; flex: none; font-size: 13.5px; font-weight: 600; color: #1d2327; padding-top: 6px; }
.wp-set-fld { flex: 1; min-width: 0; font-size: 13.5px; color: #3c434a; }
.wp-inp { border: 1px solid #8c8f94; border-radius: 4px; padding: 6px 10px; font-size: 13.5px; background: #fff; color: #2c3338; min-width: 260px; }
.wp-inp.wide { width: 100%; max-width: 420px; }
.wp-radio { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; line-height: 1.5; }
.wp-radio input { margin-top: 3px; flex: none; }
.wp-hint { font-size: 12.5px; color: #646970; margin: 6px 0 0; }
.wp-hint a { color: #2271b1; }
.wp-res { font-size: 13px; margin-left: 10px; color: #646970; }
.wp-res.ok { color: #00792b; font-weight: 600; }
.wp-btn-save { background: #2271b1; border: 1px solid #2271b1; color: #fff; font-size: 13.5px; font-weight: 500; padding: 7px 18px; border-radius: 4px; display: inline-block; }
.wp-set-save { margin-top: 20px; }
/* Per-page SEO metabox demo */
.er-mb { background: #fff; border: 1px solid #dcdcde; border-radius: 6px; }
.er-mb-head { padding: 12px 16px; border-bottom: 1px solid #dcdcde; font-weight: 600; font-size: 14px; color: #1d2327; }
.er-mb-tabs { display: flex; gap: 4px; background: var(--navy); margin: 14px 16px; border-radius: 10px; padding: 5px; flex-wrap: wrap; }
.er-mb-tabs span { color: #c8cbe0; font-size: 12.5px; padding: 7px 12px; border-radius: 7px; }
.er-mb-tabs span.on { background: var(--yellow); color: var(--navy); font-weight: 700; }
.er-mb-body { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 4px 16px 18px; }
.er-mb-score { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.er-mb-score .sc { background: var(--yellow); color: var(--navy); font-weight: 800; font-size: 15px; border-radius: 20px; padding: 3px 13px; }
.er-mb-score .lb { font-size: 13.5px; font-weight: 600; color: #1d2327; }
.er-optimize { margin-left: auto; background: #2271b1; color: #fff; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 5px; cursor: pointer; }
.er-mb-lbl { font-size: 12.5px; font-weight: 700; color: #1d2327; margin: 12px 0 5px; display: block; }
.er-cnt { font-weight: 400; color: #646970; font-style: normal; font-size: 11.5px; }
.er-gp { border: 1px solid #dcdcde; border-radius: 8px; padding: 12px; }
.er-gp-site { display: flex; gap: 8px; align-items: center; font-size: 11.5px; color: #1d2327; margin-bottom: 6px; }
.er-gp-site i { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: var(--yellow); font-style: normal; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 12px; flex: none; }
.er-gp-site em { color: #4d5156; font-style: normal; font-size: 11px; }
.er-gp-title { color: #1a0dab; font-size: 16px; line-height: 1.3; margin-bottom: 3px; }
.er-gp-desc { color: #4d5156; font-size: 12.5px; line-height: 1.5; }
.er-inp { width: 100%; border: 1px solid #8c8f94; border-radius: 4px; padding: 7px 10px; font-size: 13px; color: #2c3338; background: #fff; font-family: inherit; resize: none; }
.er-inp.flash { background: #fffbe6; border-color: var(--yellow); }
.er-bar { height: 4px; background: #e6e7ee; border-radius: 3px; margin-top: 5px; overflow: hidden; }
.er-bar i { display: block; height: 100%; width: 0; background: #00a32a; transition: width .12s linear; }
.er-bar.warn i { background: var(--yellow); }
.er-bar.red i { background: #d63638; }
.er-mb-hint { font-size: 11.5px; color: #646970; margin-top: 10px; }
.er-aians { border: 1px solid #dcdcde; border-radius: 8px; padding: 12px; margin-bottom: 6px; }
.er-aians b { font-size: 13px; color: #1d2327; }
.er-aians p { font-size: 12px; color: #50575e; margin: 4px 0 9px; }
.er-btn-ghost { border: 1px solid #2271b1; color: #2271b1; font-size: 12px; padding: 5px 12px; border-radius: 4px; display: inline-block; }
.er-grp { font-size: 13px; font-weight: 700; color: #1d2327; margin: 16px 0 8px; }
.er-chk { display: flex; gap: 8px; align-items: flex-start; padding: 7px 0; font-size: 12.5px; color: #3c434a; line-height: 1.5; flex-wrap: wrap; }
.er-chk .er-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; margin-top: 5px; }
.er-chk.bad .er-dot { background: #d63638; }
.er-chk.warn .er-dot { background: var(--yellow); }
.er-chk.good .er-dot { background: #00a32a; }
.er-chk-t { flex: 1; min-width: 0; }
.er-chk.good .er-chk-t { color: #6a6f85; }
.er-fix { background: #fff8e1; border: 1px solid var(--yellow); color: #8a6100; font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 5px; cursor: pointer; flex: none; }
.er-fix.busy { opacity: .6; }
@media (max-width: 980px) { .er-mb-body { grid-template-columns: 1fr; } }
/* Tab status dots */
.er-mb-tabs span { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.er-mb-tabs .d { width: 8px; height: 8px; border-radius: 50%; display: block; flex: none; }
.er-mb-tabs .d.y { background: var(--yellow); } .er-mb-tabs .d.r { background: #d63638; }
.er-mb-tabs .d.g { background: #00a32a; } .er-mb-tabs .d.b { background: #fff; }
.er-mb-tabs .d.n { background: #8c8f94; } .er-mb-tabs .d.w { background: #fff; }
.er-mb-single { padding: 4px 16px 20px; }
/* AI Overviews */
.er-mb-score .sc.red { background: #d63638; color: #fff; }
.er-ai-card { border: 1px solid #dcdcde; border-radius: 8px; padding: 14px; }
.er-ai-sum { font-size: 12.5px; color: #50575e; line-height: 1.6; margin: 0 0 12px; }
.er-ai-h { font-size: 13px; font-weight: 700; color: #1d2327; margin: 14px 0 8px; }
.er-q { padding: 7px 0 7px 24px; position: relative; font-size: 12.5px; line-height: 1.5; }
.er-q::before { position: absolute; left: 0; top: 6px; width: 17px; height: 17px; border-radius: 4px;
	display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.er-q.bad::before { content: "\2715"; background: #fcecec; color: #d63638; }
.er-q.good::before { content: "\2713"; background: #edfaef; color: #00a32a; }
.er-q b { display: block; color: #1d2327; }
.er-q i { color: #646970; font-size: 12px; }
.er-ai-ol { margin: 0; padding-left: 20px; font-size: 12.5px; color: #3c434a; line-height: 1.6; }
.er-ai-ol li { margin-bottom: 6px; }
.er-btn-blue { background: #2271b1; color: #fff; font-size: 12.5px; font-weight: 600; padding: 8px 15px;
	border-radius: 5px; display: inline-block; cursor: pointer; }
.er-faq-out { margin-top: 14px; background: #f6f7f7; border: 1px solid #dcdcde; border-radius: 6px;
	padding: 12px; font-size: 12px; color: #2c3338; white-space: pre-wrap; line-height: 1.6; }
/* Social */
.er-soc-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 6px; }
.er-soc-ph { width: 150px; height: 84px; border: 2px dashed #c3c4c7; border-radius: 8px; flex: none;
	display: flex; align-items: center; justify-content: center; background: #fafafa; }
.er-soc-ph .dashicons { font-size: 30px; width: 30px; height: 30px; color: #c3c4c7; }
.er-social { border: 1px solid #dcdcde; border-radius: 8px; overflow: hidden; max-width: 440px; }
.er-social-img { height: 110px; background: #f0f0f1; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.er-social-b { padding: 10px 12px; }
.er-social-b em { display: block; font-style: normal; text-transform: uppercase; font-size: 11px; color: #8c8f94; }
.er-social-b b { display: block; font-size: 14px; color: #1d2327; margin: 3px 0; }
.er-social-b span { font-size: 12px; color: #50575e; }
/* Schema */
.er-code { background: var(--navy); color: #c8cbe0; font-size: 11.5px; border-radius: 8px;
	padding: 12px 14px; overflow-x: auto; line-height: 1.55; margin: 0; }
/* Smart Links */
.er-sl-h { font-size: 15px; font-weight: 700; color: #1d2327; margin: 6px 0 8px; }
.er-sl-box { border: 1px solid #dcdcde; border-radius: 8px; margin-top: 14px; }
.er-sl { display: flex; gap: 10px; padding: 11px 14px; border-bottom: 1px solid #f0f0f1;
	font-size: 12.5px; transition: opacity .25s ease; }
.er-sl:last-child { border-bottom: 0; }
.er-cb { width: 16px; height: 16px; border: 1px solid #2271b1; border-radius: 3px; color: #2271b1;
	font-size: 11px; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.er-sl b { color: #1d2327; } .er-sl a { color: #2271b1; text-decoration: underline; }
.er-sl i { display: block; color: #646970; font-size: 12px; font-style: normal; margin-top: 2px; }
.er-sl.ins { background: #f6fbf7; }
.er-sl.ins .er-cb { background: #00a32a; border-color: #00a32a; color: #fff; }
#sl-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
/* AI Writer */
.er-wr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.er-wr-card { background: #fff; border: 1px solid #dcdcde; border-radius: 6px; padding: 18px; }
.er-wr-card h4 { margin: 0 0 12px; font-size: 15px; font-weight: 700; color: #1d2327; }
.er-wr-card .wp-set-lbl { width: 150px; }
.wp-inp.short { min-width: 110px; }
.er-wr-go { background: var(--navy); color: #fff; font-size: 13px; font-weight: 600;
	padding: 10px 18px; border-radius: 5px; display: inline-block; cursor: pointer; }
.er-wr-done { margin-top: 14px; background: #fff8e1; border-left: 4px solid var(--yellow);
	border-radius: 5px; padding: 10px 14px; font-size: 12.5px; color: #3c434a; }
.er-wr-done a { color: #2271b1; text-decoration: underline; }
.er-wr-tp { margin-top: 12px; font-size: 12.5px; color: #3c434a; line-height: 2; }
/* Edit Post */
.er-ep { display: grid; grid-template-columns: 1fr 240px; gap: 20px; }
.er-ep-title { width: 100%; border: 1px solid #8c8f94; border-radius: 4px; padding: 10px 12px;
	font-size: 18px; color: #1d2327; background: #fff; margin-bottom: 6px; }
.er-ep-tools { display: flex; align-items: center; gap: 10px; margin: 12px 0 0; }
.er-ep-tabs { margin-left: auto; display: flex; }
.er-ep-tabs b, .er-ep-tabs span { font-size: 12.5px; padding: 6px 14px; border: 1px solid #dcdcde;
	background: #f6f7f7; color: #50575e; font-weight: 400; }
.er-ep-tabs b { background: #fff; color: #1d2327; border-bottom-color: #fff; font-weight: 600; }
.er-ep-body { border: 1px solid #dcdcde; border-top: 0; background: #fff; padding: 16px 18px;
	font-size: 13.5px; color: #2c3338; line-height: 1.7; }
.er-ep-body h4 { font-size: 17px; color: #1d2327; margin: 18px 0 8px; }
.er-ep-body p { margin: 0 0 12px; }
.er-ep-body ul { margin: 0 0 12px; padding-left: 20px; }
.er-ep-body li { margin-bottom: 5px; }
.er-ep-side { display: flex; flex-direction: column; gap: 14px; }
.er-ep-box { background: #fff; border: 1px solid #dcdcde; border-radius: 4px; padding: 12px 14px; }
.er-ep-box > b { display: block; font-size: 13.5px; color: #1d2327; padding-bottom: 8px;
	border-bottom: 1px solid #dcdcde; margin-bottom: 10px; }
.er-ep-btns { display: flex; gap: 8px; margin: 0 0 10px; }
.er-ep-meta { font-size: 12.5px; color: #50575e; line-height: 1.9; margin: 0 0 10px; }
.er-cb.off { color: transparent; }
@media (max-width: 980px) { .er-wr-grid, .er-ep { grid-template-columns: 1fr; } }

/* Section that receives the overlapping shot */
.er-section-shot { padding-top: 250px; }

/* How it works */
.er-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
.er-step { text-align: center; padding: 0 8px; }
.er-step .n {
	width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--yellow);
	font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px;
}
.er-step h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.er-step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* FAQ */
.er-faq { max-width: 780px; margin: 0 auto; }
.er-faq details {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 0 22px; margin-bottom: 12px;
}
.er-faq summary {
	cursor: pointer; list-style: none; padding: 18px 30px 18px 0; position: relative;
	font-weight: 700; color: var(--navy); font-size: 16px;
}
.er-faq summary::-webkit-details-marker { display: none; }
.er-faq summary::after {
	content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
	color: var(--yellow); font-size: 24px; font-weight: 700; line-height: 1;
}
.er-faq details[open] summary::after { content: "\2013"; }
.er-faq p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }

/* Closing CTA band */
.er-cta-band {
	background: radial-gradient(900px 380px at 50% -30%, #1c2350 0%, var(--navy) 60%);
	color: #fff; text-align: center; padding: 74px 0;
}
.er-cta-band h2 { font-size: 34px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
.er-cta-band p { color: #c8cbe0; font-size: 17px; max-width: 560px; margin: 0 auto 30px; }

@media (max-width: 860px) {
	.er-hero-center h1 { font-size: 36px; }
	.er-hero-center .er-hero-sub { font-size: 17px; }
	.er-btn-hero { padding: 16px 32px; font-size: 16px; }
	.er-steps { grid-template-columns: 1fr; }
	.er-shot { margin-bottom: 0; }
	.er-section-shot { padding-top: 130px; }
	.er-shot-side, .wpmenu { display: none; }
	.er-shot-wp .wpab-i:nth-child(2) .dashicons { display: none; }
	.er-shot-wp .wpab-r { font-size: 12px; }

	/* The desktop shot is scaled up; bring its internals back down on phones. */
	.er-shot-bar { padding: 10px 14px; }
	.er-shot-bar i { width: 10px; height: 10px; }
	.er-shot-bar .t { font-size: 12px; margin-left: 8px; }
	.er-shot-body { min-height: 0; }
	.er-shot-main { padding: 16px; }
	.er-shot-h { font-size: 16px; margin-bottom: 14px; }
	.er-shot-cards { grid-template-columns: 1fr; gap: 12px; }
	.er-shot-col { flex-direction: row; gap: 10px; }
	.er-score { flex: 1; padding: 14px 8px; border-radius: 12px; }
	.er-score .n { font-size: 30px; }
	.er-score .l { font-size: 10.5px; }
	.er-mini { flex: 1; padding: 10px 12px; }
	.er-mini .n { font-size: 19px; }
	.er-mini .l { font-size: 11px; }
	.er-issues { padding: 4px 14px; }
	.er-issue { font-size: 13px; padding: 10px 0; gap: 10px; }
	.er-issue .fix { font-size: 11px; padding: 3px 10px; }
	.er-cta-band h2 { font-size: 26px; }
}

/* ============================================================
   Footer v2 — four columns + bottom bar
   ============================================================ */
.er-footer { background: var(--navy); color: #9aa0c0; padding: 60px 0 0; margin-top: 0; }
.er-footer-grid {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px;
}
.er-footer-about p { color: #9aa0c0; font-size: 14.5px; margin: 14px 0 20px; max-width: 300px; }
.er-footer .er-footer-brand {
	display: flex; align-items: center; gap: 10px; color: #fff; font-size: 19px; font-weight: 600; margin: 0;
}
.er-footer .er-footer-brand strong { color: var(--yellow); font-weight: 800; }
.er-footer-col h4 {
	color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase;
	letter-spacing: .1em; margin: 4px 0 16px;
}
.er-footer-col ul { list-style: none; margin: 0; padding: 0; }
.er-footer-col li { margin-bottom: 11px; }
.er-footer-col a { color: #9aa0c0; font-size: 14.5px; }
.er-footer-col a:hover { color: var(--yellow); }
.er-footer-badge {
	display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #c8cbe0;
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
	padding: 8px 14px; border-radius: 30px;
}
.er-footer-badge b { color: var(--yellow); }
.er-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0 28px;
	display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.er-footer-bottom p { margin: 0; font-size: 13.5px; color: #7c8199; }
.er-footer-bottom a { color: #c8cbe0; }
.er-footer-bottom a:hover { color: var(--yellow); }
.er-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; }

@media (max-width: 860px) {
	.er-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
	.er-footer-about { grid-column: 1 / -1; }
	.er-footer-bottom { flex-direction: column; text-align: center; }
}


/* Footer brand is the full lockup image */
.er-footer .er-footer-brand { display: block; margin: 0; }
.er-footer .er-footer-brand .er-logo-full { height: 58px; }

@media (max-width: 860px) {
	.er-logo-full { height: 34px; }
	.er-footer .er-footer-brand .er-logo-full { height: 40px; }
}

/* ============================================================
   Scroll motion. Everything that starts hidden is scoped to
   html.er-motion, which motion.js only adds when it runs and the
   visitor has not asked for reduced motion — so with JS off, or
   with reduced motion on, the page renders exactly as before.
   ============================================================ */
.er-logo-full, .er-shot, .er-hero-inner { backface-visibility: hidden; }

html.er-motion .er-hero-inner { will-change: transform, opacity; transform-origin: 50% 0%; }
html.er-motion .er-shot { will-change: transform; transform-origin: 50% 100%; }

/* Headline: characters rise into place */
html.er-motion .er-hero-center h1.is-split .er-ch {
	display: inline-block;
	animation: er-ch-in .7s cubic-bezier(.2,.75,.3,1) both;
}
@keyframes er-ch-in {
	from { opacity: 0; transform: translateY(0.45em); }
	to   { opacity: 1; transform: none; }
}

/* Blocks fade up as they enter the viewport */
html.er-motion .er-reveal {
	opacity: 0;
	transform: translateY(22px);
}
html.er-motion .er-reveal.is-in {
	opacity: 1;
	transform: none;
	transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1);
	transition-delay: calc(var(--er-i, 0) * 80ms);
}

/* Safety net: if the class ever ships without the script, show everything. */
@media (prefers-reduced-motion: reduce) {
	html.er-motion .er-reveal { opacity: 1; transform: none; transition: none; }
	html.er-motion .er-hero-center h1.is-split .er-ch { animation: none; }
	html.er-motion .er-hero-inner, html.er-motion .er-shot { transform: none !important; opacity: 1 !important; }
}


/* v1.11 site refresh — version pill + anchor offsets */
.er-version-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(242, 169, 0, .13);
	border: 1px solid rgba(242, 169, 0, .45);
	color: #ffd77a;
	border-radius: 999px;
	padding: 7px 15px;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 20px;
}
.er-version-pill b { color: #fff; font-weight: 700; }
.er-version-pill b.y { color: var(--yellow); }
section[id] { scroll-margin-top: 86px; }
@media (max-width: 720px) {
	.er-version-pill { font-size: 12.5px; padding: 6px 12px; }
}

/* Dark pricing band (navy, matches hero) */
.er-section-dark { background: radial-gradient(1100px 520px at 72% -10%, #1c2350 0%, var(--navy) 60%); }
.er-section-dark h2 { color: #fff; }
.er-section-dark .er-lead { color: #c8cbe0; }
.er-section-dark .er-price { background: rgba(255, 255, 255, .045); border-color: rgba(255, 255, 255, .14); }
.er-section-dark .er-price.featured { border-color: var(--yellow); background: rgba(242, 169, 0, .07); box-shadow: 0 18px 50px rgba(0, 0, 0, .35); }
.er-section-dark .er-price h3 { color: #fff; }
.er-section-dark .er-price .amount { color: #fff; }
.er-section-dark .er-price .credits { color: #9aa0c0; }
.er-section-dark .er-price li { color: #d5d9ea; }
.er-section-dark .er-price li::before { color: #4ecb64; }
.er-section-dark .er-price .tag { background: var(--yellow); color: var(--navy); }

/* "It's 100% free" hero stamp */
.er-hero-inner { position: relative; }
.er-free-stamp {
	position: absolute;
	right: -14px;
	top: 8%;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	border: 3px solid var(--yellow);
	outline: 1px dashed rgba(242, 169, 0, .55);
	outline-offset: 6px;
	background: rgba(242, 169, 0, .08);
	box-shadow: 0 12px 34px rgba(242, 169, 0, .16);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: rotate(12deg);
	line-height: 1.1;
	text-align: center;
}
.er-free-stamp .stamp-big {
	font-size: 31px;
	font-weight: 900;
	letter-spacing: -.02em;
	color: #fff;
}
.er-free-stamp .stamp-sub {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: .14em;
	color: var(--yellow);
	margin-top: 4px;
}
@media (max-width: 1100px) {
	.er-free-stamp { display: none; }
}

	position: absolute;
	right: -16px;
	top: 40%;
	width: 148px;
	height: 148px;
	z-index: 3;
}
@media (max-width: 1100px) {
}

/* Gentle motion for the stamp + arrow (kept subtle; respects reduced motion) */
	50% { transform: translateY(-9px); }
}
@keyframes er-stamp-breathe {
	0%, 100% { box-shadow: 0 12px 34px rgba(242, 169, 0, .16); }
	50% { box-shadow: 0 14px 40px rgba(242, 169, 0, .30); }
}
.er-free-stamp { animation: er-stamp-breathe 3.2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
}

/* Arrow repositioned: tucked at the stamp's lower-left, swooshing up into it */
	position: absolute;
	left: -54px;
	top: 62%;
	width: 92px;
	height: 92px;
	z-index: 4;
}

/* Help center */
.er-hc { background: #fff; border-bottom: 1px solid var(--line); padding: 66px 0 38px; text-align: center; }
.er-hc h1 { font-size: 44px; letter-spacing: -.02em; font-weight: 800; color: var(--navy); margin: 0 0 10px; }
.er-hc-sub { color: var(--muted); font-size: 17px; margin: 0 0 26px; }
.er-hc-form { display: flex; gap: 12px; max-width: 640px; margin: 0 auto 24px; }
.er-hc-search { position: relative; flex: 1; }
.er-hc-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
.er-hc-input { width: 100%; padding: 13px 14px 13px 42px; border: 1px solid #c9ccda; border-radius: 12px; font-size: 15px; }
.er-hc-input:focus { outline: 2px solid rgba(242, 169, 0, .45); border-color: var(--yellow); }
.er-hc-count { color: var(--muted); font-size: 14px; margin: -6px 0 16px; }
.er-hc-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.er-chip { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 9px; padding: 9px 16px; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .12s, color .12s; }
.er-chip:hover { border-color: var(--yellow); }
.er-hc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.er-hc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; scroll-margin-top: 92px; }
.er-hc-card h2 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.er-hc-card p, .er-hc-card li { color: var(--muted); }
.er-hc-hidden { display: none; }
@keyframes er-hc-flash { 0% { outline: 3px solid var(--yellow); outline-offset: 2px; } 100% { outline: 3px solid transparent; outline-offset: 2px; } }
.er-hc-flash { animation: er-hc-flash 1.5s ease-out 1; }
@media (max-width: 820px) {
	.er-hc { padding: 44px 0 30px; }
	.er-hc h1 { font-size: 31px; }
	.er-hc-form { flex-direction: column; }
	.er-hc-grid { grid-template-columns: 1fr; }
}

.er-hc-card h3 { font-size: 16px; margin: 18px 0 6px; color: var(--navy); font-weight: 700; }
.er-hc-card code { background: var(--yellow-soft); border: 1px solid rgba(242,169,0,.4); border-radius: 6px; padding: 2px 7px; font-size: 13px; }
/* llms.txt settings screen */
.er-lt-card { background: #fff; border: 1px solid #dcdcde; border-radius: 8px; padding: 20px; max-width: 720px; }
.er-lt-card.off { opacity: .55; }
.er-lt-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.er-toggle { margin-left: auto; width: 46px; height: 25px; border-radius: 20px; background: #c3c4c7;
	display: block; position: relative; flex: none; transition: background .18s; }
.er-toggle i { position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%;
	background: #fff; transition: left .18s; }
.er-toggle.on { background: #1d2327; }
.er-toggle.on i { left: 24px; }
.er-lt-view { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 14px 0 0; }
.er-lt-view em { font-style: normal; font-size: 12.5px; color: #646970; }
.er-lt-hr { border: 0; border-top: 1px solid #e6e7ea; margin: 18px 0 14px; }
.er-lt-h { font-size: 15px; font-weight: 700; color: #1d2327; margin: 0 0 6px; }
.er-lt-radio { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #3c434a; margin: 8px 0; }
.er-lt-list { border: 1px solid #dcdcde; border-radius: 6px; max-height: 250px; overflow-y: auto; margin-top: 10px; }
.er-lt-row { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 13px;
	color: #3c434a; border-bottom: 1px solid #f0f0f1; cursor: pointer; }
.er-lt-row:last-child { border-bottom: 0; }
.er-lt-row:hover { background: #f6f7f7; }
.er-lt-row span { flex: 1; min-width: 0; }
.er-lt-row em { font-style: normal; font-size: 11px; color: #50575e; background: #f0f0f1;
	border-radius: 10px; padding: 2px 9px; flex: none; }
.er-lt-actions { display: flex; align-items: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ============ Mockup UI polish (scoped to the demo) ============ */
/* FIX: global .er-btn-ghost is white-on-dark (!important) and was invisible on the white admin cards */
.er-shot-wp .er-btn-ghost,
.er-shot-wp .wp-btn-sec,
.er-shot-wp .wp-btn-pri {
	background: #f6f7f7 !important; color: #2271b1 !important;
	border: 1px solid #2271b1 !important; border-radius: 4px;
	font-size: 12.5px; font-weight: 500; padding: 6px 14px;
	display: inline-block; line-height: 1.5; cursor: pointer;
	transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.er-shot-wp .er-btn-ghost:hover,
.er-shot-wp .wp-btn-sec:hover,
.er-shot-wp .wp-btn-pri:hover {
	background: #f0f6fc !important; border-color: #0a4b78 !important; color: #0a4b78 !important;
}
.er-shot-wp .wp-btn-save, .er-shot-wp .er-btn-blue {
	box-shadow: 0 1px 0 rgba(0,0,0,.06); cursor: pointer;
	transition: background .14s ease;
}
.er-shot-wp .wp-btn-save:hover, .er-shot-wp .er-btn-blue:hover { background: #135e96; }
.er-shot-wp .er-optimize:hover { background: #135e96; }

/* Readability: the demo body copy was too light */
.er-shot-wp .er-ai-sum { color: #3c434a; font-size: 13px; }
.er-shot-wp .wp-hint, .er-shot-wp .er-mb-hint { color: #50575e; }

/* Native controls in WordPress blue */
.er-shot-wp input[type="checkbox"], .er-shot-wp input[type="radio"] { accent-color: #2271b1; }

/* --- llms.txt screen --- */
.er-lt-card {
	box-shadow: 0 1px 3px rgba(14,17,41,.06); padding: 22px 24px;
	transition: opacity .2s ease;
}
.er-lt-head h3 { font-size: 17px !important; }
.er-toggle { box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.er-toggle i { box-shadow: 0 1px 2px rgba(0,0,0,.25); }
.er-toggle.on { background: #2271b1; }
.er-lt-view { margin-top: 16px; }
.er-lt-h { font-size: 14.5px; margin-top: 2px; }
.er-lt-radio { padding: 5px 0; cursor: pointer; }
.er-lt-radio:hover { color: #2271b1; }
.er-lt-list { border-color: #dcdcde; border-radius: 8px; background: #fff; }
.er-lt-list::-webkit-scrollbar { width: 10px; }
.er-lt-list::-webkit-scrollbar-thumb { background: #dcdcde; border-radius: 6px; border: 3px solid #fff; }
.er-lt-row { padding: 10px 14px; transition: background .12s ease; }
.er-lt-row:has(input:checked) { background: #f0f6fc; }
.er-lt-row:has(input:checked) span { color: #1d2327; font-weight: 600; }
.er-lt-row em { background: #eef0f2; color: #50575e; font-size: 10.5px;
	text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.er-lt-actions { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e6e7ea; }
.er-lt-actions .wp-res { margin-left: 4px; }
/* Redirects screen */
.er-rd-card { background: #fff; border: 1px solid #dcdcde; border-radius: 8px; padding: 20px 22px;
	box-shadow: 0 1px 3px rgba(14,17,41,.06); max-width: 760px; }
.er-rd-chk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #3c434a; margin: 8px 0 2px; cursor: pointer; }
.er-shot-wp .wp-res.err { color: #b32d2e; font-weight: 600; }
.er-rd-table { width: 100%; max-width: 760px; border-collapse: collapse; background: #fff;
	border: 1px solid #dcdcde; border-radius: 8px; overflow: hidden; margin-top: 10px; }
.er-rd-table th { background: #f6f7f7; text-align: left; font-size: 12px; text-transform: uppercase;
	letter-spacing: .04em; color: #50575e; padding: 9px 14px; border-bottom: 1px solid #dcdcde; }
.er-rd-table td { padding: 10px 14px; border-bottom: 1px solid #f0f0f1; font-size: 13px; color: #3c434a; }
.er-rd-table tr:last-child td { border-bottom: 0; }
.er-rd-table code { background: #f0f0f1; border-radius: 4px; padding: 2px 7px; font-size: 12px; color: #1d2327; }
.er-rd-type { background: #f0f6fc; color: #2271b1; border: 1px solid #c5d9ed; border-radius: 4px;
	padding: 2px 8px; font-size: 12px; font-weight: 700; }
.er-rd-rx { font-style: normal; font-size: 10.5px; background: #fff8e1; color: #8a6100;
	border-radius: 10px; padding: 1px 7px; font-weight: 700; text-transform: uppercase; }
.er-rd-del { color: #b32d2e; font-size: 12.5px; cursor: pointer; }
.er-rd-del:hover { text-decoration: underline; }
