/*
Theme Name: Preter
Description: A custom block theme scaffolded by Studio Code.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: preter
Tags: full-site-editing, block-patterns, block-styles, wide-blocks, accessibility-ready, style-variations
*/

/* WordPress inserts margin-block-start: var(--wp--style--block-gap) between the
   template's top-level sections (header part, main, footer part) — a gap that
   exists even when no markup asks for it. Zero it so sections butt edge-to-edge
   and own their vertical rhythm via padding; this does not affect block gaps
   inside nested layouts. */
.wp-site-blocks > * + * {
	margin-block-start: 0;
}

:root {
	--site-radius: 14px;
	--site-radius-lg: 22px;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100vw;
}

/* === nav === */
.wp-block-template-part:has(.site-nav) {
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding-top: 0;
	padding-bottom: 0;
}
.site-nav-inner {
	padding: 16px 6vw;
	width: 100%;
	max-width: none;
}
.site-nav-logo {
	margin: 0;
	line-height: 0;
	flex-shrink: 0;
}
.site-nav-logo img {
	display: block;
}
.site-nav-links {
	gap: 32px;
}
.site-nav-links a {
	color: var(--wp--preset--color--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s;
}
.site-nav-links a:hover {
	color: var(--wp--preset--color--brand);
}
.site-nav-cta {
	margin: 0;
}
@media (max-width: 768px) {
	.site-nav-links {
		display: none;
	}
}
/* === buttons === */
.wp-element-button {
	border-radius: 100px !important;
	padding: 15px 32px !important;
	font-size: 16px;
	font-weight: 700;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
	border: none;
}
.is-style-fill .wp-element-button {
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--base);
	box-shadow: 0 4px 20px rgba(20, 40, 160, 0.25);
}
.is-style-fill .wp-element-button:hover {
	background: var(--wp--preset--color--brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(20, 40, 160, 0.32);
}
.is-style-outline .wp-element-button {
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--brand);
	border: 1.5px solid var(--wp--preset--color--brand) !important;
}
.is-style-outline .wp-element-button:hover {
	background: var(--wp--preset--color--brand-light);
}
.site-nav-cta .wp-element-button {
	padding: 10px 22px !important;
	font-size: 14px;
}

