/**
 * ExamPrep Point — "Scholar" design system.
 *
 * Identity: an editorial exam-prep brand. Deep-teal + emerald on warm paper,
 * a Fraunces serif display paired with Inter for UI. Calm flat surfaces,
 * generous rhythm, full light/dark support. Pairs with the plugin's
 * member-area component styles (epam-*).
 */

/* ---------------------------------------------------------------- Tokens */
:root {
	/* Brand */
	--brand: #0f766e;          /* deep teal */
	--brand-dark: #0b5a54;
	--accent: #10b981;         /* emerald — success/highlight */
	--gold: #b0791f;           /* premium tier */
	--danger: #dc2626;

	/* Neutrals (warm, faintly green-biased — chosen, not defaulted) */
	--ink: #0b1f1d;
	--text: #3d4a47;
	--muted: #6b7a76;
	--line: #e4eae7;
	--bg: #ffffff;
	--soft: #f4f8f6;
	--mute: #e9f0ec;
	--card: #ffffff;

	/* Effects */
	--radius: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 1px 3px rgba(11,31,29,.06);
	--shadow: 0 12px 34px rgba(11,31,29,.09);
	--shadow-lg: 0 30px 70px rgba(11,31,29,.16);
	--ring: 0 0 0 3px rgba(15,118,110,.18);
	--container: 1160px;

	/* Type */
	--font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
	:root {
		--brand: #2dd4bf;
		--brand-dark: #14b8a6;
		--accent: #34d399;
		--gold: #d6a94e;
		--ink: #eaf2ef;
		--text: #b4c3be;
		--muted: #7f918b;
		--line: #223330;
		--bg: #07110f;
		--soft: #0b1815;
		--mute: #12211d;
		--card: #0e1c19;
		--shadow-sm: 0 1px 3px rgba(0,0,0,.4);
		--shadow: 0 12px 34px rgba(0,0,0,.45);
		--shadow-lg: 0 30px 70px rgba(0,0,0,.6);
		--ring: 0 0 0 3px rgba(45,212,191,.25);
	}
}
:root[data-theme="dark"] {
	--brand: #2dd4bf; --brand-dark: #14b8a6; --accent: #34d399; --gold: #d6a94e;
	--ink: #eaf2ef; --text: #b4c3be; --muted: #7f918b; --line: #223330;
	--bg: #07110f; --soft: #0b1815; --mute: #12211d; --card: #0e1c19;
	--shadow-sm: 0 1px 3px rgba(0,0,0,.4); --shadow: 0 12px 34px rgba(0,0,0,.45);
	--shadow-lg: 0 30px 70px rgba(0,0,0,.6); --ring: 0 0 0 3px rgba(45,212,191,.25);
}
:root[data-theme="light"] {
	--brand: #0f766e; --brand-dark: #0b5a54; --accent: #10b981; --gold: #b0791f;
	--ink: #0b1f1d; --text: #3d4a47; --muted: #6b7a76; --line: #e4eae7;
	--bg: #ffffff; --soft: #f4f8f6; --mute: #e9f0ec; --card: #ffffff;
	--shadow-sm: 0 1px 3px rgba(11,31,29,.06); --shadow: 0 12px 34px rgba(11,31,29,.09);
	--shadow-lg: 0 30px 70px rgba(11,31,29,.16); --ring: 0 0 0 3px rgba(15,118,110,.18);
}

