:root {
	--bg-1: #f6f1e8;
	--bg-2: #edf7ff;
	--bg-3: #eafaf3;
	--ink: #151312;
	--muted: #5c5551;
	--line: #d9d0c2;
	--card: rgba(255, 252, 247, 0.88);
	--card-strong: #fffdf8;
	--accent: #f35b2b;
	--accent-strong: #d94716;
	--accent-2: #0e8b68;
	--accent-3: #1454ff;
	--shadow: 0 24px 54px rgba(21, 18, 15, 0.12);
	--shadow-soft: 0 12px 30px rgba(21, 18, 15, 0.08);
	--radius-xl: 30px;
	--radius-lg: 22px;
	--radius-md: 16px;
	--radius-sm: 12px;
	--container: 1180px;
}

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

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "IBM Plex Sans", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(52vw 42vh at 0% 0%, rgba(243, 91, 43, 0.18) 0%, transparent 62%),
		radial-gradient(48vw 38vh at 100% 12%, rgba(20, 84, 255, 0.12) 0%, transparent 60%),
		radial-gradient(44vw 42vh at 50% 100%, rgba(14, 139, 104, 0.1) 0%, transparent 62%),
		linear-gradient(180deg, var(--bg-1), var(--bg-2) 58%, var(--bg-3));
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "Unbounded", sans-serif;
	letter-spacing: 0.02em;
}

h1 {
	font-size: clamp(38px, 5.8vw, 72px);
	line-height: 1;
}

h2 {
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.08;
}

h3 {
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.2;
}

.portal-hero h1,
.section-header h2,
.feature-card h3,
.scenario-card h3,
.article-card h3,
.prompt-card h3,
.plan h3 {
	text-wrap: balance;
}

.portal-hero h1 {
	max-width: 12ch;
	font-size: clamp(34px, 3.5vw, 48px);
	line-height: 1.08;
}

.section-header h2 {
	font-size: clamp(28px, 2.8vw, 40px);
	line-height: 1.12;
}

.feature-card h3,
.scenario-card h3,
.article-card h3,
.prompt-card h3,
.plan h3 {
	font-size: clamp(20px, 1.45vw, 26px);
	line-height: 1.2;
}

p {
	margin: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid rgba(217, 208, 194, 0.75);
	backdrop-filter: blur(16px);
	background: rgba(246, 241, 232, 0.78);
}

.header-wrap {
	min-height: 82px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: #fff;
	background: linear-gradient(145deg, var(--accent), #ff8a3d);
	box-shadow: 0 14px 26px rgba(243, 91, 43, 0.34);
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--muted);
}

.site-nav__list li {
	margin: 0;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	padding: 4px 2px;
	border-bottom: 1px solid transparent;
	transition: color 180ms ease, border-color 180ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	color: var(--accent);
	border-color: rgba(243, 91, 43, 0.38);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid transparent;
	border-radius: 14px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.15;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--accent), #ff8a3d);
	box-shadow: 0 14px 28px rgba(243, 91, 43, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	box-shadow: 0 18px 34px rgba(243, 91, 43, 0.34);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.82);
	border-color: var(--line);
	color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	border-color: var(--accent);
	color: var(--accent);
}

.btn-block {
	width: 100%;
}

.theme-toggle {
	min-width: 110px;
}

.theme-icon {
	font-size: 14px;
	line-height: 1;
}

.site-main {
	padding-bottom: 18px;
}

.hero-section,
.page-section {
	padding: 48px 0;
}

.portal-hero {
	position: relative;
	padding-top: 62px;
}

.portal-hero::before,
.portal-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(4px);
	pointer-events: none;
	z-index: -1;
}

.portal-hero::before {
	width: 360px;
	height: 360px;
	right: -110px;
	top: -40px;
	background: radial-gradient(circle, rgba(243, 91, 43, 0.22) 0%, rgba(243, 91, 43, 0) 66%);
}

