/*
 * Vorian Theme — main.css
 * Desktop-first stylesheet. Mobile overrides live in mobile.css.
 */

/* ===== TOKENS ===== */
:root {
	--bg: #f8f7f5;
	--bg-2: #f2f0ec;
	--ink: #0a0a0a;
	--ink-2: #1a1a1a;
	--muted: #6b6b6b;
	--muted-2: #9a9a9a;
	--line: #e7e4de;
	--line-2: #ececec;
	--violet: #8b5cf6;
	--magenta: #d946ef;
	--amber: #f59e0b;
	--grad: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #f59e0b 100%);
	--grad-soft: linear-gradient(135deg, rgba(139, 92, 246, .6), rgba(217, 70, 239, .5), rgba(245, 158, 11, .55));
	--safe-b: env(safe-area-inset-bottom, 0px);
	--safe-t: env(safe-area-inset-top, 0px);
}



/* Hide Integrations section */
.page-template-page-product .section-pad:has(.int-head) {
    display: none;
}


/* ============================================================
   NAVBAR — Hover & Active Page Effects
   ============================================================ */
/* Onboarding page — chrome-top header background */
body.page-template-page-onboarding .chrome-top {
    background: rgba(248, 247, 245, .72);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
}

/* Base link state */
.nav-links ul.vorian-menu li a {
    position: relative;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 450;
    padding-bottom: 2px;
    transition: color .22s ease;
}

/* Underline element */
.nav-links ul.vorian-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: #0a0a0a;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

/* Hover — slide underline in */
.nav-links ul.vorian-menu li a:hover {
    color: #0a0a0a;
}

.nav-links ul.vorian-menu li a:hover::after {
    transform: scaleX(1);
}

/* Active / current page — underline always visible */
.nav-links ul.vorian-menu li.current-menu-item > a,
.nav-links ul.vorian-menu li.current-page-ancestor > a {
    color: #0a0a0a;
    font-weight: 500;
}

.nav-links ul.vorian-menu li.current-menu-item > a::after,
.nav-links ul.vorian-menu li.current-page-ancestor > a::after {
    transform: scaleX(1);
}




* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	background: var(--bg); color: var(--ink);
	font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: #0a0a0a; color: #f8f7f5; }

