/* Cordango Marketing — cobalt + amber, warm light mode */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #2563EB;
  --brand-light: #3B82F6;
  --brand-dark: #1D4ED8;
  --brand-pale: #EEF3FF;
  --brand-glow: rgba(37, 99, 235, 0.18);
  --accent: #F59E0B;
  --accent-light: #FBBF24;
  --accent-pale: #FFF7EA;
  --navy: #0E1729;
  --text: #14181F;
  --text-secondary: #4B5563;
  --text-muted: #94A3B8;
  --bg: #FAFAF8;
  --bg-warm: #F4F2EC;
  --surface: #FFFFFF;
  --border: #E5E2DC;
  --border-light: #EEEBE4;
  --green: #16A34A;
  --amber-s: #CA8A04;
  --red: #DC2626;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 41, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 41, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 23, 41, 0.10);
  --shadow-xl: 0 20px 56px rgba(15, 23, 41, 0.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ── Buttons ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; border-radius: var(--r); padding: 12px 24px; cursor: pointer; transition: all .2s ease; white-space: nowrap; border: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 22px var(--brand-glow); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-accent { background: var(--accent); color: #3a2500; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245, 158, 11, 0.28); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--brand); }
.btn-lg { font-size: 16px; padding: 14px 30px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ─────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; background: transparent; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.nav--scrolled { background: rgba(250, 250, 248, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--border); box-shadow: 0 1px 8px rgba(15, 23, 41, 0.04); }
.nav-pill { display: flex; align-items: center; max-width: 1200px; margin: 0 auto; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 32px; height: 32px; background: var(--brand); border-radius: 9px; display: grid; place-items: center; font-weight: 800; font-size: 17px; color: #fff; position: relative; font-family: var(--font-body); }
.logo-mark::after { content: ''; position: absolute; bottom: 3px; right: 3px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); border: 1.5px solid var(--surface); }
.logo-wordmark { font-family: var(--font-body); font-weight: 700; font-size: 21px; color: #fff; letter-spacing: -0.4px; }
.nav--scrolled .logo-wordmark { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 32px; }
.nav-links > li { position: relative; }
.nav-links a { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, 0.82); padding: 8px 14px; border-radius: var(--r-pill); transition: all .15s; }
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.nav--scrolled .nav-links a { color: var(--text-secondary); }
.nav--scrolled .nav-links a:hover { color: var(--text); background: var(--bg-warm); }
.nav-links.open a, .nav-links.open a:hover { color: var(--text-secondary); background: transparent; }
.nav-chevron { font-size: 9px; opacity: .6; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-actions .btn-primary { border-radius: var(--r-pill); padding: 10px 20px; font-size: 14px; }

/* Mega menu */
.mega-menu { position: absolute; top: calc(100% + 10px); left: 0; width: 340px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease; }
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: var(--r); transition: background .15s; }
.mega-item:hover { background: var(--brand-pale); }
.mega-icon { font-size: 20px; line-height: 1.2; flex-shrink: 0; }
.mega-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.mega-item span { display: block; font-size: 12.5px; color: var(--text-muted); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .2s; }
.nav--scrolled .nav-hamburger span { background: var(--text); }

/* ── Section labels ──────────────────────────────── */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 20px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; padding: 5px 14px; background: var(--brand-pale); border: 1px solid rgba(37, 99, 235, 0.15); border-radius: var(--r-pill); display: inline-block; }
.section-eyebrow--invert { color: var(--accent-light); background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.25); }
.section-heading { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 46px); color: var(--navy); line-height: 1.14; margin-bottom: 16px; letter-spacing: -0.2px; }
.section-heading--invert { color: #fff; }
.section-sub { font-size: 17px; color: var(--text-secondary); max-width: 580px; line-height: 1.7; margin-bottom: 52px; }

/* ── Hero (dark) ─────────────────────────────────── */
.hero { padding: 168px 0 104px; position: relative; overflow: hidden; background: #0B1220; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(1100px 620px at 72% 4%, rgba(37, 99, 235, 0.30), transparent 62%),
  radial-gradient(780px 520px at 3% 98%, rgba(245, 158, 11, 0.13), transparent 60%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.hero-glow--1 { width: 440px; height: 440px; background: rgba(37, 99, 235, 0.32); top: -90px; right: 4%; }
.hero-glow--2 { width: 340px; height: 340px; background: rgba(245, 158, 11, 0.16); bottom: -130px; left: -50px; }
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { color: #7DA3FF; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(40px, 5.2vw, 62px); line-height: 1.06; color: #fff; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-content h1 em { color: #5E9CFF; font-style: italic; }
.hero-content > p { font-size: 18px; color: rgba(255, 255, 255, 0.72); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .btn-secondary { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.hero .btn-secondary:hover { border-color: #5E9CFF; color: #fff; background: rgba(255, 255, 255, 0.1); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust-item { font-size: 13px; color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.hero-trust-item::first-letter { color: #4ADE80; }
.hero-diagram { width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto; overflow: visible; }

/* ── App mockup (hero) ───────────────────────────── */
.app-mockup { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg); transition: transform .5s ease; }
.app-mockup:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.mockup-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--bg-warm); border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #EF4444; } .dot--yellow { background: #F59E0B; } .dot--green { background: #22C55E; }
.mockup-url { margin-left: 10px; font-size: 11.5px; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; }
.mockup-body { display: flex; min-height: 340px; }
.mockup-sidebar { width: 176px; flex-shrink: 0; background: var(--bg); border-right: 1px solid var(--border-light); padding: 12px 10px; }
.sb-company { display: flex; align-items: center; gap: 9px; padding: 6px 6px 12px; border-bottom: 1px solid var(--border-light); margin-bottom: 10px; }
.sb-company-logo { width: 28px; height: 28px; border-radius: 7px; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.sb-company-name { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.sb-company-sub { display: block; font-size: 10.5px; color: var(--text-muted); }
.sb-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); padding: 8px 8px 4px; }
.sb-item { color: var(--text-secondary); padding: 6px 8px; border-radius: 7px; font-size: 12.5px; font-weight: 500; }
.sb-item.active { background: var(--brand-pale); color: var(--brand-dark); font-weight: 600; }
.sb-add { color: var(--brand); font-size: 12px; font-weight: 600; padding: 8px; margin-top: 4px; border: 1px dashed var(--border); border-radius: 7px; text-align: center; }
.mockup-content { flex: 1; padding: 16px 18px; }
.mockup-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mockup-h { font-size: 16px; font-weight: 700; color: var(--navy); }
.perm-chip { font-size: 11px; color: var(--text-secondary); background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 10px; }
.mock-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 8px; align-items: center; padding: 10px 8px; border-radius: 8px; font-size: 12.5px; color: var(--text-secondary); }
.mock-row--head { font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--text-muted); padding: 4px 8px; }
.mock-row + .mock-row { border-top: 1px solid var(--border-light); }
.mock-row--sel { background: var(--brand-pale); border-radius: 8px; }
.mock-strong { font-weight: 600; color: var(--navy); }
.mock-pill { font-size: 10.5px; font-weight: 600; padding: 2px 9px; border-radius: var(--r-pill); justify-self: start; }
.mock-pill--green { background: #E7F6ED; color: var(--green); }
.mock-pill--amber { background: var(--accent-pale); color: var(--amber-s); }
.mock-shared { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; padding: 11px 12px; background: var(--accent-pale); border: 1px solid rgba(245, 158, 11, 0.22); border-radius: 10px; font-size: 12px; color: var(--text-secondary); }
.mock-shared-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 4px; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15); }

/* ── Problem ─────────────────────────────────────── */
.problem-section { padding: 96px 0; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: all .25s; }
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border); }
.problem-icon { font-size: 30px; margin-bottom: 16px; }
.problem-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.problem-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }

/* ── Stats ───────────────────────────────────────── */
.stats-bar { padding: 20px 0 60px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: var(--navy); border-radius: var(--r-lg); padding: 44px 32px; }
.stat { text-align: center; color: #fff; }
.stat-num { font-family: var(--font-display); font-size: 52px; color: #fff; line-height: 1; }
.stat-unit { font-family: var(--font-display); font-size: 34px; color: var(--accent-light); }
.stat-label { display: block; margin-top: 12px; font-size: 13.5px; color: rgba(255, 255, 255, 0.66); max-width: 240px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ── Features / pillars ──────────────────────────── */
.features-section { padding: 96px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; transition: all .25s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); opacity: 0; transition: opacity .25s; }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { opacity: 1; }
.pillar-card--b::before { background: var(--accent); }
.pillar-card--c::before { background: var(--navy); }
.bento-icon { font-size: 30px; margin-bottom: 18px; }
.pillar-card h3 { font-family: var(--font-display); font-size: 23px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.pillar-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.bento-link { font-size: 14px; font-weight: 600; color: var(--brand); margin-top: auto; }
.bento-link:hover { color: var(--brand-dark); }

/* ── Deep dives ──────────────────────────────────── */
.deep-dive { padding: 96px 0; }
.deep-dive--alt { background: var(--bg-warm); }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dd-copy .section-heading { margin-bottom: 18px; }
.dd-copy > p { font-size: 16.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 26px; }
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.check { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--brand-pale); color: var(--brand); font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Demo panels (shared) */
.demo-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--border-light); font-size: 14px; font-weight: 700; color: var(--navy); }
.demo-badge { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--bg-warm); border-radius: var(--r-pill); padding: 4px 11px; }