.portal-hero::after {
	width: 320px;
	height: 320px;
	left: -90px;
	bottom: 10px;
	background: radial-gradient(circle, rgba(20, 84, 255, 0.14) 0%, rgba(20, 84, 255, 0) 70%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
	gap: 22px;
	align-items: start;
}

.hero-grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.hero-grid--single .hero-copy {
	max-width: 940px;
}

.hero-grid--single .hero-text,
.hero-grid--single .hero-copy p,
.hero-grid--single .hero-benefits {
	max-width: 70ch;
}

.hero-grid--single .hero-proof {
	max-width: 920px;
}

.hero-grid--visual {
	grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
	gap: clamp(22px, 3vw, 40px);
}

.hero-grid--visual .hero-copy {
	max-width: 760px;
}

.cards-grid--latest,
.plans--tiers {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.badge,
.card-chip,
.section-eyebrow,
.mini-kicker,
.panel-label,
.card-meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.badge {
	padding: 9px 13px;
	border-radius: 999px;
	border: 1px solid rgba(217, 208, 194, 0.95);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--shadow-soft);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-2);
	box-shadow: 0 0 0 4px rgba(14, 139, 104, 0.18);
}

.hero-kicker {
	margin-top: 20px;
	max-width: 64ch;
	font-size: 14px;
	font-weight: 700;
	color: #6d3223;
	letter-spacing: 0.02em;
}

.hero-text,
.hero-copy p {
	margin-top: 18px;
	max-width: 56ch;
	font-size: clamp(17px, 2vw, 21px);
	color: #3f3936;
}

.hero-media {
	display: grid;
	gap: 0;
	align-self: center;
}

.hero-visual {
	margin: 0;
	border: 1px solid rgba(217, 208, 194, 0.95);
	border-radius: 26px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 24px 54px rgba(21, 18, 15, 0.12);
}

.hero-visual img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 430px;
	object-fit: cover;
	object-position: center top;
}

.hero-actions {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-benefits,
.list,
.path-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-benefits {
	margin-top: 24px;
	display: grid;
	gap: 10px;
	max-width: 60ch;
}

.hero-benefits li,
.list li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	color: #2f2a27;
}

.hero-benefits li::before,
.list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 800;
	color: var(--accent-2);
}

.hero-proof {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	max-width: 780px;
}

.hero-proof-item,
.roadmap-step,
.scenario-card,
.testimonial-card {
	border: 1px solid rgba(217, 208, 194, 0.92);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.7);
	box-shadow: var(--shadow-soft);
}

.hero-proof-item {
	padding: 14px;
}

.hero-proof-item strong {
	display: block;
	margin-bottom: 8px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1;
}

.hero-proof-item span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #615a56;
}

.trust-row {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	color: #5f5854;
}

.hero-card,
.card-box,
.prompt-card,
.plan,
.cta-strip,
.prose-box {
	border: 1px solid rgba(217, 208, 194, 0.95);
	border-radius: var(--radius-lg);
	background: var(--card);
	box-shadow: var(--shadow);
}

.hero-card {
	padding: 24px;
	display: grid;
	gap: 16px;
}

.hero-card--accent {
	background:
		linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(245, 255, 251, 0.92)),
		var(--card);
}

.mini-kicker,
.panel-label,
.section-eyebrow,
.card-chip,
.card-meta {
	color: var(--accent-2);
}

.mini-kicker,
.panel-label,
.card-chip,
.section-eyebrow {
	margin-bottom: 2px;
}

.hero-card h2 {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.1;
}

.hero-card p {
	font-size: 15px;
	color: var(--muted);
}

.path-list {
	display: grid;
	gap: 12px;
	counter-reset: path;
}

.path-list li {
	position: relative;
	padding: 0 0 0 56px;
	min-height: 44px;
}

.path-list li::before {
	counter-increment: path;
	content: "0" counter(path);
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-family: "Unbounded", sans-serif;
	font-size: 13px;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), #ff8a3d);
	box-shadow: 0 12px 22px rgba(243, 91, 43, 0.22);
}

.path-list strong {
	display: block;
	margin-bottom: 2px;
	font-size: 15px;
}

.path-list span {
	display: block;
	font-size: 13px;
	color: #5f5854;
}

.quick-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.quick-link-card {
	display: grid;
	gap: 6px;
	padding: 14px;
	border: 1px solid rgba(232, 215, 205, 0.95);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.88);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-link-card:hover,
.quick-link-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(243, 91, 43, 0.5);
	box-shadow: 0 16px 28px rgba(243, 91, 43, 0.12);
}

.quick-link-card strong {
	font-size: 15px;
}

.quick-link-card span {
	font-size: 13px;
	color: #5c5652;
}

.hero-card-footer {
	display: grid;
	gap: 12px;
	padding-top: 6px;
	border-top: 1px solid rgba(217, 208, 194, 0.72);
}