/* ------------------------------------------------------------ Base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -.015em;
	text-wrap: balance;
	margin: 0;
}
.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12px;
	font-weight: 700;
	color: var(--brand);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; z-index: 999; background: var(--card); padding: 10px 16px; border-radius: 8px; top: 8px; }
.skip-link:focus { left: 16px; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ------------------------------------------------------------ Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
	font-family: var(--font-body); text-decoration: none; cursor: pointer;
	border: 1px solid transparent; line-height: 1;
	transition: transform .12s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -8px rgba(15,118,110,.65); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
/* On dark grounds the brand is a bright teal, so primary buttons need dark ink. */
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn--primary { color: #04211d; } }
:root[data-theme="dark"] .btn--primary { color: #04211d; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { color: var(--brand); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------ Header */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--bg) 80%, transparent);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 21px; letter-spacing: -.02em; }
.brand__mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(150deg, var(--brand), var(--accent)); color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 800; letter-spacing: .3px; box-shadow: 0 8px 18px -6px rgba(15,118,110,.7); }
:root[data-theme="dark"] .brand__mark { color: #04211d; }
.custom-logo-link { display: inline-flex; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.nav-menu { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.nav-menu a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-menu a:hover { color: var(--brand); }
.site-nav__account { display: flex; align-items: center; gap: 12px; }
.header-link { color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; }
.header-link:hover { color: var(--brand); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.theme-toggle { background: var(--mute); border: 1px solid var(--line); color: var(--ink); width: 40px; height: 40px; border-radius: 11px; cursor: pointer; font-size: 15px; display: inline-grid; place-items: center; transition: border-color .15s; }
.theme-toggle:hover { border-color: var(--brand); }

/* ------------------------------------------------------------ Hero */
.hero { position: relative; overflow: hidden; padding: 92px 0 96px; background: var(--soft); }
.hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(680px 340px at 88% -8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
		radial-gradient(560px 300px at -6% 108%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 70%);
	pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero .eyebrow { margin-bottom: 20px; display: inline-block; }
.hero__title { font-size: clamp(38px, 5.4vw, 60px); font-weight: 600; margin: 0 0 20px; }
.hero__title .hl { position: relative; white-space: nowrap; color: var(--brand); }
.hero__title .hl::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: .08em; height: .34em; background: color-mix(in srgb, var(--accent) 34%, transparent); border-radius: 4px; z-index: -1; }
.hero__lead { font-size: 19px; color: var(--text); max-width: 500px; margin: 0 0 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__points { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: 14px; font-weight: 600; }
.hero__points li { display: inline-flex; align-items: center; gap: 7px; }
.hero__points svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* Hero product art */
.hero__art { position: relative; min-height: 380px; }
.pcard { position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 24px; }
.pcard--q { top: 0; right: 4px; width: 320px; }
.pcard--score { bottom: 6px; left: 0; width: 208px; text-align: center; z-index: 2; }
.pcard__ring { width: 118px; height: 118px; margin: 4px auto 14px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--accent) 0 86%, var(--mute) 86% 100%); }
.pcard__ring span { width: 88px; height: 88px; border-radius: 50%; background: var(--card); display: grid; place-items: center; font-family: var(--font-display); font-size: 27px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.pcard--score p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; }
.pcard__label { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.pcard__q { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); margin: 10px 0 16px; line-height: 1.3; }
.pcard__opt { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; margin-bottom: 9px; color: var(--text); }
.pcard__opt.is-correct { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--brand-dark); font-weight: 600; }
:root[data-theme="dark"] .pcard__opt.is-correct { color: var(--accent); }
.pcard__opt .tick { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 11px; background: var(--mute); }
.pcard__opt.is-correct .tick { background: var(--accent); color: #04211d; }

/* ------------------------------------------------------------ Trust band */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.trust__item { text-align: center; }
.trust__num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.trust__label { color: var(--muted); font-size: 14px; font-weight: 500; }
.trust__item + .trust__item { border-left: 1px solid var(--line); }

/* ------------------------------------------------------------ Sections */
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 40px); margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }

.features { padding: 96px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .2s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 25px; margin-bottom: 18px; background: color-mix(in srgb, var(--brand) 10%, transparent); }
.feature h3 { font-size: 19px; margin: 0 0 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

.steps-section { padding: 40px 0 96px; background: var(--soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-item { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; }
.step-item__n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(150deg, var(--brand), var(--accent)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 18px; }
:root[data-theme="dark"] .step-item__n { color: #04211d; }
.step-item h3 { font-size: 19px; margin: 0 0 8px; }
.step-item p { color: var(--muted); margin: 0; font-size: 15px; }

/* Value / why band */
.value { padding: 96px 0; }
.value__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.value__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 18px; }
.value__list li { display: flex; gap: 14px; align-items: flex-start; }
.value__list .mk { flex: none; width: 30px; height: 30px; border-radius: 9px; background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--brand); display: grid; place-items: center; font-weight: 700; margin-top: 2px; }
.value__list b { color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 17px; display: block; }
.value__list span { color: var(--muted); font-size: 15px; }
.value__panel { background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 12%, var(--card)), var(--card)); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow); }
.value__panel h3 { font-size: 22px; margin: 0 0 8px; }
.value__stat { display: flex; align-items: baseline; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.value__stat:last-child { border-bottom: none; }
.value__stat b { font-family: var(--font-display); font-size: 30px; color: var(--brand); font-variant-numeric: tabular-nums; }
.value__stat span { color: var(--muted); font-size: 15px; }

/* ------------------------------------------------------------ Pricing */
.pricing { padding: 96px 0; background: var(--soft); }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 390px)); gap: 26px; justify-content: center; align-items: start; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 38px 32px; position: relative; }
.price-card--featured { border: 1.5px solid var(--brand); box-shadow: var(--shadow); }
.price-card__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; }
:root[data-theme="dark"] .price-card__tag { color: #04211d; }
.price-card h3 { font-size: 24px; margin: 0 0 6px; }
.price-card__price { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--ink); margin: 0 0 4px; letter-spacing: -.02em; }
.price-card__cycle { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; }
.price-card li { padding-left: 30px; position: relative; color: var(--text); }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--brand); border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; }