/* Foundation: permission table */
.perm-table { padding: 14px 18px 4px; }
.perm-head, .perm-line { display: grid; grid-template-columns: 1.6fr .8fr .9fr .9fr; align-items: center; }
.perm-head { font-size: 10.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--text-muted); padding-bottom: 8px; }
.perm-head span:not(:first-child), .perm-line span:not(.perm-name) { text-align: center; }
.perm-line { padding: 11px 0; border-top: 1px solid var(--border-light); font-size: 13.5px; }
.perm-name { color: var(--navy); font-weight: 500; }
.perm-y { color: var(--green); font-weight: 700; }
.perm-n { color: var(--text-muted); }
.perm-foot { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 18px 18px; }
.perm-foot-badge { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 5px 11px; }

/* Apps gallery */
.app-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; }
.app-tile { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 10px; border: 1px solid var(--border-light); border-radius: var(--r); background: var(--bg); text-align: center; }
.app-tile--on { background: var(--brand-pale); border-color: rgba(37, 99, 235, 0.2); }
.app-emoji { font-size: 24px; }
.app-name { font-size: 12.5px; font-weight: 600; color: var(--navy); }
.app-state { font-size: 10.5px; font-weight: 600; color: var(--brand); }
.app-add-sm { font-size: 10.5px; font-weight: 600; color: var(--text-muted); }
.app-shared-note { display: flex; align-items: center; gap: 9px; margin: 0 18px 18px; padding: 11px 12px; background: var(--accent-pale); border: 1px solid rgba(245, 158, 11, 0.22); border-radius: 10px; font-size: 12.5px; color: var(--text-secondary); }