/* === hero === */
/* === hero (continued) === */
.hero-section {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 100px 6vw 80px;
	background:
		radial-gradient(ellipse 60% 45% at 50% 55%, rgba(20, 40, 160, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 35% 35% at 15% 20%, rgba(20, 40, 160, 0.04) 0%, transparent 60%);
}
.hero-tag {
	display: inline-block;
	border: 1.5px solid rgba(20, 40, 160, 0.25);
	color: var(--wp--preset--color--brand);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 18px;
	border-radius: 100px;
	margin: 0 auto 28px;
	background: var(--wp--preset--color--brand-light);
}
.hero-title {
	font-size: clamp(34px, 5.5vw, 68px);
	font-weight: 900;
	line-height: 1.14;
	letter-spacing: -1.5px;
	margin: 0 auto 24px;
	max-width: 800px;
}
.hero-title em {
	color: var(--wp--preset--color--brand);
	font-style: normal;
}
.hero-sub {
	font-size: clamp(16px, 1.8vw, 19px);
	color: var(--wp--preset--color--text-secondary);
	max-width: 540px;
	line-height: 1.7;
	margin: 0 auto 44px;
}
.hero-btns {
	justify-content: center;
}

/* === trust bar === */
.trust-bar {
	max-width: 860px;
	width: 100%;
	margin: 52px auto 0;
	text-align: center;
	box-sizing: border-box;
}
.trust-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--wp--preset--color--text-3, #7A7A90);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.trust-track-wrap {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-track {
	display: flex;
	align-items: center;
	gap: 67px;
	width: max-content;
	animation: trustScroll 32s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.trust-logo-item {
	flex-shrink: 0;
	height: 32px;
	margin: 0;
	opacity: 0.5;
	filter: grayscale(100%) brightness(0);
	transition: opacity .25s;
}
.trust-logo-item:hover { opacity: 0.75; }
.trust-logo-item img {
	height: 32px;
	width: auto;
	display: block;
}
@media (prefers-reduced-motion: reduce) {
	.trust-track { animation: none; }
}

/* === hero mockup === */
.hero-mockup-wrap {
	margin-top: 52px;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	padding: 0 16px;
	box-sizing: border-box;
}
.mapp-mount {
	width: 340px;
	max-width: 100%;
	flex: 0 0 340px;
	min-height: 600px;
}
.mapp-wrap {
	width: 340px;
	max-width: 100%;
	background: var(--wp--preset--color--base);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 24px 72px rgba(20, 40, 160, 0.16), 0 4px 16px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	border: 1px solid var(--wp--preset--color--border);
	height: 600px;
	box-sizing: border-box;
}
.mapp-tabs {
	display: flex;
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
	overflow-x: auto;
	scrollbar-width: none;
}
.mapp-tabs::-webkit-scrollbar {
	display: none;
}
.mapp-tab {
	flex: 1;
	padding: 9px 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--wp--preset--color--text-muted);
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
	transition: color 0.15s, border-color 0.15s;
	min-width: 0;
}
.mapp-tab.active {
	color: var(--wp--preset--color--brand);
	border-bottom-color: var(--wp--preset--color--brand);
	background: var(--wp--preset--color--base);
}
.mapp-tab:hover:not(.active) {
	color: var(--wp--preset--color--brand);
}
.mapp-topbar {
	background: var(--wp--preset--color--base);
	padding: 10px 18px 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.mapp-live {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--brand);
}
.mapp-live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 6px #4ade80;
	animation: preterLivePulse 1.6s ease-in-out infinite;
}
.mapp-lang-row {
	display: flex;
	align-items: center;
	gap: 6px;
}
.mapp-flag-pill {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--wp--preset--color--brand-light);
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	color: var(--wp--preset--color--brand);
	font-weight: 600;
	border: 1px solid rgba(20, 40, 160, 0.15);
}
.mapp-flag-pill em {
	font-style: normal;
	font-size: 11px;
	color: var(--wp--preset--color--text-muted);
}
.mapp-arrow {
	color: var(--wp--preset--color--text-muted);
	font-size: 13px;
}
.mapp-chat {
	flex: 1;
	overflow-y: auto;
	padding: 14px 14px 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	scrollbar-width: none;
	position: relative;
	height: 100%;
	min-height: 0;
}
.mapp-chat::-webkit-scrollbar {
	display: none;
}
.mapp-msg {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 92%;
}
.mapp-msg.them {
	align-self: flex-start;
}
.mapp-msg.me {
	align-self: flex-end;
	align-items: flex-end;
}
.voice-indicator {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	color: var(--wp--preset--color--text-muted);
	padding: 0 2px;
}
.voice-indicator.incoming {
	flex-direction: row;
}
.voice-indicator.outgoing {
	flex-direction: row-reverse;
}
.vi-wave {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 14px;
}
.vi-wave span {
	width: 2px;
	border-radius: 2px;
	animation: viPulse 0.8s ease-in-out infinite;
}
.vi-wave span:nth-child(1) {
	height: 5px;
	animation-delay: 0s;
}
.vi-wave span:nth-child(2) {
	height: 10px;
	animation-delay: 0.15s;
}
.vi-wave span:nth-child(3) {
	height: 7px;
	animation-delay: 0.3s;
}
.vi-wave span:nth-child(4) {
	height: 4px;
	animation-delay: 0.45s;
}
.voice-indicator.incoming .vi-wave span {
	background: rgba(255, 59, 48, 0.85);
}
.voice-indicator.outgoing .vi-wave span {
	background: rgba(20, 40, 160, 0.75);
}
.mapp-bubble {
	max-width: 100%;
	padding: 9px 12px;
	border-radius: 16px;
	font-size: 12.5px;
	line-height: 1.55;
	font-weight: 500;
}
.them-b {
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--contrast);
	border-radius: 4px 16px 16px 16px;
	border: 1px solid var(--wp--preset--color--border);
}
.me-b {
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--base);
	border-radius: 16px 4px 16px 16px;
}
.v2-orig {
	font-size: 12px;
	line-height: 1.5;
}
.v2-divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
	margin: 6px 0;
}
.me-b .v2-divider {
	background: rgba(255, 255, 255, 0.25);
}
.v2-translated {
	font-size: 11.5px;
}
.v2-tag {
	font-size: 10px;
	font-weight: 700;
	opacity: 0.65;
	margin-right: 4px;
}
.m-cursor {
	animation: preterBlink 0.8s step-end infinite;
	font-weight: 300;
}
.mapp-bottom {
	position: relative;
	background: var(--wp--preset--color--base);
	border-top: 1px solid var(--wp--preset--color--border);
	flex-shrink: 0;
	overflow: visible;
}
.voice-bar-wrap {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 46px;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to top, black 0%, transparent 90%);
	mask-image: linear-gradient(to top, black 0%, transparent 90%);
}
.voice-bar {
	position: relative;
	height: 1.75px;
	border-radius: 2px;
	transition: width 0.35s ease, background 0.3s ease;
}
.voice-bar::before {
	content: "";
	position: absolute;
	left: -60%;
	right: -60%;
	bottom: 0;
	height: 40px;
	filter: blur(7px);
}
.voice-bar.speak-bar {
	width: 110px;
	background: #4f8dff;
	box-shadow: 0 0 6px 1px rgba(79, 141, 255, 0.9);
	animation: barBlinkSpeak 0.85s ease-in-out infinite;
}
.voice-bar.speak-bar::before {
	background: radial-gradient(ellipse 60% 100% at center bottom, rgba(79, 141, 255, 0.55) 0%, transparent 70%);
}
.voice-bar.listen-bar {
	width: 200px;
	background: #ff5a52;
	box-shadow: 0 0 6px 1px rgba(255, 90, 82, 0.85);
	animation: barBlinkListen 1.5s ease-in-out infinite;
}
.voice-bar.listen-bar::before {
	background: radial-gradient(ellipse 60% 100% at center bottom, rgba(255, 90, 82, 0.5) 0%, transparent 70%);
}
.mapp-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 18px 17px;
	position: relative;
	z-index: 1;
	background: var(--wp--preset--color--base);
}
.mapp-ctrl-label {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--text-secondary);
}
@media (max-width: 480px) {
	.mapp-mount {
		min-height: 580px;
	}
	.mapp-wrap {
		height: 580px;
	}
}
/* === sections shared === */
.pain-section,
.values-section,
.cost-section,
.steps-section,
.ctx-section,
.features-section,
.notes-section,
.lang-section,
.testimonials-section,
.pricing-section {
	padding: 100px 6vw;
}
.values-section {
	margin-top: 0;
}
.section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--wp--preset--color--brand);
	text-transform: uppercase;
	margin: 0 0 14px;
}
.section-title {
	font-size: clamp(26px, 3.8vw, 46px);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.6px;
	margin: 0 0 14px;
}
.section-sub {
	font-size: 17px;
	color: var(--wp--preset--color--text-secondary);
	max-width: 500px;
	line-height: 1.7;
	margin: 0 0 14px;
	margin-inline: 0 auto !important;
}
/* === pain === */
.pain-grid {
	margin-top: 52px;
	flex-wrap: wrap !important;
	gap: 20px;
}
.pain-card {
	flex: 1 1 240px !important;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 28px;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.pain-icon {
	font-size: 28px;
	line-height: 1;
	margin: 0 0 14px;
}
.pain-card:hover {
	border-color: rgba(20, 40, 160, 0.3);
	box-shadow: 0 6px 24px rgba(20, 40, 160, 0.08);
	transform: translateY(-3px);
}
.pain-card h3 {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px;
}
.pain-card p {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.65;
	margin: 0;
}
/* === values === */
.values-grid {
	margin-top: 52px;
	flex-wrap: wrap !important;
	gap: 24px;
}
.value-card {
	flex: 1 1 calc(50% - 24px) !important;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius-lg);
	padding: 36px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--wp--preset--color--brand);
	opacity: 0;
	transition: opacity 0.25s;
}
.value-card:hover {
	border-color: var(--wp--preset--color--brand);
	box-shadow: 0 8px 32px rgba(20, 40, 160, 0.1);
	transform: translateY(-4px);
}
.value-card:hover::before {
	opacity: 1;
}
.value-en {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--wp--preset--color--brand);
	text-transform: uppercase;
	margin: 0 0 8px;
}
.value-kr {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 14px;
}
.value-desc {
	font-size: 15px;
	color: var(--wp--preset--color--text-secondary);
	line-height: 1.7;
	margin: 0;
}
.value-badge {
	display: inline-block;
	margin-top: 20px;
	background: var(--wp--preset--color--brand-light);
	border: 1px solid rgba(20, 40, 160, 0.2);
	color: var(--wp--preset--color--brand);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 100px;
}
@media (max-width: 640px) {
	.value-card {
		flex-basis: 100%;
	}
}
/* === cost compare === */
.cost-highlight {
	font-size: 1.15em;
	color: var(--wp--preset--color--brand);
}
.cost-compare-wrap {
	margin-top: 52px;
	align-items: center;
	gap: 24px;
}
.cost-receipt {
	background: #FAFAFA;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 4px;
	padding: 28px 26px 22px;
	font-family: "Courier New", monospace;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.cost-receipt-title {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #888888;
	text-transform: uppercase;
	margin: 0 0 18px;
}
.cost-receipt-line {
	padding: 10px 0 2px;
	font-size: 14px;
	font-weight: 700;
	color: var(--wp--preset--color--contrast);
}
.cost-receipt-amt {
	font-weight: 700;
	color: #C0392B;
	margin: 0;
}
.cost-receipt-total .cost-receipt-amt {
	font-size: 18px;
}
.cost-receipt-note {
	font-size: 11.5px;
	color: #999999;
	line-height: 1.5;
	padding-bottom: 12px;
	border-bottom: 1px dashed #DDDDDD;
	margin: 0 0 0;
}
.cost-receipt-total {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 2px solid #222222;
	font-size: 15px;
	font-weight: 800;
	align-items: baseline !important;
}
.cost-receipt-barcode {
	margin-top: 18px;
	height: 26px;
	background: repeating-linear-gradient(90deg, #222222 0 2px, transparent 2px 5px);
	opacity: 0.45;
}
.cost-vs {
	flex-basis: 46px !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cost-vs p {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--wp--preset--color--brand-light);
	color: var(--wp--preset--color--brand);
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.cost-preter-card {
	background: var(--wp--preset--color--brand);
	border-radius: var(--site-radius-lg);
	padding: 32px;
	text-align: center;
	color: var(--wp--preset--color--base);
	box-shadow: 0 12px 40px rgba(20, 40, 160, 0.28);
}
.cost-preter-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	opacity: 0.75;
	margin: 0 0 10px;
}
.cost-preter-price {
	font-size: 36px;
	font-weight: 900;
	margin: 0 0 10px;
}
.cost-preter-sub {
	font-size: 13px;
	opacity: 0.85;
	line-height: 1.6;
	margin: 0 0 24px;
}
.cost-preter-cta .wp-element-button {
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--brand);
	width: 100%;
}
.cost-preter-cta .wp-element-button:hover {
	opacity: 0.9;
}
@media (max-width: 768px) {
	.cost-compare-wrap {
		flex-direction: column;
	}
	.cost-receipt,
	.cost-preter-card {
		flex-basis: 100% !important;
	}
	.cost-vs {
		flex-basis: auto !important;
		width: 100%;
		padding: 4px 0;
	}
}
/* === steps === */
.steps-wrap {
	margin-top: 52px;
	gap: 64px;
	align-items: center;
}
.steps-list {
	gap: 32px;
	display: flex;
	flex-direction: column;
}
.step {
	align-items: flex-start;
	gap: 20px;
}
.step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--wp--preset--color--brand-light);
	border: 1.5px solid rgba(20, 40, 160, 0.2);
	color: var(--wp--preset--color--brand);
	font-size: 14px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.step-text h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
}
.step-text p {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.6;
	margin: 0;
}
.step-time {
	display: inline-block;
	margin-top: 8px;
	font-size: 11px;
	color: var(--wp--preset--color--brand);
	font-weight: 600;
	background: var(--wp--preset--color--brand-light);
	padding: 3px 10px;
	border-radius: 100px;
}
.steps-visual {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius-lg);
	padding: 28px;
	box-shadow: 0 4px 20px rgba(20, 40, 160, 0.06);
}
.phone-demo {
	gap: 16px;
	justify-content: center;
	align-items: flex-start;
}
.phone-screen {
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 16px;
	padding: 18px;
	flex: 0 0 155px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	flex-direction: column;
	display: flex;
	gap: 8px;
}
.phone-screen-label {
	font-size: 10px;
	color: var(--wp--preset--color--text-muted);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0;
}
.phone-bubble {
	background: var(--wp--preset--color--surface);
	border-radius: 10px;
	padding: 9px 11px;
	font-size: 12px;
	margin: 0;
	line-height: 1.5;
}
.phone-bubble.translated {
	background: var(--wp--preset--color--brand-light);
	border: 1px solid rgba(20, 40, 160, 0.15);
	color: var(--wp--preset--color--brand);
	font-size: 11px;
	font-weight: 600;
}
.arrow-center {
	display: flex;
	align-items: center;
	padding-top: 36px;
	color: var(--wp--preset--color--brand);
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}
.live-bar {
	margin-top: 20px;
	padding: 14px 16px;
	background: var(--wp--preset--color--brand-light);
	border-radius: 12px;
	border: 1px solid rgba(20, 40, 160, 0.15);
}
.live-bar-label {
	font-size: 12px;
	color: var(--wp--preset--color--brand);
	font-weight: 600;
	margin: 0;
}
@media (max-width: 768px) {
	.steps-wrap {
		flex-wrap: wrap;
	}
	.steps-list,
	.steps-visual {
		flex-basis: 100% !important;
	}
	.phone-demo {
		flex-direction: column;
		align-items: center;
	}
	.arrow-center {
		transform: rotate(90deg);
		padding: 0;
		justify-content: center;
	}
}
/* === context learning === */
.ctx-section .section-sub {
	max-width: 640px;
}
.ctx-cards {
	margin-top: 52px;
	gap: 22px;
	flex-wrap: wrap !important;
}
.ctx-card {
	flex: 1 1 calc(50% - 22px) !important;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 28px;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.ctx-card:hover {
	border-color: rgba(20, 40, 160, 0.3);
	box-shadow: 0 6px 24px rgba(20, 40, 160, 0.08);
	transform: translateY(-3px);
}
.ctx-doc-preview,
.ctx-terms-preview {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 16px;
	margin: 0 0 22px;
	gap: 10px !important;
}
.ctx-doc-item {
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 10px;
	padding: 10px 12px;
	gap: 12px !important;
	align-items: center !important;
}
.ctx-doc-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--base);
	margin: 0;
}
.ctx-doc-icon.pdf {
	background: #e5484d;
}
.ctx-doc-icon.xls {
	background: #2f9e5b;
}
.ctx-doc-icon.ppt {
	background: #d9730d;
}
.ctx-doc-info {
	flex: 1;
	min-width: 0;
}
.ctx-doc-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
	margin: 0 0 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ctx-doc-meta {
	font-size: 12px;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.ctx-doc-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--wp--preset--color--brand-light);
	color: var(--wp--preset--color--brand);
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.ctx-doc-check.anim {
	animation: ctx-doc-pulse 1.6s ease-in-out infinite;
}
@keyframes ctx-doc-pulse {
	0%, 100% {
		opacity: 0.55;
		transform: translateY(2px);
	}
	50% {
		opacity: 1;
		transform: translateY(-2px);
	}
}
.ctx-term-row {
	gap: 8px !important;
}
.ctx-term-row:not(:last-child) {
	margin-bottom: 10px;
}
.ctx-term-chip {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 100px;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	color: var(--wp--preset--color--text-secondary);
	white-space: nowrap;
}
.ctx-term-chip.brand {
	background: var(--wp--preset--color--brand-light);
	border-color: rgba(20, 40, 160, 0.2);
	color: var(--wp--preset--color--brand);
}
@media (prefers-reduced-motion: reduce) {
	.ctx-doc-check.anim {
		animation: none;
	}
}
.ctx-card-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
}
.ctx-card-desc {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.65;
	margin: 0;
}
.ctx-bottom-bar {
	margin-top: 40px;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 24px 28px;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.ctx-bottom-text p {
	margin: 0;
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
}
.ctx-bottom-text p:first-child {
	color: var(--wp--preset--color--contrast);
	font-size: 16px;
	margin-bottom: 4px;
}
@media (max-width: 640px) {
	.ctx-card {
		flex-basis: 100%;
	}
}
/* === features === */
.features-grid {
	margin-top: 52px;
	gap: 22px;
	flex-wrap: wrap !important;
}
.feature-card {
	flex: 1 1 240px !important;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 28px;
	transition: border-color 0.25s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
	border-color: rgba(20, 40, 160, 0.3);
	box-shadow: 0 6px 24px rgba(20, 40, 160, 0.08);
	transform: translateY(-3px);
}
.feature-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
}
.feature-card p {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.65;
	margin: 0;
}
/* === notes === */
.notes-section {
	padding: 100px 6vw;
	gap: 64px;
	align-items: center;
}
.notes-visual {
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius-lg);
	padding: 28px;
	box-shadow: 0 8px 32px rgba(20, 40, 160, 0.08);
}
.notes-header {
	font-size: 13px;
	font-weight: 700;
	color: var(--wp--preset--color--brand);
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.note-item {
	align-items: flex-start;
	margin-bottom: 16px;
	gap: 12px;
}
.note-item:last-child {
	margin-bottom: 0;
}
.note-tag {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 4px 9px;
	border-radius: 6px;
	margin: 2px 0 0;
	text-transform: uppercase;
}
.note-tag.decision {
	background: var(--wp--preset--color--brand-light);
	color: var(--wp--preset--color--brand);
}
.note-tag.action {
	background: #eef4ff;
	color: #3d6fff;
}
.note-tag.next {
	background: #fff8ec;
	color: #c07800;
}
.note-text {
	font-size: 14px;
	color: var(--wp--preset--color--text-secondary);
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 768px) {
	.notes-section {
		flex-wrap: wrap;
	}
	.notes-section > .wp-block-column {
		flex-basis: 100% !important;
	}
}
/* === languages === */
.lang-section {
	text-align: center;
	border-top: 1px solid var(--wp--preset--color--border);
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.lang-section-title {
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 800;
	margin: 0 0 48px;
	letter-spacing: -0.4px;
}
.lang-section-title em {
	color: var(--wp--preset--color--brand);
	font-style: normal;
}
.lang-grid {
	position: relative;
	width: 580px;
	max-width: 100%;
	height: 328px;
	margin: 0 auto;
}
.lang-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}
.lang-node {
	position: absolute;
	z-index: 1;
}
.lang-node.top-left {
	top: 0;
	left: 0;
}
.lang-node.bot-left {
	bottom: 0;
	left: 0;
}
.lang-node.top-right {
	top: 0;
	right: 0;
}
.lang-node.bot-right {
	bottom: 0;
	right: 0;
}
.lang-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 120px;
	background: var(--wp--preset--color--base);
	border: 1.5px solid var(--wp--preset--color--border);
	border-radius: 16px;
	padding: 18px 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lang-card:hover {
	border-color: var(--wp--preset--color--brand);
	box-shadow: 0 6px 24px rgba(20, 40, 160, 0.12);
	transform: translateY(-3px);
}
.lang-flag {
	font-size: 32px;
	line-height: 1;
	margin: 0;
}
.lang-name {
	font-size: 13px;
	font-weight: 700;
	margin: 0;
}
.lang-eng {
	font-size: 11px;
	color: var(--wp--preset--color--text-muted);
	font-weight: 500;
	margin: 0;
}
.lang-hub {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.lang-hub-inner {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--wp--preset--color--brand);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	box-shadow: 0 0 0 10px rgba(20, 40, 160, 0.08), 0 8px 24px rgba(20, 40, 160, 0.22);
}
.lang-hub-text {
	font-size: 10px;
	font-weight: 800;
	color: var(--wp--preset--color--base);
	letter-spacing: 0.08em;
	margin: 0;
}
.lang-hub-sub {
	font-size: 9px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}
@media (max-width: 640px) {
	.lang-grid {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.lang-lines {
		display: none;
	}
	.lang-node {
		position: static;
		order: 2;
		width: 100%;
		max-width: 320px;
		display: flex;
		justify-content: center;
	}
	.lang-node .lang-card {
		width: 100%;
	}
	.lang-hub {
		position: static;
		transform: none;
		order: 1;
		width: 90px;
		flex: 0 0 auto;
	}
}
.lang-note {
	margin-top: 36px;
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	font-weight: 500;
}
/* === testimonials === */
.testimonials-grid {
	margin-top: 52px;
	gap: 22px;
	flex-wrap: wrap !important;
}
.testimonial-card {
	flex: 1 1 calc(50% - 22px) !important;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 28px;
	transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
	box-shadow: 0 6px 24px rgba(20, 40, 160, 0.08);
	transform: translateY(-2px);
}
.stars {
	color: var(--wp--preset--color--brand);
	font-size: 14px;
	margin: 0 0 14px;
	letter-spacing: 2px;
}
.testimonial-text {
	font-size: 15px;
	line-height: 1.75;
	color: var(--wp--preset--color--text-secondary);
	margin: 0 0 20px;
	font-style: italic;
}
.testimonial-author {
	font-size: 13px;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.testimonial-author strong {
	color: var(--wp--preset--color--contrast);
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}
@media (max-width: 640px) {
	.testimonial-card {
		flex-basis: 100%;
	}
}
/* === pricing === */
.pricing-section {
	text-align: center;
}
.pricing-grid {
	gap: 24px;
	max-width: 980px;
	margin: 52px auto 0;
	align-items: stretch;
	flex-wrap: nowrap !important;
}
.pricing-note {
	max-width: 640px;
	margin: 32px auto 0;
	font-size: 13px;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.8;
}
.pricing-card {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius-lg);
	padding: 36px;
	text-align: left;
	position: relative;
	transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
	box-shadow: 0 8px 32px rgba(20, 40, 160, 0.1);
	transform: translateY(-3px);
}
.pricing-card.featured {
	border-color: var(--wp--preset--color--brand);
	box-shadow: 0 4px 24px rgba(20, 40, 160, 0.15);
}
.pricing-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--base);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	padding: 4px 14px;
	border-radius: 100px;
	text-transform: uppercase;
	margin: 0;
}
.plan-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.plan-price {
	font-size: 40px;
	font-weight: 900;
	margin: 0 0 4px;
	letter-spacing: -1px;
}
.plan-price span {
	font-size: 16px;
	font-weight: 500;
	color: var(--wp--preset--color--text-muted);
}
.plan-desc {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 26px;
	line-height: 1.6;
}
.plan-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}
.plan-features li {
	font-size: 14px;
	color: var(--wp--preset--color--text-secondary);
	padding: 8px 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.plan-features li::before {
	content: "✓";
	color: var(--wp--preset--color--brand);
	font-weight: 700;
	flex-shrink: 0;
}
.plan-btn .wp-element-button {
	display: block;
	text-align: center;
	width: 100%;
	padding: 13px !important;
	font-size: 14px;
}
/* === footer === */
/* === footer === */
.site-footer {
	padding: 60px 6vw 36px;
}
.footer-top {
	gap: 40px;
	margin-bottom: 48px;
}
.footer-logo-img {
	margin: 0 0 12px;
}
.footer-tagline {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	opacity: 0.85;
}
.footer-col-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
	color: var(--wp--preset--color--base);
}
.footer-link {
	margin: 0 0 10px;
}
.footer-link a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-link a:hover {
	color: var(--wp--preset--color--base);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-copy {
	font-size: 13px;
	margin: 0;
	opacity: 0.75;
}
.footer-copy a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
}
.footer-legal {
	gap: 16px;
}
.footer-legal p {
	margin: 0;
	font-size: 13px;
}
.footer-legal a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-legal a:hover {
	color: var(--wp--preset--color--base);
}
@media (max-width: 640px) {
	.footer-top {
		flex-wrap: wrap;
	}
	.footer-top > .wp-block-column {
		flex-basis: 45% !important;
	}
}

