/* ====== Tokens ====== */
:root {
	--accent: #2dabf9;
	--accent-2: #0f8fe0;
	--accent-soft: #E7F5FE;
	--ink: #0E0F12;
	--ink-2: #1B1D22;
	--text: #2A2D34;
	--muted: #6B7280;
	--line: #E8E9EC;
	--bg: #FFFFFF;
	--bg-soft: #F7F7F5;
	--bg-card: #FFFFFF;
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(15,17,21,.04), 0 1px 1px rgba(15,17,21,.03);
	--shadow: 0 4px 16px -4px rgba(15,17,21,.08), 0 2px 6px -2px rgba(15,17,21,.05);
	--shadow-lg: 0 24px 48px -16px rgba(15,17,21,.18), 0 8px 16px -8px rgba(15,17,21,.08);
	--container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.55;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { color: var(--ink); margin: 0; letter-spacing: -0.01em; font-weight: 700; }
h1 { font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: 20px; line-height: 1.3; }
p { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.accent-text { color: var(--accent); }

/* ====== Buttons ====== */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 18px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
	white-space: nowrap;
}
.btn--primary {
	background: var(--accent); color: #fff;
	box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 6px 14px -4px rgba(45, 171, 249,.45);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-soft); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--lg { padding: 14px 22px; font-size: 16px; }

/* ====== Eyebrow ====== */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px; font-weight: 500;
	color: var(--ink-2);
	margin-bottom: 18px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(45, 171, 249,.18); }
.eyebrow--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; }