.hero-card-footer p {
	font-size: 13px;
}

.section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.section-header p {
	max-width: 58ch;
	font-size: 16px;
	color: var(--muted);
}

.feature-grid,
.scenario-grid,
.prompt-grid,
.cards-grid,
.testimonial-grid,
.plans {
	display: grid;
	gap: 14px;
}

.feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.article-card,
.prose-box {
	padding: 20px;
}

.feature-card {
	display: grid;
	gap: 12px;
}

.feature-card p {
	font-size: 15px;
	color: var(--muted);
}

.scenario-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card {
	padding: 18px;
	display: grid;
	gap: 10px;
}

.scenario-step,
.roadmap-id,
.quote-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 42px;
	padding: 8px 10px;
	border-radius: 999px;
	font-family: "Unbounded", sans-serif;
	font-size: 12px;
	line-height: 1;
	color: var(--accent-3);
	background: rgba(20, 84, 255, 0.1);
}

.scenario-card p,
.roadmap-step p,
.testimonial-quote {
	font-size: 15px;
	color: var(--muted);
}

.scenario-result {
	padding-top: 8px;
	border-top: 1px solid rgba(217, 208, 194, 0.68);
	font-size: 14px;
	font-weight: 700;
	color: #2f2a27;
}

.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.roadmap-step {
	padding: 20px;
	display: grid;
	gap: 12px;
}

.prompt-grid,
.cards-grid,
.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prompt-card {
	padding: 18px;
	display: grid;
	gap: 12px;
}

.prompt-head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 10px;
}

.prompt-head h3 {
	grid-column: 1 / -1;
}

.prompt-tax {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.prompt-tax-item {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	border: 1px solid rgba(217, 208, 194, 0.92);
	background: rgba(255, 255, 255, 0.84);
	font-size: 11px;
	font-weight: 700;
	color: #5d5651;
}

.prompt-tax-tag {
	border-color: rgba(14, 139, 104, 0.3);
	color: var(--accent-2);
}

.copy-btn {
	min-height: 38px;
	padding: 10px 14px;
	font-size: 12px;
}

.copy-btn:disabled {
	cursor: default;
	opacity: 0.94;
}

.prompt-code {
	margin: 0;
	padding: 14px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(217, 208, 194, 0.9);
	background: rgba(255, 255, 255, 0.92);
	font-family: Consolas, "Courier New", monospace;
	font-size: 13px;
	line-height: 1.52;
	color: #2c2926;
	white-space: pre-wrap;
	min-height: 180px;
}

.article-card h3 {
	font-size: 21px;
}

.article-card p {
	margin-top: 10px;
	font-size: 15px;
	color: var(--muted);
}

.card-meta {
	margin-bottom: 8px;
}

.card-link {
	margin-top: 12px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	color: var(--accent);
}

.prose-box {
	padding: 24px;
}

.testimonial-card {
	padding: 20px;
	display: grid;
	gap: 14px;
}

.quote-mark {
	background: rgba(14, 139, 104, 0.12);
	color: var(--accent-2);
}

.testimonial-quote {
	font-size: 17px;
	line-height: 1.55;
}

.testimonial-meta {
	display: grid;
	gap: 4px;
}

.testimonial-meta strong {
	font-size: 15px;
}

.testimonial-meta span {
	font-size: 13px;
	font-weight: 700;
	color: #625b57;
}

.plans {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
	position: relative;
	padding: 22px;
	background: rgba(255, 255, 255, 0.86);
}

.plan > p {
	margin-top: 6px;
	font-size: 14px;
	color: var(--muted);
}

.price {
	margin: 18px 0;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1;
}

.price small {
	font-size: 12px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	color: #68615d;
}

.list {
	display: grid;
	gap: 9px;
	margin: 0 0 18px;
	font-size: 14px;
}

.plan.popular {
	transform: translateY(-4px);
	border-color: rgba(243, 91, 43, 0.45);
	box-shadow: 0 24px 44px rgba(243, 91, 43, 0.2);
	background:
		linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(255, 255, 255, 0.92)),
		#fff;
}