/* === responsive === */
/* === motion === */
@keyframes preterLivePulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes viPulse {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(1.6); }
}
@keyframes preterBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
@keyframes barBlinkSpeak {
	0%, 100% { opacity: 0.65; }
	50% { opacity: 1; }
}
@keyframes barBlinkListen {
	0%, 100% { opacity: 0.45; }
	50% { opacity: 0.95; }
}
@media (prefers-reduced-motion: reduce) {
	.mapp-live-dot,
	.vi-wave span,
	.m-cursor,
	.voice-bar {
		animation: none !important;
	}
}

/* ===================================================================
   BLOG
   =================================================================== */
/* === blog:index === */
.blog-index {
	padding: 72px 6vw 96px;
}
.blog-index-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}
.blog-index-eyebrow {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	color: var(--wp--preset--color--brand);
	margin: 0 0 14px;
}
.blog-index-title {
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -1.2px;
	line-height: 1.15;
	margin: 0 0 18px;
}
.blog-index-sub {
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--text-secondary);
	margin: 0;
}
.blog-featured {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius-lg);
	padding: 28px;
	margin-bottom: 72px;
}
.blog-featured-cols {
	gap: 40px;
}
.blog-featured-thumb img {
	border-radius: var(--site-radius);
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}
.blog-featured-title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.3;
	margin: 14px 0 16px;
}
.blog-featured-title a {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}
.blog-featured-title a:hover {
	color: var(--wp--preset--color--brand);
}
.blog-featured-excerpt {
	font-size: 16px;
	line-height: 1.7;
	color: var(--wp--preset--color--text-secondary);
	margin: 0 0 18px;
}
.blog-list-heading {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.4px;
	margin: 0 0 28px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--wp--preset--color--contrast);
}
/* === blog:card === */
.blog-card-grid {
	gap: 36px 32px;
}
.blog-card {
	background: var(--wp--preset--color--base);
	border-radius: var(--site-radius);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
	transform: translateY(-4px);
}
.blog-card-thumb {
	margin: 0 0 16px;
}
.blog-card-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--site-radius);
	transition: opacity 0.2s ease;
}
.blog-card:hover .blog-card-thumb img {
	opacity: 0.9;
}
.blog-card-body {
	padding: 0 2px;
}
.blog-card-cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	margin: 0 0 10px;
}
.blog-card-cat a {
	color: var(--wp--preset--color--brand);
	text-decoration: none;
}
.blog-card-cat a:hover {
	text-decoration: underline;
}
.blog-card-title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 1.45;
	margin: 0 0 10px;
}
.blog-card-title a {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}
.blog-card-title a:hover {
	color: var(--wp--preset--color--brand);
}
.blog-card-excerpt {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 14px;
}
.blog-card-date {
	font-size: 13px;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.blog-pagination {
	margin-top: 64px;
	gap: 8px;
}
.blog-pagination .wp-block-query-pagination-numbers,
.blog-pagination a,
.blog-pagination .page-numbers {
	font-weight: 700;
	color: var(--wp--preset--color--text-secondary);
	text-decoration: none;
}
.blog-pagination .page-numbers.current {
	color: var(--wp--preset--color--brand);
}
.blog-no-results {
	text-align: center;
	color: var(--wp--preset--color--text-muted);
	padding: 40px 0;
}
/* === blog:single === */
.blog-single {
	padding: 56px 6vw 80px;
}
.blog-single-head {
	text-align: left;
	margin-bottom: 36px;
}
.blog-single-cat {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.5px;
	margin: 0 0 18px;
}
.blog-single-cat a {
	color: var(--wp--preset--color--brand);
	text-decoration: none;
}
.blog-single-cat a:hover {
	text-decoration: underline;
}
.blog-single-title {
	font-size: clamp(30px, 4.4vw, 46px);
	font-weight: 900;
	letter-spacing: -1.2px;
	line-height: 1.25;
	margin: 0 0 22px;
}
.blog-single-excerpt {
	font-size: 19px;
	line-height: 1.75;
	color: var(--wp--preset--color--text-secondary);
	margin: 0 0 30px;
}
.blog-single-meta {
	padding-top: 22px;
	border-top: 1px solid var(--wp--preset--color--border);
	align-items: center;
	gap: 16px;
}
.blog-single-byline {
	gap: 8px;
	align-items: center;
}
.blog-single-author {
	font-size: 15px;
	font-weight: 700;
	color: var(--wp--preset--color--contrast);
}
.blog-single-author a {
	color: inherit;
	text-decoration: none;
}
.blog-single-date {
	font-size: 14px;
	color: var(--wp--preset--color--text-muted);
}
.blog-single-date::before {
	content: "·";
	margin-right: 8px;
	color: var(--wp--preset--color--text-muted);
}
.blog-single-hero {
	margin: 0 auto 44px;
	max-width: 900px;
}
.blog-single-hero img {
	width: 100%;
	border-radius: var(--site-radius-lg);
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
/* === blog:toc === */
.blog-toc {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--site-radius);
	padding: 24px 28px;
	margin: 0 auto 44px;
}
.blog-toc-title {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 14px;
}
.blog-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-toc-item {
	margin: 0;
	padding: 0;
}
.blog-toc-item + .blog-toc-item {
	margin-top: 4px;
}
.blog-toc-item.level-h3 {
	padding-left: 18px;
}
.blog-toc-list a {
	display: block;
	padding: 6px 0;
	font-size: 15px;
	line-height: 1.5;
	color: var(--wp--preset--color--text-secondary);
	text-decoration: none;
	border-left: 2px solid transparent;
	padding-left: 12px;
	margin-left: -12px;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.blog-toc-list a:hover {
	color: var(--wp--preset--color--brand);
}
.blog-toc-list a.is-active {
	color: var(--wp--preset--color--brand);
	font-weight: 700;
	border-left-color: var(--wp--preset--color--brand);
}
/* === blog:content === */
.blog-single .entry-content {
	font-size: 17px;
	line-height: 1.85;
	color: var(--wp--preset--color--text-secondary);
}
.blog-single .entry-content > * {
	margin-top: 0;
	margin-bottom: 1.5em;
}
.blog-single .entry-content h2 {
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.4;
	color: var(--wp--preset--color--contrast);
	margin: 2.2em 0 0.8em;
	padding-left: 14px;
	border-left: 5px solid var(--wp--preset--color--brand);
	scroll-margin-top: 100px;
}
.blog-single .entry-content h3 {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 1.45;
	color: var(--wp--preset--color--contrast);
	margin: 1.8em 0 0.6em;
	scroll-margin-top: 100px;
}
.blog-single .entry-content p {
	margin: 0 0 1.5em;
}
.blog-single .entry-content a {
	color: var(--wp--preset--color--brand);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.blog-single .entry-content ul,
.blog-single .entry-content ol {
	padding-left: 1.4em;
	margin: 0 0 1.5em;
}
.blog-single .entry-content li {
	margin-bottom: 0.5em;
}
.blog-single .entry-content img {
	border-radius: var(--site-radius);
}
.blog-single .entry-content figure {
	margin: 2em 0;
}
.blog-single .entry-content figcaption {
	font-size: 13.5px;
	color: var(--wp--preset--color--text-muted);
	text-align: center;
	margin-top: 10px;
}
.blog-single .entry-content blockquote {
	border-left: 4px solid var(--wp--preset--color--brand);
	background: var(--wp--preset--color--brand-light);
	border-radius: 0 var(--site-radius) var(--site-radius) 0;
	padding: 20px 26px;
	margin: 2em 0;
	font-size: 17px;
}
.blog-single .entry-content blockquote p {
	margin: 0;
	font-style: normal;
}
.blog-single .entry-content .wp-block-table {
	margin: 2em 0;
}
.blog-single .entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	border-radius: var(--site-radius);
	overflow: hidden;
}
.blog-single .entry-content th {
	background: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--base);
	font-weight: 700;
	padding: 12px 16px;
	text-align: left;
}
.blog-single .entry-content td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.blog-single .entry-content tr:nth-child(even) td {
	background: var(--wp--preset--color--surface);
}
.blog-callout {
	background: var(--wp--preset--color--brand-light);
	border-radius: var(--site-radius);
	padding: 22px 26px;
	margin: 2em 0;
}
.blog-callout p {
	margin: 0;
	font-size: 15.5px;
	color: var(--wp--preset--color--brand-dark);
}
/* === blog:share === */
.blog-share {
	gap: 10px;
	align-items: center;
}
.blog-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 50%;
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--text-secondary);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.blog-share-btn:hover {
	background: var(--wp--preset--color--brand);
	border-color: var(--wp--preset--color--brand);
	color: var(--wp--preset--color--base);
	transform: translateY(-2px);
}
.blog-share-btn.is-copied {
	background: var(--wp--preset--color--brand-dark);
	border-color: var(--wp--preset--color--brand-dark);
	color: var(--wp--preset--color--base);
}
.blog-share-foot {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--wp--preset--color--border);
	text-align: center;
}
.blog-share-foot-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 16px;
}
.blog-share-foot .blog-share {
	justify-content: center;
}
/* === blog:related === */
.blog-related {
	background: var(--wp--preset--color--surface);
	border-top: 1px solid var(--wp--preset--color--border);
	padding: 72px 6vw 88px;
}
.blog-related > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
.blog-related-head {
	align-items: baseline;
	gap: 16px;
	margin-bottom: 36px;
}
.blog-related-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.6px;
	margin: 0;
}
.blog-related-more {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
}
.blog-related-more a {
	color: var(--wp--preset--color--brand);
	text-decoration: none;
}
.blog-related-more a:hover {
	text-decoration: underline;
}
.blog-related .blog-card {
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	padding: 14px;
}
/* === blog:responsive === */
@media (max-width: 900px) {
	.blog-featured-cols {
		flex-wrap: wrap;
		gap: 24px;
	}
	.blog-featured-cols > .wp-block-column {
		flex-basis: 100% !important;
	}
	.pricing-grid {
		flex-wrap: wrap !important;
	}
	.pricing-card {
		flex: 1 1 260px !important;
	}
}
@media (max-width: 782px) {
	.blog-card-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 640px) {
	.blog-index,
	.blog-single {
		padding-left: 22px;
		padding-right: 22px;
	}
	.blog-card-grid {
		grid-template-columns: 1fr !important;
	}
	.blog-related {
		padding-left: 22px;
		padding-right: 22px;
	}
	.blog-single-meta {
		flex-direction: column;
		align-items: flex-start;
	}
	.blog-featured {
		padding: 16px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.blog-card,
	.blog-card-thumb img,
	.blog-share-btn {
		transition: none !important;
	}
	.blog-card:hover {
		transform: none;
	}
}

/* ============================================================
   Legal & Doc pages (privacy / terms / paid-terms / help)
   ============================================================ */
.legal-page {
	max-width: 800px;
	margin-inline: auto;
	padding: 60px 24px 40px;
}
.legal-page .legal-title {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1px;
	color: var(--wp--preset--color--contrast);
	margin-bottom: 12px;
}
.legal-page .legal-subtitle {
	font-size: 16px;
	color: var(--wp--preset--color--text-muted);
	border-bottom: 2px solid var(--wp--preset--color--brand-light);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.legal-page h2 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.3px;
	color: var(--wp--preset--color--brand);
	margin-top: 35px;
	margin-bottom: 14px;
}
.legal-page p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wp--preset--color--text-secondary);
	margin-bottom: 12px;
	text-align: justify;
}
.legal-page ul,
.legal-page ol {
	padding-left: 20px;
	margin-bottom: 16px;
}
.legal-page li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wp--preset--color--text-secondary);
	margin-bottom: 8px;
	text-align: justify;
}
.legal-page strong {
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
}
.legal-page table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	overflow: hidden;
}
.legal-page th,
.legal-page td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.legal-page th {
	background-color: var(--wp--preset--color--brand-light);
	color: var(--wp--preset--color--brand-dark);
	font-weight: 700;
}
.legal-page tr:last-child td {
	border-bottom: none;
}
.legal-info-box {
	background-color: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	padding: 20px;
	border-radius: 14px;
	margin-top: 40px;
}
.legal-info-box p {
	font-size: 14px;
	margin-bottom: 6px;
	text-align: left;
}
.legal-divider {
	border-top: 3px double var(--wp--preset--color--border);
	margin-top: 80px;
	padding-top: 40px;
}
.legal-divider .legal-title {
	font-size: 28px;
}