/* ====== Header ====== */
.hd {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.85);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.hd__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.hd__logo img { height: 28px; }
.hd__nav { display: flex; gap: 6px; margin-left: 12px; }
.hd__nav a {
	padding: 8px 12px; border-radius: 8px;
	font-size: 14px; font-weight: 500; color: var(--text);
	transition: color .15s, background .15s;
}
.hd__nav a:hover { color: var(--ink); background: var(--bg-soft); }
.hd__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hd__phone { font-size: 14px; font-weight: 500; color: var(--ink); }
.hd__phone:hover { color: var(--accent); }
.hd__burger {
	display: none; background: transparent; border: 1px solid var(--line);
	width: 40px; height: 40px; border-radius: 10px; font-size: 16px; color: var(--ink);
	cursor: pointer;
}
.hd__mobile { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 4px; border-top: 1px solid var(--line); background: #fff; }
.hd__mobile a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
.hd__mobile a.btn { border: 1px solid transparent; margin-top: 12px; justify-content: center; }
.hd--open .hd__mobile { display: flex; }

/* ====== Hero ====== */
.hero {
	position: relative;
	padding: 72px 0 88px;
	background:
		radial-gradient(60% 50% at 80% 0%, rgba(45, 171, 249,.08), transparent 60%), /* hero glow — keep orange */
		radial-gradient(50% 40% at 10% 20%, rgba(20,140,255,.05), transparent 60%);
	overflow: hidden;
}
.hero::before {
	content: ''; position: absolute; inset: 0;
	background-image: linear-gradient(rgba(15,17,21,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(15,17,21,.025) 1px, transparent 1px);
	background-size: 36px 36px;
	mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 70%);
	pointer-events: none;
}
.hero__inner {
	position: relative;
	display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero__h1 { margin-bottom: 18px; }
.hero__lead { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero__trust-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 12px; border-radius: 999px;
	background: var(--accent-soft); color: var(--accent-2);
	font-size: 13px; font-weight: 600;
}
.hero__trust-text { font-size: 13px; color: var(--muted); }
.hero__engines { font-size: 13px; color: var(--muted); }
.hero__engines strong { color: var(--ink); font-weight: 600; }

/* Phone */
.hero__visual { position: relative; height: 580px; display: flex; align-items: center; justify-content: center; }
.phone {
	width: 280px; height: 560px;
	background: linear-gradient(180deg, #1c1d21, #111216);
	border-radius: 44px;
	padding: 12px;
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.05) inset;
	position: relative;
	animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-10px) rotate(-1deg); }
}
.phone__notch {
	position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
	width: 90px; height: 24px; background: #000; border-radius: 14px; z-index: 2;
}
.phone__screen {
	background: #f5f5f5;
	height: 100%;
	border-radius: 32px;
	overflow: hidden;
	display: flex; flex-direction: column;
}
.phone__topbar {
	background: #fff; padding: 38px 16px 12px; display: flex; align-items: center; gap: 10px;
	border-bottom: 1px solid #ececec;
}
.phone__avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: linear-gradient(135deg, #F76E11, #ff9347);
	display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.phone__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.phone__status { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot--green { background: #22c55e; }

.phone__chat { flex: 1; padding: 14px 12px; overflow: hidden; display: flex; flex-direction: column; gap: 8px; background: #f5f5f5; }
.msg {
	max-width: 75%; padding: 8px 12px; border-radius: 14px; font-size: 13px; line-height: 1.4;
	animation: msgIn .4s ease both;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.msg--in { background: #fff; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg--out {
	background: linear-gradient(135deg, #F76E11, #ff8a3d); color: #fff;
	align-self: flex-end; border-bottom-right-radius: 4px;
}
.msg--out:nth-of-type(2) { animation-delay: .3s; }
.msg--in:nth-of-type(3) { animation-delay: .9s; }
.msg--out:nth-of-type(4) { animation-delay: 1.2s; }
.msg--in:nth-of-type(5) { animation-delay: 1.5s; }
.msg--out:nth-of-type(6) { animation-delay: 1.8s; }

.msg--typing { display: inline-flex; gap: 4px; padding: 12px; }
.msg--typing span { width: 6px; height: 6px; background: rgba(255,255,255,.7); border-radius: 50%; animation: typing 1.2s infinite; }
.msg--typing span:nth-child(2) { animation-delay: .2s; }
.msg--typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-3px); opacity: 1; } }

.phone__input {
	background: #fff; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between;
	border-top: 1px solid #ececec; font-size: 12px; color: var(--muted);
}
.phone__input i { color: #F76E11; }

.float-card {
	position: absolute;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 10px 14px;
	display: flex; align-items: center; gap: 10px;
	box-shadow: var(--shadow);
	animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
.float-card--1 { top: 8%; left: -6%; animation-delay: 0s; }
.float-card--2 { top: 35%; right: -6%; animation-delay: 1.2s; }
.float-card--3 { bottom: 12%; left: -2%; animation-delay: 2.4s; }
.float-card__icon {
	width: 36px; height: 36px; border-radius: 10px;
	background: #e7f3ff; color: #0088cc;
	display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.float-card__icon--max {
	background: linear-gradient(135deg, #2aabee, #a855f7); color: #fff; font-weight: 700;
}
.float-card__icon--accent { background: #FFF3EB; color: #F76E11; }
.float-card__t { font-size: 13px; font-weight: 600; color: var(--ink); }
.float-card__s { font-size: 11px; color: var(--muted); }

/* ====== Section heads ====== */
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ====== Anti-pattern ====== */
.anti { padding: 88px 0; background: var(--bg-soft); }
.anti__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.anti__col {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	display: flex; flex-direction: column;
}
.anti__col--good { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(45, 171, 249,.08); }
.anti__tag {
	align-self: flex-start;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 10px; border-radius: 999px;
	background: #fee2e2; color: #b91c1c;
	font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
.anti__tag--good { background: var(--accent-soft); color: var(--accent-2); }
.anti__svg { width: 100%; height: 160px; flex: 1; }
.anti__doc {
	flex: 1;
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 12px 14px;
	font-family: 'Inter', monospace;
	font-size: 13px;
	display: flex; flex-direction: column; gap: 6px;
}
.anti__doc-row { color: var(--ink); padding: 4px 0; border-bottom: 1px solid #f3f3f1; }
.anti__doc-row:last-child { border-bottom: none; }
.anti__doc-row--head { color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 6px; padding-bottom: 8px; }
.anti__doc-row--muted { color: var(--muted); font-style: italic; }
.anti__caption { font-size: 14px; color: var(--muted); margin-top: 16px; text-align: center; }

/* ====== How it works ====== */
.how { padding: 96px 0; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how__step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.how__step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d8d9dd; }
.how__num {
	font-size: 13px; font-weight: 700;
	color: var(--accent); letter-spacing: .08em;
	margin-bottom: 14px;
}
.how__step h3 { margin-bottom: 8px; }
.how__step p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

/* Placeholder for future screenshots */
.placeholder {
	background:
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(15,17,21,.03) 12px 13px),
		linear-gradient(180deg, #fafaf9, #f3f3f1);
	border: 1px dashed #d4d4d2;
	border-radius: var(--radius);
	color: #94959a;
	font-size: 13px; font-weight: 500;
	display: flex; align-items: center; justify-content: center;
	text-align: center;
	padding: 24px;
	min-height: 180px;
}
.placeholder--16x10 { aspect-ratio: 16/10; min-height: auto; }

/* Screenshots (replace .placeholder with this once you have the image) */
.screenshot {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	display: block;
}
.screenshot--16x10 { aspect-ratio: 16/10; object-fit: cover; object-position: top center; }
.screenshot--mobile { max-width: 320px; margin: 0 auto; }
.js-zoom { cursor: zoom-in; transition: transform .15s ease; }
.js-zoom:hover { transform: translateY(-2px); }

/* ====== Lightbox ====== */
.lb {
	position: fixed; inset: 0;
	background: rgba(10, 12, 16, 0.88);
	z-index: 1000;
	display: flex; align-items: center; justify-content: center;
	padding: 32px;
	cursor: zoom-out;
}
.lb[hidden] { display: none; }
.lb__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
	cursor: default;
	user-select: none;
}
.lb__close {
	position: fixed;
	top: 20px; right: 24px;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	font-size: 26px; line-height: 1;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background .15s;
	padding: 0;
}
.lb__close:hover { background: rgba(255,255,255,.18); }
body.lb-open { overflow: hidden; }

@media (max-width: 720px) {
	.lb { padding: 16px; }
	.lb__close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
}

/* ====== Beta notice (small) ====== */
.beta-note {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 5px 10px;
	background: #FFF7E6;
	border: 1px solid #F4D58A;
	color: #8a5a00;
	border-radius: 999px;
	font-size: 12px; font-weight: 500;
}
.beta-note i { font-size: 11px; }
.beta-note a { color: #8a5a00; text-decoration: underline; text-underline-offset: 2px; }
.beta-note a:hover { color: #5a3a00; }
.beta-note--inline { margin-top: 14px; }

/* ====== Generic feature grid (6 tiles) ====== */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.feat {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d8d9dd; }
.feat__icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--accent-soft); color: var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-size: 19px; margin-bottom: 16px;
}
.feat h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.feat p { color: var(--muted); font-size: 14px; }

/* ====== Niche cards ====== */
.niches-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.niche {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 22px;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.niche:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d8d9dd; }
.niche__icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--bg-soft); color: var(--ink);
	border: 1px solid var(--line);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; margin-bottom: 16px;
}
.niche h3 { font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.niche p { color: var(--muted); font-size: 14px; flex: 1; }
.niche--cta { background: var(--ink); color: #fff; border-color: var(--ink); }
.niche--cta h3, .niche--cta p { color: #fff; }
.niche--cta p { color: rgba(255,255,255,.7); }
.niche--cta .niche__icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.niche__cta {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 14px; align-self: flex-start;
	font-size: 14px; font-weight: 600; color: var(--accent);
}

/* ====== Not-for-you block (honest disclaimer) ====== */
.notfor { padding: 80px 0; background: var(--bg-soft); }
.notfor__box {
	max-width: 920px; margin: 0 auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
}
.notfor__head {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 20px;
}
.notfor__icon {
	width: 44px; height: 44px; border-radius: 12px;
	background: #FFF7E6; color: #c98a00;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; flex-shrink: 0;
}
.notfor__head h3 { font-size: 22px; }
.notfor__head p { color: var(--muted); font-size: 14px; margin-top: 2px; }
.notfor__list {
	display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
	margin: 0; padding: 0; list-style: none;
}
.notfor__list li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 15px; color: var(--text);
	padding: 8px 0;
}
.notfor__list i { color: #c98a00; font-size: 13px; margin-top: 5px; flex-shrink: 0; }
.notfor__foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.notfor__foot strong { color: var(--ink); }

/* ====== Roadmap timeline ====== */
.roadmap {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
	max-width: 920px; margin: 0 auto;
}
.road {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 20px;
	display: flex; align-items: flex-start; gap: 14px;
}
.road__dot {
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--accent-soft); color: var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; flex-shrink: 0;
}
.road__t { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.road__s { font-size: 13px; color: var(--muted); }

@media (max-width: 1024px) {
	.feat-grid { grid-template-columns: repeat(2, 1fr); }
	.niches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.feat-grid { grid-template-columns: 1fr; }
	.niches-grid { grid-template-columns: 1fr; }
	.notfor__list { grid-template-columns: 1fr; }
	.roadmap { grid-template-columns: 1fr; }
	.notfor__box { padding: 24px; }
}

/* ====== Examples ====== */
.examples { padding: 96px 0; background: var(--bg-soft); }
.examples__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ex {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ex:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d8d9dd; }
.ex__avatar {
	width: 56px; height: 56px; border-radius: 14px;
	object-fit: cover; margin-bottom: 16px;
}
.ex__icon {
	width: 56px; height: 56px; border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; margin-bottom: 16px;
}
.ex__icon--bg { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }
.ex__icon--accent { background: var(--accent); color: #fff; }
.ex h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.ex__link {
	display: inline-flex; align-items: center; gap: 4px;
	margin-left: 6px;
	font-size: 12px; font-weight: 500; color: var(--accent); white-space: nowrap;
}
.ex__link:hover { color: var(--accent-2); }
.ex p { color: var(--muted); font-size: 14px; flex: 1; margin-bottom: 14px; }
.ex__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ex__tags span {
	font-size: 11px; padding: 3px 8px; border-radius: 999px;
	background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line);
}
.ex--cta { background: var(--ink); color: #fff; border-color: var(--ink); }
.ex--cta h3, .ex--cta p { color: #fff; }
.ex--cta p { color: rgba(255,255,255,.7); }
.ex__cta {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: auto; align-self: flex-start;
	font-size: 14px; font-weight: 600; color: var(--accent);
}

/* ====== Capabilities ====== */
.caps { padding: 96px 0; }
.cap {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
	padding: 28px 0;
}
.cap--left { grid-template-columns: 1.1fr 1fr; }
.cap--left .cap__copy { order: 2; }
.cap--left .cap__visual { order: 1; }
.cap__icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--accent-soft); color: var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; margin-bottom: 18px;
}
.cap__copy h3 { font-size: 28px; margin-bottom: 12px; }
.cap__copy > p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.cap__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cap__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.cap__list i { color: var(--accent); font-size: 13px; }

/* ====== Engines (dark section) ====== */
.engines { padding: 96px 0; background: var(--ink); color: #fff; }
.engines h2 { color: #fff; }
.engines p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 460px; }
.engines__inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.engines__cards { display: flex; gap: 16px; flex-wrap: wrap; }
.engine-card {
	flex: 1; min-width: 200px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius-lg);
	padding: 24px;
	transition: transform .25s ease, background .25s ease;
}
.engine-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); }
.engine-card__logo {
	width: 48px; height: 48px; border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; font-weight: 700; margin-bottom: 16px;
}
.engine-card__logo--y { background: #fc3f1d; color: #fff; }
.engine-card__logo--g { background: #10a37f; color: #fff; }
.engine-card__name { font-size: 18px; font-weight: 700; color: #fff; }
.engine-card__hint { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ====== Pricing ====== */
.pricing { padding: 96px 0; background: var(--bg-soft); }
.gift-badge {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px; border-radius: 999px;
	background: var(--accent-soft); color: var(--accent-2);
	font-size: 14px; font-weight: 600;
}
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex; flex-direction: column;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price--featured { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(45, 171, 249,.08); }
.price__badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--accent); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	padding: 5px 12px; border-radius: 999px;
}
.price__head { margin-bottom: 24px; }
.price__name { font-size: 20px; font-weight: 700; color: var(--ink); }
.price__provider { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.price__rates { display: flex; flex-direction: column; gap: 16px; flex: 1; margin-bottom: 24px; }
.rate { padding: 14px; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--line); }
.rate__label { font-size: 12px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.rate__main { font-size: 18px; font-weight: 700; color: var(--ink); }
.rate__main span { color: var(--muted); font-weight: 500; font-size: 13px; }
.rate__sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.price__cta {
	text-align: center;
	padding: 12px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid var(--line);
	color: var(--ink);
	transition: background .15s, border-color .15s, color .15s;
}
.price__cta:hover { background: var(--bg-soft); border-color: #d4d4d2; }
.price__cta--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.price__cta--primary:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
.pricing__note { text-align: center; margin-top: 32px; color: var(--muted); font-size: 14px; }
.pricing__note a { color: var(--accent); font-weight: 500; }

/* ====== Final CTA ====== */
.final-cta { padding: 80px 0; }
.final-cta__box {
	background: var(--ink);
	background-image: radial-gradient(60% 100% at 80% 0%, rgba(45, 171, 249,.18), transparent 60%);
	color: #fff;
	border-radius: 28px;
	padding: 64px 48px;
	text-align: center;
	position: relative; overflow: hidden;
}
.final-cta__box h2 { color: #fff; margin-bottom: 12px; }
.final-cta__box p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 28px; }
.final-cta__btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ====== Footer ====== */
.ft { padding: 64px 0 28px; border-top: 1px solid var(--line); }
.ft__inner {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
	margin-bottom: 48px;
}
.ft__col h6 { font-size: 13px; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.ft__col a { display: block; padding: 5px 0; font-size: 14px; color: var(--muted); }
.ft__col a:hover { color: var(--ink); }
.ft__col--brand p { font-size: 14px; color: var(--muted); margin: 16px 0; }
.ft__logo { height: 28px; margin-bottom: 4px; }
.ft__socials { display: flex; gap: 8px; }
.ft__socials a {
	width: 36px; height: 36px; border-radius: 10px;
	border: 1px solid var(--line);
	display: flex; align-items: center; justify-content: center;
	color: var(--muted); padding: 0;
}
.ft__socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.ft__bottom { border-top: 1px solid var(--line); padding-top: 24px; }
.ft__bottom p { font-size: 12px; color: var(--muted); }
.ft__bottom a { color: var(--ink); }

/* ====== Reveal animation ====== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ====== Responsive ====== */
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.hero__visual { height: 540px; }
	.examples__grid { grid-template-columns: repeat(2, 1fr); }
	.pricing__grid { grid-template-columns: repeat(2, 1fr); }
	.cap, .cap--left { grid-template-columns: 1fr; gap: 24px; }
	.cap--left .cap__copy { order: 1; }
	.cap--left .cap__visual { order: 2; }
	.engines__inner { grid-template-columns: 1fr; gap: 32px; }
	.ft__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
	.hd__nav, .hd__phone { display: none; }
	.hd__burger { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.hero { padding: 48px 0 64px; }
	.hero__lead { font-size: 17px; }
	.hero__visual { height: 520px; }
	.float-card--1 { left: 0; top: 0; }
	.float-card--2 { right: 0; top: 30%; }
	.float-card--3 { left: 0; bottom: 8%; }
	.anti { padding: 64px 0; }
	.anti__grid { grid-template-columns: 1fr; }
	.how, .examples, .caps, .engines, .pricing { padding: 64px 0; }
	.section-head { margin-bottom: 36px; }
	.how__steps { grid-template-columns: 1fr; }
	.examples__grid { grid-template-columns: 1fr; }
	.pricing__grid { grid-template-columns: 1fr; }
	.cap__copy h3 { font-size: 22px; }
	.cap__copy > p { font-size: 15px; }
	.final-cta__box { padding: 40px 24px; }
	.ft__inner { grid-template-columns: 1fr; gap: 32px; }
	.btn--lg { padding: 12px 18px; font-size: 15px; }
	#cookie-warning { right: 12px !important; left: 12px !important; bottom: 12px !important; max-width: none !important; }
}

@media (max-width: 480px) {
	.container { padding: 0 16px; }
	.hd__inner { gap: 12px; height: 60px; }
	.hd__logo img { height: 24px; }
	.btn { padding: 10px 14px; font-size: 14px; }
	.hd__right .btn--ghost { display: none; }
	.phone { width: 240px; height: 480px; }
	.hero__visual { height: 480px; }
	.hero__ctas .btn { width: 100%; justify-content: center; }
}