.pill {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(243, 91, 43, 0.12);
	color: var(--accent-strong);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cta-strip {
	padding: 26px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	background:
		linear-gradient(110deg, rgba(255, 242, 230, 0.96), rgba(234, 250, 243, 0.94)),
		var(--card);
}

.cta-strip p {
	margin-top: 12px;
	max-width: 58ch;
	font-size: 16px;
	color: var(--muted);
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.faq-grid {
	display: grid;
	gap: 10px;
}

.faq-item {
	border: 1px solid rgba(217, 208, 194, 0.95);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: var(--shadow-soft);
	padding: 0 18px;
}

.faq-item summary {
	padding: 18px 0;
	cursor: pointer;
	list-style: none;
	font-weight: 800;
	font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	padding-bottom: 18px;
	font-size: 15px;
	color: var(--muted);
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 16px;
	align-items: start;
}

.single-post h1,
.page-content h1 {
	font-size: clamp(32px, 4.6vw, 58px);
}

.entry-content {
	font-size: 17px;
	color: #2f2a27;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content p {
	margin: 0 0 14px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 24px 0 12px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 16px 22px;
}

.entry-content li {
	margin-bottom: 8px;
}

.sidebar-area {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 12px;
}

.widget {
	padding: 16px;
	border: 1px solid rgba(217, 208, 194, 0.92);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-soft);
	font-size: 14px;
}

.widget-title {
	margin: 0 0 10px;
	font-size: 16px;
}

.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(217, 208, 194, 0.95);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 800;
}

.pagination-wrap .current {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
}

.error-404 {
	text-align: center;
}

.error-code {
	margin: 0 0 10px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(72px, 12vw, 132px);
	line-height: 1;
	color: var(--accent);
}

.error-actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	max-width: 560px;
}

.search-field,
.search-submit {
	font: inherit;
	border-radius: 12px;
}

.search-field {
	padding: 12px 14px;
	border: 1px solid rgba(217, 208, 194, 0.95);
	background: rgba(255, 255, 255, 0.84);
}

.search-submit {
	padding: 12px 18px;
	border: 1px solid transparent;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), #ff8a3d);
	font-weight: 800;
	cursor: pointer;
}

