/* AutoPost marketing site — single stylesheet, no build step. */

:root {
	--ink: #0b0d13;
	--ink-2: #12151f;
	--ink-3: #1b1f2c;
	--text: #191c25;
	--muted: #4f5768;
	--muted-2: #737c8d;
	--line: #d7dce7;
	--line-strong: #c3cbda;
	--line-dark: rgba(255, 255, 255, 0.18);
	--bg: #ffffff;
	--bg-alt: #f4f6fa;
	--cyan: #25f4ee;
	--pink: #fe2c55;
	--green: #1f9d55;
	--amber: #b7791f;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .05), 0 4px 12px -4px rgba(16, 24, 40, .12);
	--shadow-md: 0 12px 30px -8px rgba(16, 24, 40, .18), 0 2px 6px rgba(16, 24, 40, .07);
	--shadow-lg: 0 30px 60px -20px rgba(10, 14, 25, .35);
	--wrap: 1140px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; }
img { height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
	outline: 2px solid var(--pink);
	outline-offset: 3px;
	border-radius: 4px;
}

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 1.35rem + 3vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }
strong { font-weight: 650; }
code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .875em;
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: .1em .38em;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 780px; }

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

.skip-link {
	position: absolute; left: 12px; top: -60px; z-index: 200;
	background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 8px;
	box-shadow: var(--shadow-md); transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Header ---------- */

.site-head {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-head__inner { display: flex; align-items: center; gap: 18px; min-height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; font-size: 1.06rem; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-weight: 500; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); line-height: 1; margin-top: 2px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
	padding: 8px 12px; border-radius: 9px; font-size: .93rem; font-weight: 500; color: var(--muted);
	transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--text); background: var(--bg-alt); }