/* ------------------------------------------------------------ FAQ */
.faq { padding: 96px 0; }
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .ico { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--mute); display: grid; place-items: center; transition: transform .2s, background .2s; font-size: 16px; color: var(--brand); }
.faq__item[open] .faq__q .ico { transform: rotate(45deg); background: var(--brand); color: #fff; }
:root[data-theme="dark"] .faq__item[open] .faq__q .ico { color: #04211d; }
.faq__a { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }
.faq__item summary::-webkit-details-marker { display: none; }

/* ------------------------------------------------------------ CTA band */
.cta-band { padding: 84px 0; background: linear-gradient(150deg, var(--brand-dark), var(--brand) 55%, var(--accent)); }
.cta-band__inner { text-align: center; color: #fff; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 42px); margin: 0 0 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 19px; margin: 0 0 30px; }

/* ------------------------------------------------------------ Content pages */
.page-narrow { max-width: 760px; padding-top: 64px; padding-bottom: 80px; }
.page-wide { padding-top: 64px; padding-bottom: 80px; }
.page-article__title { font-size: clamp(30px, 4vw, 44px); margin: 0 0 12px; }
.page-article__meta { color: var(--muted); font-size: 14px; }
.page-article__thumb { margin: 22px 0; border-radius: var(--radius-lg); overflow: hidden; }
.entry-content { font-size: 18px; color: var(--text); }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2 { margin-top: 1.8em; font-size: 30px; }
.entry-content h3 { margin-top: 1.5em; font-size: 23px; }
.entry-content a { color: var(--brand); }
.entry-content blockquote { border-left: 3px solid var(--brand); margin: 1.6em 0; padding: 8px 22px; color: var(--muted); background: var(--soft); border-radius: 0 10px 10px 0; font-style: italic; }
.entry-content code { background: var(--mute); padding: 2px 7px; border-radius: 6px; font-size: .9em; }

.auth-page { background: var(--soft); min-height: calc(100vh - 76px); display: flex; align-items: center; padding: 64px 0; position: relative; overflow: hidden; }
.auth-page::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% -12%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 70%); pointer-events: none; }
.auth-page__inner { position: relative; width: 100%; }
.bonus-page { padding: 72px 0; background: var(--soft); }
.upgrade-page { padding: 72px 0; }

/* ------------------------------------------------------------ Member area */
.member-area { background: var(--soft); min-height: calc(100vh - 76px); }
.member-nav { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 76px; z-index: 40; }
.member-nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; gap: 4px; overflow-x: auto; }
.member-nav__link { display: inline-flex; align-items: center; gap: 8px; padding: 17px 16px; color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .15s, border-color .15s; }
.member-nav__link:hover { color: var(--ink); }
.member-nav__link.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.member-area__body { padding: 44px 24px 80px; }

/* ------------------------------------------------------------ Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .15s, box-shadow .25s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__title { font-size: 20px; margin: 0 0 8px; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__meta { color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.read-more { font-weight: 600; text-decoration: none; }
.pagination { margin-top: 44px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 9px 15px; border: 1px solid var(--line); border-radius: 9px; margin: 0 3px; text-decoration: none; color: var(--text); }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }
:root[data-theme="dark"] .pagination .current { color: #04211d; }
.archive-head { margin-bottom: 30px; }

/* ------------------------------------------------------------ 404 */
.error-404 { text-align: center; padding-top: 88px; padding-bottom: 110px; }
.error-404__code { font-family: var(--font-display); font-size: 108px; font-weight: 600; background: linear-gradient(150deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }

/* ------------------------------------------------------------ Footer */
.site-footer { background: #071613; color: #b8c6c1; padding: 64px 0 32px; }
.site-footer__inner { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand, .site-footer .brand__name { color: #fff; }
.site-footer__tag { color: #7d938c; font-size: 15px; max-width: 340px; margin: 16px 0 0; }
.footer-menu { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; padding: 0; margin: 0; }
.footer-menu a { color: #b8c6c1; text-decoration: none; font-size: 14px; }
.footer-menu a:hover { color: #fff; }
.site-footer__legal { padding-top: 26px; }
.disclaimer { color: #5c716a; font-size: 12px; max-width: 820px; margin: 0 0 10px; }
.copyright { color: #7d938c; font-size: 13px; margin: 0; }

/* ------------------------------------------------------------ Responsive */
@media (max-width: 1000px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__art { display: none; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.value__grid { grid-template-columns: 1fr; gap: 36px; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.site-nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--card); border-bottom: 1px solid var(--line); padding: 16px 24px 24px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s cubic-bezier(.2,.8,.2,1); }
	.site-nav.is-open { transform: translateY(0); }
	.nav-menu { flex-direction: column; gap: 2px; }
	.nav-menu a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--mute); }
	.site-nav__account { margin-top: 16px; justify-content: flex-start; flex-wrap: wrap; }
	.trust__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
	.trust__item:nth-child(3) { border-left: none; }
}
@media (max-width: 620px) {
	body { font-size: 16px; }
	.steps, .feature-grid, .price-grid, .post-grid { grid-template-columns: 1fr; }
	.hero { padding: 60px 0 66px; }
	.features, .pricing, .value, .faq { padding: 62px 0; }
	.trust__inner { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto; } }