.site-footer {
	padding: 28px 0 42px;
	border-top: 1px solid rgba(217, 208, 194, 0.72);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.footer-copy {
	margin: 0;
	font-size: 13px;
	color: #615a56;
}

.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	font-weight: 700;
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

html[data-theme="dark"] {
	color-scheme: dark;
}

html[data-theme="dark"] body {
	background:
		radial-gradient(50vw 40vh at 0% 0%, rgba(243, 91, 43, 0.18) 0%, transparent 62%),
		radial-gradient(46vw 36vh at 100% 12%, rgba(20, 84, 255, 0.16) 0%, transparent 60%),
		radial-gradient(42vw 40vh at 50% 100%, rgba(14, 139, 104, 0.12) 0%, transparent 62%),
		linear-gradient(180deg, #101721, #0f1823 58%, #11221d);
	color: #f2ecdf;
}

html[data-theme="dark"] .site-header {
	background: rgba(15, 23, 32, 0.78);
	border-bottom-color: rgba(71, 88, 107, 0.54);
}

html[data-theme="dark"] .site-nav__list,
html[data-theme="dark"] .hero-text,
html[data-theme="dark"] .hero-copy p,
html[data-theme="dark"] .hero-kicker,
html[data-theme="dark"] .hero-card p,
html[data-theme="dark"] .section-header p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .scenario-card p,
html[data-theme="dark"] .testimonial-quote,
html[data-theme="dark"] .testimonial-meta span,
html[data-theme="dark"] .prompt-code,
html[data-theme="dark"] .article-card p,
html[data-theme="dark"] .entry-content,
html[data-theme="dark"] .faq-item p,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .trust-row,
html[data-theme="dark"] .path-list span,
html[data-theme="dark"] .hero-proof-item span,
html[data-theme="dark"] .quick-link-card span,
html[data-theme="dark"] .price small {
	color: #bcc6d4;
}

html[data-theme="dark"] .btn-outline,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .badge,
html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .card-box,
html[data-theme="dark"] .prompt-card,
html[data-theme="dark"] .plan,
html[data-theme="dark"] .cta-strip,
html[data-theme="dark"] .prose-box,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .widget,
html[data-theme="dark"] .search-field,
html[data-theme="dark"] .pagination-wrap .page-numbers {
	background: rgba(20, 30, 43, 0.88);
	border-color: rgba(62, 81, 102, 0.9);
	color: #f2ecdf;
}

html[data-theme="dark"] .hero-card--accent {
	background:
		linear-gradient(180deg, rgba(30, 34, 43, 0.96), rgba(20, 35, 38, 0.92)),
		rgba(20, 30, 43, 0.88);
}

html[data-theme="dark"] .hero-proof-item,
html[data-theme="dark"] .scenario-card,
html[data-theme="dark"] .roadmap-step,
html[data-theme="dark"] .testimonial-card {
	background: rgba(20, 30, 43, 0.8);
	border-color: rgba(62, 81, 102, 0.9);
}

html[data-theme="dark"] .quick-link-card,
html[data-theme="dark"] .prompt-code,
html[data-theme="dark"] .prompt-tax-item {
	background: rgba(14, 23, 34, 0.92);
	border-color: rgba(62, 81, 102, 0.82);
}

html[data-theme="dark"] .prompt-tax-tag,
html[data-theme="dark"] .mini-kicker,
html[data-theme="dark"] .panel-label,
html[data-theme="dark"] .section-eyebrow,
html[data-theme="dark"] .card-chip,
html[data-theme="dark"] .card-meta {
	color: #7fe0c8;
}

html[data-theme="dark"] .quote-mark {
	background: rgba(127, 224, 200, 0.12);
	color: #7fe0c8;
}

html[data-theme="dark"] .scenario-step,
html[data-theme="dark"] .roadmap-id {
	background: rgba(20, 84, 255, 0.16);
	color: #9fb7ff;
}

html[data-theme="dark"] .hero-benefits li,
html[data-theme="dark"] .list li,
html[data-theme="dark"] .scenario-result {
	color: #dde5ef;
}

html[data-theme="dark"] .pill {
	background: rgba(243, 91, 43, 0.16);
	color: #ffbfaa;
}

html[data-theme="dark"] .site-footer {
	border-top-color: rgba(71, 88, 107, 0.54);
}

@media (max-width: 1180px) {
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.roadmap-grid,
	.cards-grid,
	.prompt-grid,
	.testimonial-grid,
	.plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.scenario-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.hero-grid,
	.content-grid,
	.cta-strip {
		grid-template-columns: 1fr;
	}

	.hero-grid--visual .hero-copy {
		max-width: 980px;
	}

	.hero-media {
		max-width: 880px;
	}

	.hero-visual img {
		max-height: 320px;
	}

	.hero-proof {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.header-wrap {
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 10px 0;
	}

	.site-nav {
		order: 3;
		width: 100%;
		margin-left: 0;
	}

	.site-nav__list {
		justify-content: flex-start;
	}

	.sidebar-area {
		position: static;
	}

	.cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 780px) {
	.container {
		width: min(var(--container), calc(100% - 24px));
	}

	.header-wrap {
		min-height: 70px;
		gap: 12px;
	}

	.brand {
		font-size: 17px;
	}

	.brand-mark {
		width: 34px;
		height: 34px;
	}

	.header-actions {
		margin-left: auto;
	}

	.header-cta {
		display: none;
	}

	.site-nav {
		display: none;
	}

	.theme-toggle {
		min-width: auto;
		padding: 11px 12px;
	}

	.theme-label {
		display: none;
	}

	.hero-section,
	.page-section {
		padding: 34px 0;
	}

	.portal-hero {
		padding-top: 34px;
	}

	.portal-hero h1 {
		font-size: clamp(20px, 5.2vw, 22px);
		line-height: 1.16;
	}

	.section-header h2 {
		font-size: clamp(20px, 5.2vw, 24px);
		line-height: 1.18;
	}

	.feature-card h3,
	.scenario-card h3,
	.article-card h3,
	.prompt-card h3,
	.plan h3 {
		font-size: clamp(18px, 4.8vw, 22px);
		line-height: 1.24;
	}

	.hero-proof,
	.quick-links,
	.feature-grid,
	.scenario-grid,
	.roadmap-grid,
	.prompt-grid,
	.cards-grid,
	.testimonial-grid,
	.plans {
		grid-template-columns: 1fr;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-strip,
	.hero-card,
	.feature-card,
	.article-card,
	.prompt-card,
	.plan,
	.testimonial-card,
	.prose-box {
		padding: 18px;
	}

	.search-form {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		border-radius: 20px;
	}

	.hero-visual img {
		max-height: 280px;
	}
}