.skip-link {
	position: absolute; left: 1rem; top: 1rem;
	background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000;
	transform: translateY(-200%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--magenta); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0;
	transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
	border-bottom: 1px solid transparent;
}
.nav.scrolled {
	background: rgba(248, 247, 245, .72);
	backdrop-filter: saturate(160%) blur(18px);
	-webkit-backdrop-filter: saturate(160%) blur(18px);
	border-bottom-color: rgba(10, 10, 10, .06); padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark, .wm {
	font-weight: 600; font-size: 30px; letter-spacing: -.02em; color: var(--ink);
	display: inline-flex; align-items: flex-start;
}
.wm { font-size: 18px; }
.wordmark .dot, .wm .dot {
	display: none; width: 6px; height: 6px; border-radius: 50%;
	background: var(--grad); margin-left: 2px; transform: translateY(-10px);
}
.wm .dot { width: 5px; height: 5px; transform: translateY(-9px); }
.wordmark--logo { display: flex; align-items: center;    width: 100px; }
.wordmark--logo .custom-logo-link img { max-height: 36px; width: auto; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links ul.vorian-menu { display: flex; gap: 32px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links ul.vorian-menu li { display: inline-flex; }
.nav-links a, .nav-links ul.vorian-menu a {
	font-size: 14px; font-weight: 450;
	transition: opacity .2s;
}
.nav-links a:hover, .nav-links ul.vorian-menu a:hover { opacity: 1; }

.ham {
	width: 44px; height: 44px; border-radius: 12px;
	display: none; place-items: center;
	background: rgba(10, 10, 10, .04);
	transition: transform .2s, background .2s;
}
.ham:hover { background: rgba(10, 10, 10, .08); }
.ham:active { transform: scale(.94); }
.ham .bars { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.ham .bars span { width: 18px; height: 1.6px; background: currentColor; border-radius: 1px; transition: all .3s; display: block; }
.ham .bars span:nth-child(2) { width: 12px; }
.ham[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(2.8px) rotate(45deg); width: 18px; }
.ham[aria-expanded="true"] .bars span:nth-child(2) { transform: translateY(-2.8px) rotate(-45deg); width: 18px; }

.pill-cta {
	background: var(--ink); color: #fff;
	padding: 12px 22px; border-radius: 999px;
	font-size: 14px; font-weight: 500; letter-spacing: -.005em;
	display: inline-flex; align-items: center; gap: 8px;
	min-height: 44px; box-sizing: border-box;
	transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.pill-cta:hover { background: #000; box-shadow: 0 8px 18px -8px rgba(10, 10, 10, .35); }
.pill-cta:active { transform: translateY(0); }
.pill-cta .arr { transition: transform .25s ease; display: inline-block; }
.arr i {transform: rotate(-45deg);}
/* .pill-cta:hover .arr { transform: translate(3px, -3px); } */

.ghost-btn {
	border: 1px solid rgba(10, 10, 10, .18);
	padding: 12px 22px; border-radius: 999px;
	font-size: 14px; font-weight: 500; color: var(--ink);
	transition: background .25s, border-color .25s, transform .25s;
	display: inline-flex; align-items: center; gap: 8px;
	min-height: 44px; box-sizing: border-box;
}
.ghost-btn:hover { background: rgba(10, 10, 10, .04); border-color: rgba(10, 10, 10, .32); }
.ghost-btn.on-dark { border-color: rgba(255, 255, 255, .22); color: #fff; }
.ghost-btn.on-dark:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .4); }


/* ===== DRAWER ===== */
.drawer-shade {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(10, 10, 10, .4);
	opacity: 0; pointer-events: none; transition: opacity .35s ease;
	backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.drawer-shade.open { opacity: 1; pointer-events: auto; }
.drawer {
	position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
	width: min(86vw, 360px);
	background: #0a0a0a; color: #fff;
	transform: translateX(100%);
	transition: transform .42s cubic-bezier(.22, 1, .36, 1);
	display: flex; flex-direction: column;
	padding: calc(22px + var(--safe-t)) 24px calc(28px + var(--safe-b));
	box-shadow: -30px 0 80px rgba(0, 0, 0, .4);
	overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.drawer-head .wordmark, .drawer-head .wm { color: #fff; }
.drawer-close {
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(255, 255, 255, .08); display: grid; place-items: center;
	transition: background .2s, transform .2s;
}
.drawer-close:hover { background: rgba(255, 255, 255, .14); }
.drawer-close:active { transform: scale(.94); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer nav { display: flex; flex-direction: column; flex: 1; }
.drawer nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.drawer nav li a {
	display: flex; justify-content: space-between; align-items: center;
	padding: 18px 4px; font-size: 16px; font-weight: 600; letter-spacing: -.02em;
	border-bottom: 1px solid rgba(255, 255, 255, .08); color: #fff;
	transition: color .25s; min-height: 56px; box-sizing: border-box;
}
.drawer nav li a::after {
	content: "↗"; color: rgba(255, 255, 255, .35); font-size: 18px; font-weight: 300;
	transition: transform .3s, color .3s;
}
.drawer nav li a:hover { color: var(--magenta); }
.drawer nav li a:hover::after { color: #fff; transform: translate(2px, -2px); }
.drawer-cta {
	margin-top: 32px; padding: 18px 28px; border-radius: 999px; background: #fff; color: #0a0a0a;
	text-align: center; font-size: 16px; font-weight: 600;
	display: flex; align-items: center; justify-content: center; gap: 10px;
	box-shadow: 0 0 0 1px rgba(139, 92, 246, .4), 0 20px 50px -10px rgba(139, 92, 246, .4);
	transition: transform .25s; min-height: 40px;
}
.drawer-cta:hover { transform: translateY(-2px); }
.drawer-cta .arr { transition: transform .3s; }
.drawer-cta:hover .arr { transform: translate(3px, -3px); }
.drawer-foot {
	margin-top: 24px; font-size: 11px; color: rgba(255, 255, 255, .4);
	font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; text-align: center;
}
body.drawer-open { overflow: hidden; }

.nav-login-link {
    font-size: 14px;
    font-weight: 450;
    background: linear-gradient(135deg, #8b5cf6, #d946ef, #f59e0b, #8b5cf6, #d946ef);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-login-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: var(--grad);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.nav-login-link:hover::after {
    transform: scaleX(1);
}

.drawer-login {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    background: linear-gradient(135deg, #8b5cf6, #d946ef, #f59e0b, #8b5cf6, #d946ef);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 3s ease infinite;
}




/* ===== HERO ===== */
.hero {
	position: relative; padding: 160px 0 80px;
	overflow: hidden; background: var(--bg);
}
.hero-bloom {
	position: absolute; inset: -10% -10% 0 -10%;
	background:
		radial-gradient(40% 45% at 50% 35%, rgba(139, 92, 246, .10), transparent 70%),
		radial-gradient(30% 30% at 65% 55%, rgba(245, 158, 11, .08), transparent 70%),
		radial-gradient(25% 25% at 35% 60%, rgba(217, 70, 239, .06), transparent 70%);
	pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 6px 14px 6px 6px; border-radius: 999px;
	background: rgba(10, 10, 10, .04); border: 1px solid rgba(10, 10, 10, .06);
	font-size: 12px; color: #3a3a3a; letter-spacing: .02em; margin-bottom: 28px;
}
.hero-eyebrow .dot {
	width: 16px; height: 16px; border-radius: 50%; background: var(--grad);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}
.hero-eyebrow b { font-weight: 500; }
h1.hero-h {
	font-size: clamp(44px, 8.4vw, 116px);
	line-height: .92; letter-spacing: -.045em; font-weight: 700;
	margin: 0 auto 24px; max-width: 14ch; color: var(--ink); text-wrap: balance;
}
h1.hero-h em {
	font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -.02em;
}
.hero-sub {
	max-width: 58ch; margin: 0 auto 40px;
	font-size: clamp(16px, 1.5vw, 19px);
	color: var(--muted); line-height: 1.55; font-weight: 400; text-wrap: pretty;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }

.hero-card-wrap { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 12px; }
.hero-card {
	position: relative; border-radius: 22px; background: #ffffff;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, .6) inset,
		0 30px 60px -20px rgba(10, 10, 10, .25),
		0 80px 120px -40px rgba(139, 92, 246, .18),
		0 4px 10px rgba(10, 10, 10, .06);
	border: 1px solid rgba(10, 10, 10, .06);
	overflow: hidden; animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-card { animation: none; } }
.hc-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line-2); background: #fbfaf8; }
.hc-bar .tl { display: flex; gap: 6px; }
.hc-bar .tl span { width: 10px; height: 10px; border-radius: 50%; background: #e3e0da; }
.hc-bar .tl span:nth-child(1) { background: #f6c9c0; }
.hc-bar .tl span:nth-child(2) { background: #f5e3b3; }
.hc-bar .tl span:nth-child(3) { background: #c7e7c7; }
.hc-bar .url {
	margin-left: 8px; background: #eeece7; border-radius: 8px;
	font-size: 12px; color: #7a7a7a; padding: 6px 12px;
	font-family: 'JetBrains Mono', monospace;
}
.hc-grid { display: grid; grid-template-columns: 220px 1fr 260px; min-height: 520px; }
.hc-side { background: #fbfaf7; border-right: 1px solid var(--line-2); padding: 20px 14px; display: flex; flex-direction: column; gap: 4px; }
.hc-brand { display: flex; align-items: center; gap: 8px; padding: 4px 8px 18px; font-weight: 600; font-size: 14px; letter-spacing: -.02em; }
.hc-brand .lg { width: 22px; height: 22px; border-radius: 6px; background: var(--grad); }
.hc-nav-h { font-size: 10px; letter-spacing: .12em; color: #b5b5b5; padding: 12px 10px 6px; text-transform: uppercase; font-weight: 600; }
.hc-link {
	display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px;
	font-size: 13px; color: #3a3a3a; cursor: pointer; transition: background .18s;
}
.hc-link:hover { background: #efece6; }
.hc-link.active { background: #0a0a0a; color: #fff; }
.hc-link .ic { width: 16px; height: 16px; border-radius: 4px; background: #d4d1c8; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-size: 10px; }
.hc-link.active .ic { background: rgba(255, 255, 255, .18); }
.hc-main { padding: 22px 24px; display: flex; flex-direction: column; gap: 18px; background: #fff; }
.hc-greet { display: flex; justify-content: space-between; align-items: flex-end; }
.hc-greet h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; font-weight: 600; }
.hc-greet p { margin: 4px 0 0; font-size: 12px; color: var(--muted); }
.hc-greet .search { font-size: 11px; padding: 7px 12px; border-radius: 8px; background: #f4f2ed; color: #9a9a9a; font-family: 'JetBrains Mono', monospace; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px; background: #fff; }
.kpi .l { font-size: 10px; letter-spacing: .1em; color: #9a9a9a; text-transform: uppercase; font-weight: 500; }
.kpi .v { font-size: 20px; font-weight: 600; letter-spacing: -.02em; margin-top: 4px; }
.kpi .d { font-size: 11px; margin-top: 3px; display: inline-flex; align-items: center; gap: 4px; font-weight: 500; }
.kpi .d.up { color: #168b4f; }
.kpi .d.dn { color: #c44c3e; }
.hc-tasks { border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 16px; flex: 1; }
.hc-tasks h4 { margin: 0 0 10px; font-size: 13px; font-weight: 600; letter-spacing: -.01em; display: flex; justify-content: space-between; }
.hc-tasks h4 em { font-style: normal; font-weight: 400; color: #b5b5b5; font-size: 11px; }
.task { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-top: 1px solid var(--line-2); font-size: 12.5px; color: #2a2a2a; }
.task:first-of-type { border-top: none; }
.task .cb { width: 14px; height: 14px; border: 1.5px solid #d2cec5; border-radius: 4px; flex-shrink: 0; }
.task.done .cb { background: var(--ink); border-color: var(--ink); position: relative; }
.task.done .cb::after { content: ""; position: absolute; left: 3px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.task.done .label { color: #a9a9a9; text-decoration: line-through; }
.task .pri { margin-left: auto; font-size: 10px; padding: 2px 8px; border-radius: 999px; background: #f2ede4; color: #8a7a52; }
.task .pri.hi { background: #fde2de; color: #a63328; }
.task .pri.md { background: #e7edfb; color: #3c5a9a; }
.hc-right { padding: 20px 18px; border-left: 1px solid var(--line-2); background: #fbfaf7; display: flex; flex-direction: column; gap: 16px; }
.hc-right h4 { margin: 0; font-size: 13px; font-weight: 600; }
.hc-cal { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 12px; }
.hc-cal .mo { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.hc-cal .wk { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; font-size: 9px; color: #b5b5b5; font-weight: 500; margin-bottom: 4px; }
.hc-cal .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; font-size: 10px; }
.hc-cal .days span { aspect-ratio: 1; display: grid; place-items: center; color: #4a4a4a; border-radius: 4px; font-weight: 500; }
.hc-cal .days span.off { color: #d4d1c8; }
.hc-cal .days span.today { background: var(--ink); color: #fff; }
.hc-cal .days span.dot { position: relative; }
.hc-cal .days span.dot::after { content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--magenta); }
.ev { border: 1px solid var(--line-2); background: #fff; border-radius: 10px; padding: 9px 10px; }
.ev .t { font-size: 10px; color: #9a9a9a; font-family: 'JetBrains Mono', monospace; }
.ev .n { font-size: 12px; font-weight: 500; margin-top: 2px; }
.ev.p { border-left: 3px solid var(--violet); }
.ev.a { border-left: 3px solid var(--amber); }

/* ===== SECTIONS ===== */
section { position: relative; }
.dark { background: #0a0a0a; color: #fff; }
.dark::selection, .dark *::selection { background: #fff; color: #0a0a0a; }
.section-pad { padding: 140px 0; }

.eyebrow-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; border-radius: 999px;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.eyebrow-pill.on-light { background: #0a0a0a; color: #fff; }
.eyebrow-pill.on-dark {
	color: #fff; position: relative;
	background: linear-gradient(#0a0a0a, #0a0a0a) padding-box, var(--grad) border-box;
	border: 1px solid transparent;
}
h2.section-h {
	font-size: clamp(36px, 5.6vw, 76px);
	line-height: .96; letter-spacing: -.035em;
	font-weight: 700; margin: 16px 0 22px; text-wrap: balance;
}
h2.section-h em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.section-sub { font-size: clamp(15px, 1.2vw, 18px); color: var(--muted); line-height: 1.55; font-weight: 400; }
.dark .section-sub { color: rgba(255, 255, 255, .55); }

/* ===== PROBLEM ===== */
.problem { padding: 140px 0; }
.problem-head { display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-bottom: 72px; }
.stat-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px; overflow: hidden;
}
.stat { background: #0a0a0a; padding: 36px 30px; position: relative; overflow: hidden; transition: background .3s; }
.stat::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(60% 60% at 100% 0%, rgba(139, 92, 246, .14), transparent 70%);
	opacity: .6; pointer-events: none;
}
.stat .n {
	font-size: clamp(40px, 4.6vw, 64px); font-weight: 700; letter-spacing: -.035em; line-height: 1;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .d { font-size: 15px; margin-top: 14px; color: #fff; font-weight: 500; max-width: 28ch; line-height: 1.35; }
.stat .src {
	font-size: 11px; color: rgba(255, 255, 255, .4); margin-top: 16px;
	letter-spacing: .06em; text-transform: uppercase; font-weight: 500; font-family: 'JetBrains Mono', monospace;
}

/* ===== SOLUTION ===== */
.solution-head { text-align: center; margin-bottom: 64px; }
.solution-head h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.solution-head .section-sub { margin: 0 auto; }
.sol-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sol-card {
	position: relative; border-radius: 24px;
	padding: 40px 38px 44px; min-height: 460px;
	border: 1px solid rgba(10, 10, 10, .08);
	background: #fff; overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease;
	display: flex; flex-direction: column;
}
.sol-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -40px rgba(10, 10, 10, .25); }
.sol-card.finance { background: linear-gradient(165deg, #faf5ff 0%, #fff7ed 120%); }
.sol-card.ops { background: linear-gradient(165deg, #eef2ff 0%, #f5f3ff 120%); }
.sol-card .bloom { position: absolute; inset: auto -20% -30% auto; width: 360px; height: 360px; border-radius: 50%; filter: blur(60px); opacity: .25; pointer-events: none; }
.sol-card.finance .bloom { background: radial-gradient(circle, var(--magenta), transparent 65%); }
.sol-card.ops .bloom { background: radial-gradient(circle, var(--violet), transparent 65%); }
.sol-card .label {
	display: inline-flex; width: max-content;
	padding: 5px 12px; border-radius: 999px;
	font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
	background: rgba(10, 10, 10, .06); color: #2a2a2a; margin-bottom: 24px;
}
.sol-card h3 { font-size: clamp(28px, 3vw, 38px); line-height: 1; letter-spacing: -.03em; font-weight: 700; margin: 0 0 12px; }
.sol-card p { font-size: 16px; color: #4a4a4a; line-height: 1.5; margin: 0 0 28px; max-width: 34ch; }
.sol-card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 12px; }
.sol-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #1a1a1a; }
.sol-card li::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--grad); margin-top: 9px; flex-shrink: 0;
}
.venn-wrap { display: flex; justify-content: center; margin-top: 56px; }
.venn { position: relative; width: 340px; height: 160px; }
.venn .c { position: absolute; top: 0; width: 180px; height: 160px; border-radius: 50%; border: 1.5px solid rgba(10, 10, 10, .25); mix-blend-mode: multiply; }
.venn .l { left: 0; background: radial-gradient(circle at 30% 50%, rgba(217, 70, 239, .12), transparent 65%); }
.venn .r { right: 0; background: radial-gradient(circle at 70% 50%, rgba(139, 92, 246, .14), transparent 65%); }
.venn .lbl { position: absolute; top: 50%; transform: translateY(-50%); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #6a6a6a; font-weight: 600; }
.venn .lbl.lf { left: 14px; }
.venn .lbl.rt { right: 14px; }
.venn .core {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	font-weight: 700; letter-spacing: -.02em; font-size: 20px;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
	filter: drop-shadow(0 4px 18px rgba(139, 92, 246, .35));
}

/* ===== CCI ===== */
.cci { padding: 140px 0; text-align: center; overflow: hidden; }
.cci-bloom { position: absolute; inset: 0; background: radial-gradient(40% 50% at 50% 50%, rgba(139, 92, 246, .15), transparent 70%); pointer-events: none; }
.cci-inner { position: relative; }
.cci h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.cci .section-sub { margin: 0 auto 72px; }
.cci-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; position: relative; max-width: 1100px; margin: 0 auto; }
.cci-line {
	position: absolute; left: 14%; right: 14%; top: 40px; height: 2px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .5), rgba(217, 70, 239, .6), rgba(245, 158, 11, .5), transparent);
	transform-origin: left; transform: scaleX(0); transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
}
.cci-line.lit { transform: scaleX(1); }
.cci-col { padding: 0 22px; position: relative; z-index: 1; text-align: center; }
.cci-ic {
	width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 20px;
	background: rgb(11 11 11); border: 1px solid rgba(255, 255, 255, .12);
	display: grid; place-items: center; position: relative; overflow: hidden;
}
.cci-ic i {
    font-size: 28px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.cci-ic::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .12; }
.cci-ic svg { position: relative; z-index: 1; width: 34px; height: 34px; stroke: #fff; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cci-col h4 { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 10px; color: #fff; }
.cci-col p { font-size: 14.5px; color: rgba(255, 255, 255, .55); max-width: 26ch; margin: 0 auto; line-height: 1.55; }
.cci-formula {
	margin-top: 84px; font-family: 'JetBrains Mono', monospace;
	font-size: clamp(16px, 1.4vw, 20px); letter-spacing: -.01em;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
	opacity: .8;
}

/* ===== PRODUCT SHOWCASE ===== */
.show-head { margin-bottom: 56px; max-width: 900px; }
.dashboard-stage {
	background: #f2f0ec; border: 1px solid var(--line);
	border-radius: 28px; padding: 28px;
	box-shadow: 0 40px 80px -40px rgba(10, 10, 10, .18);
}
.db-chrome { background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 2px 8px rgba(10, 10, 10, .04); }
.db-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line-2); background: #fbfaf8; }
.db-bar .tl { display: flex; gap: 6px; }
.db-bar .tl span { width: 11px; height: 11px; border-radius: 50%; background: #e3e0da; }
.db-bar .tl span:nth-child(1) { background: #f3a69a; }
.db-bar .tl span:nth-child(2) { background: #f0d288; }
.db-bar .tl span:nth-child(3) { background: #b4d7a4; }
.db-bar .tabs { display: flex; gap: 4px; margin-left: 16px; }
.db-bar .tab { font-size: 11.5px; padding: 5px 12px; border-radius: 8px 8px 0 0; color: #8a8a8a; font-family: 'JetBrains Mono', monospace; }
.db-bar .tab.active { background: #fff; color: #1a1a1a; border: 1px solid var(--line-2); border-bottom: 0; }
.db-bar .url { margin-left: auto; font-size: 11.5px; background: #eeece7; padding: 5px 12px; border-radius: 8px; color: #7a7a7a; font-family: 'JetBrains Mono', monospace; }
.db-grid { display: grid; grid-template-columns: 240px 1fr 300px; min-height: 640px; }
.db-side { background: #fbfaf7; border-right: 1px solid var(--line-2); padding: 20px 14px; display: flex; flex-direction: column; gap: 2px; }
.db-brand { display: flex; align-items: center; gap: 10px; padding: 4px 10px 24px; font-weight: 700; letter-spacing: -.02em; }
.db-brand .lg { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); box-shadow: 0 4px 10px rgba(139, 92, 246, .3); }
.db-navh { font-size: 10px; letter-spacing: .14em; color: #b5b5b5; padding: 14px 12px 6px; text-transform: uppercase; font-weight: 600; }
.db-link { display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; color: #3a3a3a; transition: background .18s; cursor: pointer; }
.db-link:hover { background: #efece6; }
.db-link.active { background: #0a0a0a; color: #fff; }
.db-link .ic { width: 18px; height: 18px; flex-shrink: 0; }
.db-link .ic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: .85; }
.db-link .badge { margin-left: auto; font-size: 10px; padding: 2px 7px; border-radius: 999px; background: #eee; color: #4a4a4a; font-weight: 600; }
.db-link.active .badge { background: rgba(255, 255, 255, .16); color: #fff; }
.db-main { padding: 28px 30px; display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.db-greet { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.db-greet h3 { margin: 0; font-size: 26px; letter-spacing: -.025em; font-weight: 600; }
.db-greet h3 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.db-greet p { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.db-greet .actions { display: flex; gap: 8px; align-items: center; }
.db-greet .search { font-size: 12px; padding: 8px 14px; border-radius: 10px; background: #f4f2ed; color: #9a9a9a; font-family: 'JetBrains Mono', monospace; border: 1px solid var(--line-2); }
.db-greet .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #f2a08d, #ad6aa3); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 600; }
.kpi4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpi2 { border: 1px solid var(--line-2); border-radius: 14px; padding: 16px 18px; background: #fff; transition: transform .25s, box-shadow .25s; }
.kpi2:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(10, 10, 10, .08); }
.kpi2 .l { font-size: 10.5px; letter-spacing: .1em; color: #9a9a9a; text-transform: uppercase; font-weight: 600; }
.kpi2 .v { font-size: 24px; font-weight: 600; letter-spacing: -.025em; margin-top: 6px; }
.kpi2 .v.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi2 .d { font-size: 12px; margin-top: 4px; display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.kpi2 .d.up { color: #168b4f; }
.kpi2 .d.dn { color: #c44c3e; }
.kpi2 .spark { display: flex; align-items: flex-end; gap: 2px; height: 22px; margin-top: 8px; }
.kpi2 .spark span { flex: 1; background: #e7e4de; border-radius: 1px; min-height: 20%; }
.kpi2 .spark span.hi { background: var(--ink); }
.db-panels { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; flex: 1; }
.db-panel { border: 1px solid var(--line-2); border-radius: 14px; padding: 18px 20px; background: #fff; display: flex; flex-direction: column; }
.db-panel h4 { margin: 0 0 14px; font-size: 14px; font-weight: 600; letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: center; }
.db-panel h4 .more { font-size: 11px; color: var(--muted); font-weight: 400; font-family: 'JetBrains Mono', monospace; }
.task2 { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line-2); font-size: 13.5px; color: #2a2a2a; }
.task2:first-of-type { border-top: none; padding-top: 0; }
.task2 .cb { width: 16px; height: 16px; border: 1.5px solid #d2cec5; border-radius: 5px; flex-shrink: 0; cursor: pointer; transition: all .18s; }
.task2.done .cb { background: var(--ink); border-color: var(--ink); position: relative; }
.task2.done .cb::after { content: ""; position: absolute; left: 3.5px; top: 1.5px; width: 5px; height: 8px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.task2.done .label { color: #a9a9a9; text-decoration: line-through; }
.task2 .label { flex: 1; }
.task2 .pri { font-size: 10px; padding: 3px 9px; border-radius: 999px; background: #f2ede4; color: #8a7a52; font-weight: 600; letter-spacing: .04em; }
.task2 .pri.hi { background: #fde2de; color: #a63328; }
.task2 .pri.md { background: #e7edfb; color: #3c5a9a; }
.task2 .pri.lo { background: #e8f2eb; color: #3d7050; }
.db-msgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.msg { border: 1px solid var(--line-2); border-radius: 12px; padding: 14px; }
.msg .l { font-size: 11px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.msg .v { font-size: 26px; font-weight: 700; letter-spacing: -.025em; margin-top: 4px; }
.msg .d { font-size: 11px; color: var(--muted); margin-top: 2px; }
.db-cal { padding: 22px 20px; border-left: 1px solid var(--line-2); background: #fbfaf7; display: flex; flex-direction: column; gap: 16px; }
.db-cal h4 { margin: 0; font-size: 14px; font-weight: 600; }
.cal-box { background: #fff; border: 1px solid var(--line-2); border-radius: 14px; padding: 14px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 600; margin-bottom: 10px; }
.cal-head .nav { display: flex; gap: 6px; }
.cal-head .nav span { width: 22px; height: 22px; border: 1px solid var(--line-2); border-radius: 6px; display: grid; place-items: center; font-size: 10px; color: #8a8a8a; cursor: pointer; }
.cal-wk { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; font-size: 10px; color: #b5b5b5; font-weight: 600; margin-bottom: 6px; }
.cal-d { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; font-size: 11.5px; }
.cal-d span { aspect-ratio: 1; display: grid; place-items: center; color: #4a4a4a; border-radius: 6px; font-weight: 500; cursor: pointer; transition: background .18s; }
.cal-d span:hover { background: #f4f2ed; }
.cal-d span.off { color: #d4d1c8; }
.cal-d span.today { background: var(--ink); color: #fff; }
.cal-d span.today:hover { background: var(--ink); }
.cal-d span.dot { position: relative; }
.cal-d span.dot::after { content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--magenta); }
.cal-ev { display: flex; flex-direction: column; gap: 8px; }
.ev2 { border: 1px solid var(--line-2); background: #fff; border-radius: 12px; padding: 12px 14px; position: relative; overflow: hidden; }
.ev2::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.ev2.p::before { background: var(--violet); }
.ev2.a::before { background: var(--amber); }
.ev2.m::before { background: var(--magenta); }
.ev2 .t { font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.ev2 .n { font-size: 13px; font-weight: 600; margin-top: 3px; letter-spacing: -.01em; }
.ev2 .p { font-size: 11px; color: var(--muted); margin-top: 2px; }
.ticker {
	margin-top: 14px; padding: 12px 16px; background: #0a0a0a; color: #fff; border-radius: 14px;
	display: flex; align-items: center; gap: 14px; font-size: 12.5px;
}
.ticker .pill { padding: 3px 9px; border-radius: 999px; background: var(--grad); color: #fff; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.ticker .txt { opacity: .85; flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ticker .time { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255, 255, 255, .4); }

/* ===== FOR STARTUPS ===== */
.fs-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.fs-left .mini { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.fs-left h2 { margin-top: 0; }
.fs-left p { font-size: 17px; color: #4a4a4a; line-height: 1.55; max-width: 46ch; margin: 24px 0 0; }
.fs-right { display: flex; flex-direction: column; gap: 14px; }
.fs-card {
	background: #fff; border: 1px solid var(--line); border-radius: 18px;
	padding: 26px 28px; box-shadow: 0 2px 6px rgba(10, 10, 10, .04);
	display: flex; gap: 20px; align-items: flex-start;
	transition: transform .3s ease, box-shadow .3s ease;
}
.fs-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(10, 10, 10, .12); }
.fs-card .ic {
	width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
	background: linear-gradient(135deg, #faf5ff, #fff7ed);
	border: 1px solid var(--line); display: grid; place-items: center;
}
.fs-card .ic svg { width: 22px; height: 22px; stroke: #0a0a0a; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fs-card h4 { margin: 0 0 6px; font-size: 17px; letter-spacing: -.015em; font-weight: 600; }
.fs-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ===== ENTERPRISE ===== */
.ent { position: relative; overflow: hidden; }
.ent-bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 75%);
	pointer-events: none;
}
.ent-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.ent-head .section-sub { margin: 16px auto 0; }
.ent-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 56px; }
.ent-card {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px; padding: 34px 30px;
	position: relative; overflow: hidden;
	transition: background .3s, transform .3s;
}
.ent-card:hover { background: rgba(255, 255, 255, .05); transform: translateY(-4px); }
.ent-card .ic {
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--grad); margin-bottom: 20px;
	display: grid; place-items: center;
	box-shadow: 0 10px 30px -10px rgba(139, 92, 246, .5);
}
.ent-card .ic i {
    font-size: 22px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.ent-card .ic svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ent-card h4 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; font-weight: 600; }
.ent-card p { margin: 0; font-size: 14.5px; color: rgba(255, 255, 255, .55); line-height: 1.55; }
.ent-foot { text-align: center; }

/* ===== VIDEO ===== */
.video-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.video-stage {
    max-width: 1080px; margin: 0 auto; position: relative;
    padding: 6px; border-radius: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, .6), rgba(217, 70, 239, .5), rgba(245, 158, 11, .6));
    box-shadow:
        0 40px 120px -20px rgba(139, 92, 246, .3),
        0 0 120px -30px rgba(245, 158, 11, .22);
}
.video-frame {
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    position: relative;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    /* Fallback gradient shown before JS sets the thumbnail */
    background-image:
        radial-gradient(60% 80% at 40% 40%, rgba(139, 92, 246, .22), transparent 60%),
        radial-gradient(60% 80% at 70% 70%, rgba(245, 158, 11, .16), transparent 60%),
        linear-gradient(#0a0a0a, #111);
}

/* Dark overlay keeps play button visible over thumbnail */
.video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    transition: background .3s ease;
    z-index: 0;
    border-radius: 20px;
}
.video-frame:hover::before { background: rgba(0, 0, 0, .25); }

/* iframe fills frame after play */
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}

.play-btn {
    width: 96px; height: 96px; border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    display: grid; place-items: center; cursor: pointer;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, .5);
    animation: pulse 2.2s ease-out infinite;
    transition: transform .3s ease;
    position: relative;
    z-index: 1; /* Above the ::before overlay */
}
.play-btn:hover { transform: scale(1.08); }
.play-btn::after {
    content: ""; width: 0; height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, .45), 0 0 0 0 rgba(245, 158, 11, .25); }
    70% { box-shadow: 0 0 0 30px rgba(139, 92, 246, 0), 0 0 0 60px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0), 0 0 0 0 rgba(245, 158, 11, 0); }
}
@media (prefers-reduced-motion: reduce) { .play-btn { animation: none; } }
.video-cap { margin-top: 22px; text-align: center; color: rgba(255, 255, 255, .5); font-size: 14px; }


/* ===== TRUSTED GLOBALLY ===== */
.globe-section {
    display: none;
}
.globe-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.globe-head h2 { margin-left: auto; margin-right: auto; }
.globe-head .section-sub { margin-left: auto; margin-right: auto; }
/* Map image */
.map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin: 48px auto 0;
    max-width: 1100px;
}
.map-svg .ld { fill: #e7e4de; opacity: .9; }
.dot-pulse { animation: dotpulse 2.2s ease-out infinite; }
@keyframes dotpulse {
    0% { r: 3; opacity: .9; }
    70% { r: 14; opacity: 0; }
    100% { r: 3; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .dot-pulse { animation: none; } }
.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; text-align: center; }
.trust-stat .n { font-size: clamp(48px, 5.5vw, 72px); font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.trust-stat .d { font-size: 14px; color: var(--muted); margin-top: 10px; letter-spacing: .02em; }


/* ===== NEWS ===== */
.news-card .thumb.has-thumb::before,
.news-card .thumb.has-thumb::after {
    display: none !important;
}

.page-template-page-news .news-wrap {
    display: none;
}
.news-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.news-card {
	background: #fff; border: 1px solid var(--line); border-radius: 18px;
	padding: 28px 30px 32px;
	display: flex; flex-direction: column; gap: 14px;
	box-shadow: 0 2px 6px rgba(10, 10, 10, .03);
	transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 28px 50px -28px rgba(10, 10, 10, .18); }
.news-card .news-card-link { display: flex; flex-direction: column; gap: 14px; color: inherit; }
.news-card .thumb {
	aspect-ratio: 16/9; border-radius: 12px;
	background: linear-gradient(135deg, #faf5ff, #fff7ed);
	border: 1px solid var(--line);
	position: relative; overflow: hidden;
}
.news-card .thumb::before {
	content: ""; position: absolute; inset: -20%;
	background: radial-gradient(circle at 30% 30%, rgba(217, 70, 239, .22), transparent 60%),
		radial-gradient(circle at 70% 70%, rgba(139, 92, 246, .22), transparent 60%);
	filter: blur(30px);
}
.news-card.a .thumb { background: linear-gradient(135deg, #eef2ff, #faf5ff); }
.news-card.c .thumb { background: linear-gradient(135deg, #fff7ed, #fef2f2); }
.news-card .cat { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: #3a3a3a; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; align-self: flex-start; }
.news-card h4 { margin: 0; font-size: 20px; letter-spacing: -.02em; font-weight: 600; line-height: 1.22; }
.news-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.news-card .date { margin-top: auto; font-size: 12px; color: #a9a9a9; font-family: 'JetBrains Mono', monospace; padding-top: 4px; }
.news-foot { text-align: center; }

/* Remove gradient overlay when featured image exists */
.thumb.has-thumb {
    background: none;
}
.thumb.has-thumb::before,
.thumb.has-thumb::after {
    display: none !important;
}
/* Featured visual — hide gradient when featured image exists */
.feat-visual.has-thumb {
    background: none;
}
.feat-visual.has-thumb::before,
.feat-visual.has-thumb::after {
    display: none !important;
}

/* Hover image overlay */
.thumb-hover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.news-card .thumb:hover .thumb-hover,
.feat-visual:hover .thumb-hover,
.art .thumb:hover .thumb-hover {
    opacity: 1;
    transform: scale(1);
}


/* ===== PRICING ===== */
/* ── Hide Pro plan, center Free plan ── */
.price-card.pro {
    display: none !important;
}

.price-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
}
.price-head { text-align: center; margin-bottom: 64px; }
.price-head h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.price-head .section-sub { margin: 16px auto 0; }
.price-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 20px; max-width: 960px; margin: 0 auto; align-items: center; }
.price-card {
	border-radius: 22px; padding: 36px 36px 38px;
	display: flex; flex-direction: column; gap: 22px; position: relative;
	transition: transform .3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.free { background: #fff; border: 1.5px solid #0a0a0a; min-height: 560px; }
.price-card.pro {
	color: #fff; min-height: 600px;
	border: 1.5px solid transparent;
	background:
		linear-gradient(#0a0a0a, #0a0a0a) padding-box,
		var(--grad-soft) border-box;
	box-shadow: 0 30px 80px -20px rgba(139, 92, 246, .35);
}
.price-card .tier { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: #3a3a3a; }
.price-card.pro .tier { color: rgba(255, 255, 255, .6); }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin-top: -8px; }
.price-card .price .n { font-size: 64px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.price-card .price .c { font-size: 14px; color: var(--muted); }
.price-card.pro .price .c { color: rgba(255, 255, 255, .55); }
.price-card .seats { font-size: 14px; color: var(--muted); }
.price-card.pro .seats { color: rgba(255, 255, 255, .55); }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.price-card li svg { width: 16px; height: 16px; stroke: #0a0a0a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.price-card.pro li svg { stroke: #fff; }
.price-card .buy {
	margin-top: auto;
	padding: 14px 20px; border-radius: 999px; text-align: center; font-weight: 500; font-size: 14px;
	transition: transform .25s, box-shadow .25s;
	min-height: 48px; display: flex; align-items: center; justify-content: center;
}
.price-card .buy:hover { box-shadow: 0 10px 24px -8px rgba(10, 10, 10, .25); }
.price-card.free .buy { background: #0a0a0a; color: #fff; }
.price-card.pro .buy { background: #fff; color: #0a0a0a; }
.price-card .popular {
	position: absolute; top: -14px; right: 28px;
	padding: 5px 14px; border-radius: 999px;
	background: var(--grad); color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
	box-shadow: 0 8px 20px -4px rgba(139, 92, 246, .55);
}

/* ===== CLOSING CTA ===== */
.close {
	min-height: 92vh; display: grid; place-items: center;
	position: relative; overflow: hidden; text-align: center;
	padding: 120px 0;
}
.close-bloom {
	position: absolute; inset: -20%;
	background:
		radial-gradient(40% 40% at 50% 50%, rgba(139, 92, 246, .22), transparent 65%),
		radial-gradient(35% 35% at 60% 45%, rgba(217, 70, 239, .18), transparent 65%),
		radial-gradient(45% 45% at 40% 60%, rgba(245, 158, 11, .16), transparent 65%);
	filter: blur(4px); pointer-events: none;
}
.close-inner { position: relative; z-index: 1; }
.close h2 {
	font-size: clamp(48px, 7vw, 104px); line-height: .94; letter-spacing: -.045em; font-weight: 700;
	max-width: 15ch; margin: 0 auto 28px; text-wrap: balance;
}
.close h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.close .sub { color: var(--muted); font-size: 14px; margin-top: 18px; }

/* ===== FOOTER ===== */
.site-footer { background: #efece6; padding: 64px 0 48px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; align-items: flex-start; }
.foot-left .sub { margin-top: 6px; font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.foot-left .sub .acg-link {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.foot-left .sub .acg-link:hover {
    color: var(--ink);
}
.foot-mid { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.foot-mid ul, .foot-right ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; flex-wrap: wrap; }
.foot-mid ul { justify-content: center; }
.foot-mid a { font-size: 13.5px; color: #3a3a3a; opacity: .8; transition: opacity .2s; padding: 4px 0; }
.foot-mid a:hover { opacity: 1; }
.foot-right { display: flex; gap: 22px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }
.foot-right ul { gap: 22px; justify-content: flex-end; }
.foot-right a { font-size: 12.5px; color: var(--muted); padding: 4px 0; transition: color .2s; }
.foot-right a:hover { color: var(--ink); }
.foot-bot {
	margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
	display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: var(--muted); flex-wrap: wrap;
}

/* ===== ARCHIVE / SINGLE / MISC ===== */
.archive-hero { padding-top: 160px; padding-bottom: 40px; }
.single-hero { padding-top: 100px; padding-bottom: 40px; }
.single-meta {
	display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px;
	margin-top: 24px; font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; text-transform: uppercase;
}
.single-thumb { margin: 0 0 40px; }
.single-thumb img { border-radius: 22px; width: 100%; height: auto; }
.single-body .prose { font-size: 17px; line-height: 1.7; color: #2a2a2a; }
.single-body .prose h2 { font-size: clamp(28px, 3vw, 36px); letter-spacing: -.02em; line-height: 1.15; margin: 48px 0 16px; }
.single-body .prose h3 { font-size: 22px; letter-spacing: -.015em; line-height: 1.25; margin: 32px 0 12px; }
.single-body .prose p { margin: 0 0 20px; }
.single-body .prose a {
	color: var(--violet); text-decoration: underline;
	text-decoration-thickness: 1px; text-underline-offset: 3px;
}
.single-body .prose a:hover { color: var(--magenta); }
.single-body .prose blockquote {
	border-left: 3px solid var(--violet); padding: 8px 0 8px 24px; margin: 24px 0;
	font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1.4; font-style: italic; color: var(--ink);
}
.single-body .prose code { background: var(--bg-2); padding: 2px 6px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: .9em; }
.single-body .prose pre { background: #0a0a0a; color: #f8f7f5; padding: 18px 22px; border-radius: 12px; overflow-x: auto; }
.single-body .prose pre code { background: transparent; color: inherit; padding: 0; }
.single-body .prose ul, .single-body .prose ol { padding-left: 22px; margin: 0 0 20px; }
.single-body .prose li { margin: 6px 0; }
.single-body .prose img { border-radius: 12px; margin: 24px 0; }
.single-tags { margin-top: 40px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.single-tags .tag-label { font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; text-transform: uppercase; font-size: 11px; }
.single-tags a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.single-nav {
	display: flex; justify-content: space-between; gap: 16px; margin-top: 56px;
	padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px;
}
.single-nav .next { margin-left: auto; text-align: right; }
.single-nav a { color: var(--ink); transition: color .25s; }
.single-nav a:hover { color: var(--violet); }
.archive-pagination { margin-top: 32px; text-align: center; }
.archive-pagination .nav-links { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.archive-pagination .page-numbers {
	min-width: 40px; height: 40px; padding: 0 12px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 8px; border: 1px solid var(--line); color: var(--ink); font-size: 14px;
	transition: all .2s;
}
.archive-pagination .page-numbers:hover { border-color: var(--ink); }
.archive-pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty-state { text-align: center; padding: 64px 0; }
.empty-state h3 { font-size: 28px; letter-spacing: -.02em; margin: 0 0 12px; }
.empty-state p { color: var(--muted); margin: 0 0 24px; }

/* search form */
.search-form { display: flex; gap: 8px; max-width: 480px; }
.search-form input[type="search"] {
	flex: 1; padding: 12px 18px; border-radius: 999px;
	border: 1px solid var(--line); background: #fff;
	font-family: inherit; font-size: 14px; color: var(--ink);
	min-height: 44px;
}
.search-form input[type="search"]:focus {
	outline: 2px solid var(--violet); outline-offset: 2px;
	border-color: var(--violet);
}

/* comments */
.comments-area { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.comments-title { font-size: 20px; letter-spacing: -.015em; margin: 0 0 24px; font-weight: 600; }
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.comment-list .comment { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin-bottom: 12px; }
.comment-list .comment .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.comment-list .comment .comment-author .avatar { border-radius: 50%; }
.comment-list .comment .comment-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; font-family: 'JetBrains Mono', monospace; }
.comment-form label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line);
	background: #fff; font-family: inherit; font-size: 14px; color: var(--ink); margin-bottom: 16px; box-sizing: border-box;
}
.comment-form textarea:focus, .comment-form input:focus { outline: 2px solid var(--violet); outline-offset: 2px; border-color: var(--violet); }

/* widgets */
.sidebar { margin-top: 48px; }
.widget { margin-bottom: 32px; }
.widget-title { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin: 0 0 16px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }
.stag > * { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
.stag.in > * { opacity: 1; transform: none; }
.stag.in > *:nth-child(1) { transition-delay: 0ms; }
.stag.in > *:nth-child(2) { transition-delay: 90ms; }
.stag.in > *:nth-child(3) { transition-delay: 180ms; }
.stag.in > *:nth-child(4) { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
	.reveal, .stag > * { opacity: 1; transform: none; transition: none; }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
	position: fixed; pointer-events: none; z-index: 5;
	width: 560px; height: 560px; border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, .10), rgba(245, 158, 11, .05) 40%, transparent 70%);
	transform: translate(-50%, -50%);
	mix-blend-mode: multiply;
	transition: opacity .5s; opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow.active { opacity: 1; } }