/* ---------------- Help Center ---------------- */
.help-hero {
	background: var(--wp--preset--color--brand-light);
	padding: 72px 24px;
	text-align: center;
}
.help-hero .help-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--wp--preset--color--brand);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.help-hero .help-title {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -1px;
	color: var(--wp--preset--color--contrast);
	margin-bottom: 14px;
}
.help-hero .help-subtitle {
	font-size: 17px;
	color: var(--wp--preset--color--text-secondary);
	max-width: 620px;
	margin-inline: auto;
}
.help-body {
	max-width: 820px;
	margin-inline: auto;
	padding: 60px 24px;
}
.help-body h2 {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--wp--preset--color--contrast);
	margin-top: 48px;
	margin-bottom: 8px;
}
.help-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--wp--preset--color--brand);
	margin-top: 24px;
	margin-bottom: 10px;
}
.help-body p,
.help-body li {
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--text-secondary);
}
.help-cat-grid {
	gap: 20px;
}
.help-cat-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 16px;
	padding: 26px 24px;
	transition: transform .18s ease, box-shadow .18s ease;
}
.help-cat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(20,40,160,0.10);
}
.help-cat-card h3 {
	margin-top: 0;
}
.help-step {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	padding: 22px 24px;
	margin-bottom: 14px;
}
.help-step h3 {
	margin-top: 0;
	color: var(--wp--preset--color--contrast);
}
.help-faq {
	border-top: 1px solid var(--wp--preset--color--border);
	padding: 22px 4px 20px;
}
.help-faq h3 {
	color: var(--wp--preset--color--contrast);
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 17px;
}
.help-table th,
.help-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
@media (max-width: 768px) {
	.help-hero .help-title { font-size: 30px; }
	.legal-page .legal-title { font-size: 28px; }
}