/* ── Custom band (dark) ──────────────────────────── */
.custom-band { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.custom-band::before { content: ''; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%); pointer-events: none; }
.custom-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.custom-copy > p { font-size: 16.5px; color: rgba(255, 255, 255, 0.72); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.custom-steps { display: flex; flex-direction: column; gap: 12px; }
.custom-step { display: flex; align-items: center; gap: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--r); padding: 16px 20px; color: #fff; font-size: 15px; font-weight: 500; }
.custom-step-n { font-family: var(--font-display); font-size: 22px; color: var(--accent-light); }

/* ── AI chat demo ────────────────────────────────── */
.chat-demo { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border-light); }
.chat-title { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--navy); font-size: 14px; }
.chat-avatar { width: 26px; height: 26px; border-radius: 8px; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.chat-scope { font-size: 11px; color: var(--text-muted); background: var(--bg-warm); border-radius: var(--r-pill); padding: 4px 10px; }
.chat-messages { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { font-size: 13.5px; line-height: 1.6; padding: 12px 15px; border-radius: 14px; max-width: 88%; }
.chat-msg--user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg--ai { align-self: flex-start; background: var(--bg-warm); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg--ai ol { margin: 8px 0 8px 18px; display: flex; flex-direction: column; gap: 5px; }
.chat-msg--ai strong { color: var(--navy); }
.chat-src { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
.chat-input-bar { display: flex; align-items: center; gap: 10px; margin: 0 18px 18px; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--r-pill); }
.chat-placeholder { flex: 1; font-size: 13px; color: var(--text-muted); }
.chat-send { width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; border: none; cursor: pointer; font-size: 14px; }

/* ── How it works ────────────────────────────────── */
.how-it-works { padding: 96px 0; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.timeline-step { display: flex; gap: 18px; }
.step-marker { font-family: var(--font-display); font-size: 22px; color: var(--brand); background: var(--brand-pale); width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }

/* ── Comparison ──────────────────────────────────── */
.comparison { padding: 96px 0; background: var(--bg-warm); }
.table-wrapper { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border-light); }
.compare-table thead th { font-weight: 600; color: var(--text-muted); font-size: 13px; }
.compare-table tbody td:first-child { color: var(--text); font-weight: 500; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.col-us { background: var(--brand-pale); color: var(--brand-dark) !important; font-weight: 700 !important; }
.logo-mark-sm { display: inline-grid; place-items: center; width: 18px; height: 18px; background: var(--brand); color: #fff; border-radius: 5px; font-weight: 800; font-size: 11px; margin-right: 5px; vertical-align: -3px; }
.tick { color: var(--green); font-weight: 700; }
.cross { color: var(--text-muted); }
.partial { color: var(--amber-s); font-weight: 700; cursor: help; }
.compare-disclaimer { margin-top: 20px; font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── Final CTA ───────────────────────────────────── */
.final-cta { padding: 40px 0 100px; }
.cta-card { position: relative; overflow: hidden; background: var(--navy); border-radius: 28px; padding: 72px 40px; text-align: center; box-shadow: var(--shadow-xl); }
.cta-accent { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.cta-accent--1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 70%); top: -140px; left: -80px; }
.cta-accent--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245, 158, 11, 0.32), transparent 70%); bottom: -150px; right: -60px; }
.cta-card h2 { position: relative; font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); color: #fff; line-height: 1.12; margin-bottom: 16px; }
.cta-card > p { position: relative; font-size: 17px; color: rgba(255, 255, 255, 0.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-actions { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-card .btn-ghost { color: rgba(255, 255, 255, 0.85); }
.cta-card .btn-ghost:hover { color: #fff; }
.cta-footnote { position: relative; margin-top: 24px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }

/* ── Blog ────────────────────────────────────────── */
.blog-hero { padding: 150px 0 40px; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 52px); color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.blog-hero p { font-size: 17px; color: var(--text-secondary); max-width: 560px; }
.blog-list { padding: 24px 0 100px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: all .25s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .section-eyebrow { margin-bottom: 14px; }
.blog-card h2 { font-family: var(--font-display); font-size: 24px; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.blog-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: 13px; color: var(--text-muted); }

/* Post */
.post { padding: 140px 0 60px; }
.post-back { font-size: 14px; font-weight: 600; color: var(--brand); display: inline-block; margin-bottom: 28px; }
.post-head { margin-bottom: 36px; }
.post-title { font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 48px); color: var(--navy); line-height: 1.12; margin: 12px 0 16px; }
.post-meta { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.post-body { font-size: 17px; color: var(--text); line-height: 1.8; }
.post-body h2 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin: 40px 0 14px; }
.post-body h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin: 30px 0 10px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.post-body li { list-style: disc; }
.post-body strong { color: var(--navy); }
.post-body a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.post-body blockquote { border-left: 3px solid var(--brand); padding: 4px 0 4px 20px; margin: 24px 0; color: var(--text-secondary); font-style: italic; }
.post-cta { margin-top: 56px; padding: 40px; background: var(--bg-warm); border-radius: var(--r-lg); text-align: center; }
.post-cta h3 { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.post-cta p { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .dd-grid, .dd-grid--reverse, .custom-inner { grid-template-columns: 1fr; gap: 40px; }
  .dd-grid--reverse .dd-copy { order: -1; }
  .problem-grid, .timeline, .stats-row, .app-gallery { grid-template-columns: 1fr; }
  .app-gallery { grid-template-columns: repeat(3, 1fr); }
  .stats-row { gap: 32px; padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .blog-list { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px; gap: 4px; }
  .nav-links.open .mega-menu { display: none; }
}
/* ── Builder mockup (generate) ───────────────────── */
.builder-body { padding: 16px 18px; }
.builder-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); }
.builder-prompt { margin-bottom: 16px; }
.builder-input { margin-top: 7px; font-size: 14px; color: var(--navy); font-weight: 600; background: var(--bg); border: 1.5px solid var(--brand); border-radius: 10px; padding: 11px 14px; }
.builder-caret { display: inline-block; width: 2px; height: 15px; background: var(--brand); margin-left: 2px; vertical-align: -3px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.builder-qa { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.builder-q { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.builder-bot { width: 20px; height: 20px; border-radius: 6px; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 11px; flex-shrink: 0; }
.builder-a { align-self: flex-end; font-size: 12.5px; background: var(--brand-pale); color: var(--brand-dark); padding: 6px 12px; border-radius: 12px; font-weight: 500; }
.builder-result { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: 12px; padding: 14px; }
.builder-result-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--green); }
.builder-fields { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.bf { font-size: 11.5px; font-weight: 600; color: var(--navy); background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; }
.builder-ready { font-size: 12px; color: var(--text-secondary); }

/* ── Dashboard widgets mockup ────────────────────── */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; }
.dash-widget { background: var(--bg); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.dash-widget--accent { background: var(--accent-pale); border-color: rgba(245, 158, 11, .25); }
.dash-widget--wide { grid-column: 1 / -1; }
.dash-val { font-family: var(--font-display); font-size: 30px; color: var(--navy); line-height: 1; }
.dash-widget--accent .dash-val { color: var(--amber-s); }
.dash-cap { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 56px; margin-top: 12px; }
.dash-bars span { flex: 1; background: var(--brand); border-radius: 4px 4px 0 0; opacity: .85; }

/* ── Contact / demo ──────────────────────────────── */
.contact-wrap { padding: 150px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy .section-heading { margin-bottom: 18px; }
.contact-copy > p { font-size: 16.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 26px; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 15px; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r); background: var(--bg); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: var(--surface); }
.field textarea { resize: vertical; min-height: 96px; }

@media (max-width: 560px) {
  .cta-card, .problem-card, .pillar-card { padding: 28px 22px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-wrap { padding-top: 120px; }
}

@media (max-width: 1080px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pillars-grid { grid-template-columns: 1fr; } }