.nav a[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav__cta { margin-left: 10px; }

/* `.nav a` is more specific than the .btn--* classes, so the CTA has to restate
   its own colours or it renders as muted nav-link text on a solid background. */
.nav .btn--accent, .nav .btn--accent:hover { color: #fff; }
.nav .btn--accent { background: var(--pink); }
.nav .btn--accent:hover { background: #ec1f47; }
.nav .btn--primary, .nav .btn--primary:hover { color: #fff; }
.nav .btn--primary { background: var(--ink); }
.nav .btn--primary:hover { background: #000; }

.menu-toggle {
	display: none; margin-left: auto; background: #fff; border: 1px solid var(--line);
	border-radius: 10px; width: 42px; height: 38px; cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 17px; height: 2px; background: var(--text); position: relative; border-radius: 2px; }
.menu-toggle span::before, .menu-toggle span::after {
	content: ''; position: absolute; left: 0; width: 17px; height: 2px; background: var(--text); border-radius: 2px;
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

@media (max-width: 940px) {
	.menu-toggle { display: flex; }
	.nav {
		position: absolute; top: 100%; left: 0; right: 0; margin: 0;
		flex-direction: column; align-items: stretch; gap: 2px;
		background: #fff; border-bottom: 1px solid var(--line);
		padding: 10px 18px 18px; box-shadow: var(--shadow-md);
	}
	.nav[hidden] { display: none; }
	.nav a { padding: 11px 10px; font-size: 1rem; }
	.nav__cta { margin: 8px 0 0; text-align: center; }
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 20px; border-radius: 11px; font-size: .95rem; font-weight: 600;
	border: 1px solid transparent; cursor: pointer; white-space: nowrap;
	transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 15px; font-size: .88rem; border-radius: 9px; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: #000; }

.btn--accent { background: var(--pink); color: #fff; box-shadow: 0 10px 24px -10px rgba(254, 44, 85, .8); }
.btn--accent:hover { background: #ec1f47; }

.btn--outline { background: #fff; color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: #cfd4e0; background: var(--bg-alt); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f1f3f8; }

.btn--onDark { background: rgba(255, 255, 255, .13); color: #fff; border-color: rgba(255, 255, 255, .26); }
.btn--onDark:hover { background: rgba(255, 255, 255, .22); }

.link-arrow { font-weight: 600; color: var(--text); border-bottom: 1px solid rgba(0,0,0,.18); padding-bottom: 1px; }
.link-arrow:hover { border-color: var(--pink); color: var(--pink); }

/* ---------- Sections ---------- */

.section { padding: clamp(54px, 5vw, 92px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding-top: clamp(34px, 3vw, 52px); }

.section-head { max-width: 720px; margin: 0 auto clamp(34px, 3vw, 54px); text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }

.kicker {
	display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.kicker--muted { color: var(--muted-2); }

/* ---------- Hero ---------- */

.hero {
	position: relative; overflow: hidden; color: #fff;
	background: radial-gradient(1100px 520px at 12% -8%, rgba(37, 244, 238, .18), transparent 60%),
		radial-gradient(900px 480px at 88% 8%, rgba(254, 44, 85, .22), transparent 62%),
		linear-gradient(180deg, #0b0d13 0%, #11141d 100%);
	padding: clamp(56px, 6vw, 104px) 0 clamp(56px, 6vw, 96px);
}
.hero::after {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(900px 500px at 50% 0%, #000 25%, transparent 78%);
	-webkit-mask-image: radial-gradient(900px 500px at 50% 0%, #000 25%, transparent 78%);
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lede { font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); color: rgba(255, 255, 255, .82); max-width: 34em; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(30px, 4vw, 60px); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__badge {
	display: inline-flex; align-items: center; gap: 9px; padding: 6px 13px 6px 7px;
	border: 1px solid var(--line-dark); border-radius: 999px; background: rgba(255, 255, 255, .06);
	font-size: .82rem; color: rgba(255, 255, 255, .82); margin-bottom: 20px;
}
.hero__badge b { font-weight: 650; color: #fff; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(37,244,238,.18); margin-left: 5px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .87rem; color: rgba(255,255,255,.75); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { flex: none; color: var(--cyan); }

.hero--page { padding: clamp(46px, 4.5vw, 74px) 0 clamp(46px, 4.5vw, 70px); }
.hero__mark {
	width: 52px; height: 52px; border-radius: 15px; background: #fff;
	display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-md);
}
.hero--page .hero__grid { grid-template-columns: 1fr; }
.hero--page .lede { max-width: 46em; }

/* ---------- Cards & grids ---------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted); font-size: .95rem; }
.card--flat { box-shadow: none; }
.card--onDark { background: rgba(255,255,255,.045); border-color: var(--line-dark); color: rgba(255,255,255,.78); box-shadow: none; }
.card--onDark h3 { color: #fff; }
.card--onDark p { color: rgba(255,255,255,.66); }

.icon-chip {
	width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
	background: #eceff6; border: 1px solid var(--line);
	color: var(--ink); margin-bottom: 16px;
}
.icon-chip svg { width: 21px; height: 21px; }
.card--onDark .icon-chip { background: rgba(255,255,255,.08); border-color: var(--line-dark); color: #fff; }

/* Network brand marks — one flat colour each, no gradients. */
.net-mark--instagram { color: #c13584; }
.net-mark--tiktok    { color: #0b0d13; }
.net-mark--facebook  { color: #1877f2; }
.net-mark--pinterest { color: #d3002a; }
.net-mark--x         { color: #0b0d13; }

.icon-chip--instagram { background: #faeef5; border-color: #f0d8e6; }
.icon-chip--tiktok    { background: #e7eff1; border-color: #d1e0e3; }
.icon-chip--facebook  { background: #eaf1fe; border-color: #d5e3fb; }
.icon-chip--pinterest { background: #fdecee; border-color: #f7d7dc; }
.icon-chip--x         { background: #e9eaef; border-color: #d8dae1; }
.card--onDark .icon-chip[class*="icon-chip--"] { background: rgba(255,255,255,.08); border-color: var(--line-dark); }

.net-cell { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.net-cell svg { flex: none; }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 780px) { .stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.stat { padding: 18px 20px; border-radius: var(--radius); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); }
.stat b { display: block; font-size: 1.55rem; letter-spacing: -.02em; color: #fff; line-height: 1.2; }
.stat span { font-size: .84rem; color: rgba(255,255,255,.72); }

/* ---------- Feature rows ---------- */

.feature-row {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 64px); align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(48px, 5vw, 86px); }
.feature-row--flip .feature-row__media { order: -1; }
@media (max-width: 860px) {
	.feature-row { grid-template-columns: 1fr; }
	.feature-row--flip .feature-row__media { order: 0; }
}
.feature-row h2 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); }
.feature-row p { color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: .6rem; color: #3d4553; }
.check-list li::before {
	content: ''; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%;
	background: rgba(31, 157, 85, .12);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d55' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.check-list li b { color: var(--text); }

/* ---------- Mock UI ---------- */

.mock {
	border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
	box-shadow: var(--shadow-md); overflow: hidden; font-size: .86rem;
	color: var(--text);
}
.mock--onDark { border-color: var(--line-dark); box-shadow: var(--shadow-lg); }
.mock__bar {
	display: flex; align-items: center; gap: 7px; padding: 11px 14px;
	background: var(--bg-alt); border-bottom: 1px solid var(--line);
}
.mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: #c2c8d4; }
.mock__bar span { margin-left: 8px; font-size: .76rem; color: var(--muted); letter-spacing: .01em; }
.mock__body { padding: 18px; display: grid; gap: 12px; background: #fff; }
.mock__title { font-weight: 650; font-size: .95rem; }
.mock__row {
	display: flex; align-items: center; gap: 12px; padding: 11px 13px;
	border: 1px solid var(--line); border-radius: 11px; background: #fff;
}
.mock__row--muted { background: var(--bg-alt); }
.mock__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 700; }
.mock__val { font-weight: 600; }
.mock__hint { color: var(--muted); font-size: .82rem; }
.mock__pill {
	margin-left: auto; font-size: .74rem; font-weight: 650; padding: 3px 9px; border-radius: 999px;
	background: rgba(31,157,85,.12); color: var(--green);
}
.mock__pill--pending { background: rgba(183,121,31,.14); color: var(--amber); }
.mock__pill--info { background: rgba(37,244,238,.18); color: #0b8a86; }
.mock__pill--fail { background: rgba(254,44,85,.11); color: #d3002a; }
.mock__thumb { width: 38px; height: 38px; border-radius: 9px; flex: none; background: #dfe4ee; border: 1px solid #cdd5e4; }
.mock__caption { border: 1px dashed var(--line-strong); border-radius: 11px; padding: 12px 13px; color: var(--muted); background: var(--bg-alt); }
.mock__caption b { color: var(--text); }
.mock__meter { height: 7px; border-radius: 999px; background: #e6eaf2; overflow: hidden; margin-top: 9px; }
.mock__meter i { display: block; height: 100%; border-radius: 999px; background: var(--ink); }
.mock__meter--warn i { background: var(--amber); }

.chan-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chan {
	display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600;
	padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; color: var(--muted);
}
.chan--on { border-color: rgba(254,44,85,.35); background: rgba(254,44,85,.06); color: var(--pink); }
.chan i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.phone {
	width: min(300px, 100%); margin: 0 auto; border-radius: 34px; padding: 10px;
	background: linear-gradient(160deg, #23262f, #0d0f15); box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255,255,255,.12);
}
.phone__screen {
	position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 9 / 16;
	background: linear-gradient(200deg, #2b2f3d 0%, #14161e 55%, #0b0d13 100%);
	display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.phone__screen::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(300px 300px at 70% 22%, rgba(37,244,238,.22), transparent 65%),
		radial-gradient(320px 320px at 24% 62%, rgba(254,44,85,.24), transparent 68%);
}
.phone__tag {
	position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .68rem; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
	background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.2);
}
.phone__meta { position: relative; z-index: 2; padding: 16px 15px 20px; }
.phone__user { display: flex; align-items: center; gap: 8px; font-weight: 650; font-size: .84rem; margin-bottom: 8px; }
.phone__user i { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.28); flex: none; }
.phone__cap { font-size: .8rem; line-height: 1.5; color: rgba(255,255,255,.86); margin: 0 0 8px; }
.phone__tags { font-size: .78rem; color: var(--cyan); }

/* ---------- Flow strip ---------- */

.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; margin: 0 0 clamp(30px, 3vw, 46px); }
.flow__step {
	flex: 1 1 168px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 16px 17px; box-shadow: var(--shadow-sm);
}
.flow__step .icon-chip { width: 34px; height: 34px; border-radius: 10px; margin-bottom: 11px; }
.flow__step .icon-chip svg { width: 17px; height: 17px; }
.flow__step b { display: block; font-size: .93rem; letter-spacing: -.01em; }
.flow__step span { display: block; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.flow__arrow { flex: none; align-self: center; color: var(--line-strong); }
.flow__arrow svg { width: 18px; height: 18px; display: block; }
@media (max-width: 820px) { .flow__arrow { display: none; } }

.flow__nets { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }
.flow__nets .icon-chip { width: 24px; height: 24px; border-radius: 7px; margin: 0; }
.flow__nets .icon-chip svg { width: 13px; height: 13px; }

/* ---------- Aspect-ratio set ---------- */

.ratio-set {
	display: flex; flex-wrap: wrap; gap: clamp(14px, 2vw, 26px);
	align-items: flex-end; justify-content: center;
	margin: 0 0 clamp(30px, 3vw, 44px);
}
.ratio { text-align: center; }
.ratio__frame {
	height: 168px; width: auto; border-radius: 12px; border: 1px solid var(--line-strong);
	background: #eaeef6; display: grid; place-items: center; color: var(--muted-2);
	box-shadow: var(--shadow-sm); overflow: hidden; position: relative;
}
.ratio__frame .icon-chip { margin: 0; background: #fff; border-color: var(--line); }
.ratio__kind {
	position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
	font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: var(--muted-2);
}
.ratio--9x16 .ratio__frame { aspect-ratio: 9 / 16; }
.ratio--1x1 .ratio__frame { aspect-ratio: 1 / 1; }
.ratio--4x5 .ratio__frame { aspect-ratio: 4 / 5; }
.ratio--2x3 .ratio__frame { aspect-ratio: 2 / 3; }
.ratio--16x9 .ratio__frame { aspect-ratio: 16 / 9; }
.ratio b { display: block; margin-top: 10px; font-size: .88rem; }
.ratio span { display: block; font-size: .8rem; color: var(--muted); }
@media (max-width: 620px) { .ratio__frame { height: 118px; } }

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; gap: 18px; }
.steps--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.steps--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .steps--3, .steps--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .steps--3, .steps--4 { grid-template-columns: 1fr; } }
.step {
	position: relative; counter-increment: step; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.step::before {
	content: counter(step); display: grid; place-items: center; width: 32px; height: 32px;
	border-radius: 10px; background: var(--ink); color: #fff; font-weight: 700; font-size: .92rem;
	margin-bottom: 15px;
}
.step h3 { font-size: 1.04rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

.steps--rows { grid-template-columns: 1fr; gap: 14px; }
.steps--rows .step { display: grid; grid-template-columns: 32px 1fr; gap: 4px 18px; align-items: start; }
.steps--rows .step::before { margin-bottom: 0; grid-row: span 2; }

/* ---------- Table ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data th { background: #eef1f7; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: #3d4553; font-weight: 700; }
table.data tr:last-child td { border-bottom: none; }
table.data--tight { min-width: 0; }
table.data td b { font-weight: 650; }

/* ---------- Pricing ---------- */

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: start; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.price-card--featured { border-color: var(--ink); box-shadow: var(--shadow-md); position: relative; }
.price-card__flag {
	position: absolute; top: -12px; left: 26px; background: var(--ink); color: #fff;
	font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	padding: 5px 11px; border-radius: 999px;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: .25em; }
.price-card__sub { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.price b { font-size: 2.3rem; letter-spacing: -.03em; line-height: 1; }
.price span { color: var(--muted); font-size: .9rem; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.price-card li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--muted); }
.price-card li::before {
	content: ''; position: absolute; left: 0; top: .45em; width: 16px; height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23191c25' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 15px; background-repeat: no-repeat; background-position: center;
	opacity: .8;
}
.price-card .btn { margin-top: auto; }

/* ---------- FAQ ---------- */

.faq { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary {
	cursor: pointer; padding: 17px 52px 17px 20px; font-weight: 600; position: relative; list-style: none;
	transition: background .12s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-alt); }
.faq summary::after {
	content: ''; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px; margin-top: -6px;
	border-right: 2px solid var(--text); border-bottom: 2px solid var(--text);
	transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq__answer { padding: 0 20px 20px; color: #3d4553; font-size: .96rem; }
.faq__answer p:last-child, .faq__answer ul:last-child { margin-bottom: 0; }

/* ---------- Callouts ---------- */

.callout {
	border: 1px solid var(--line); border-left: 3px solid var(--pink); border-radius: 12px;
	background: var(--bg-alt); padding: 18px 20px; margin: 24px 0; font-size: .95rem;
}
.callout--info { border-left-color: #0b8a86; }
.callout--ok { border-left-color: var(--green); }
.callout strong { display: block; margin-bottom: 4px; color: var(--text); }
.callout p:last-child { margin-bottom: 0; }
.callout p { color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band {
	color: #fff; text-align: center; padding: clamp(48px, 5vw, 84px) 0;
	background: radial-gradient(700px 340px at 22% 0%, rgba(37,244,238,.18), transparent 62%),
		radial-gradient(700px 340px at 80% 100%, rgba(254,44,85,.22), transparent 64%),
		linear-gradient(180deg, #11141d, #0b0d13);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 46em; margin: 0 auto 26px; }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Prose (legal, articles) ---------- */

.prose { font-size: 1.02rem; }
.prose > h2 { font-size: 1.5rem; margin-top: 2.2em; padding-top: .2em; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { font-size: 1.14rem; margin-top: 1.8em; }
.prose p, .prose li { color: #2e3342; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose a { color: var(--pink); border-bottom: 1px solid rgba(254,44,85,.35); }
.prose a:hover { border-color: var(--pink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose .table-scroll { margin: 1.5em 0; }
.prose > ul > li > strong:first-child { color: var(--text); }

.doc-meta { color: var(--muted); font-size: .9rem; margin: 0 0 8px; }

.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 0 0 34px; }
.toc h2 { font-size: .78rem !important; text-transform: uppercase; letter-spacing: .1em; color: #3d4553; margin: 0 0 12px !important; padding: 0 !important; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 28px; }
@media (max-width: 640px) { .toc ol { columns: 1; } }
.toc li { font-size: .93rem; margin-bottom: .35rem; }
.toc a { color: var(--text); border: none; }
.toc a:hover { color: var(--pink); }

/* ---------- Article cards ---------- */

.post-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
	transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.post-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.post-card h3 { font-size: 1.08rem; }
.post-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.post-card__more { font-weight: 650; font-size: .9rem; margin-top: 8px; color: var(--pink); }

.crumbs { font-size: .87rem; color: var(--muted); margin: 0 0 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--pink); }
.crumbs span { padding: 0 6px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: clamp(28px, 4vw, 54px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 15px 0; border-bottom: 1px solid var(--line); margin: 0; }
.info-list li:last-child { border-bottom: none; }
.info-list .mock__label { display: block; margin-bottom: 3px; }
.info-list a { font-weight: 600; color: var(--text); }
.info-list a:hover { color: var(--pink); }

/* ---------- Footer ---------- */

.site-foot { background: var(--ink); color: rgba(255,255,255,.74); padding: clamp(44px, 4vw, 64px) 0 28px; font-size: .92rem; }
.site-foot__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, .8fr)); gap: 34px 24px; }
@media (max-width: 1040px) { .site-foot__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 780px) { .site-foot__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .site-foot__grid { grid-template-columns: 1fr; } }
.site-foot .brand { color: #fff; margin-bottom: 14px; }
.site-foot p { color: rgba(255,255,255,.68); font-size: .9rem; max-width: 34em; }
.site-foot h4 { color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: .5rem; }
.site-foot a:hover { color: #fff; }
.site-foot__bottom {
	display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center;
	margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: .85rem;
}
.site-foot__bottom p { margin: 0; }
.site-foot .site-foot__disclaimer { color: rgba(255,255,255,.55); font-size: .8rem; margin-top: 14px; max-width: 74em; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
