/*
 * Bilzee marketing site. Same charcoal-plus-warm-orange tokens as
 * bilzeeapp.closebee.com's theme.css -- kept as its own file here since a
 * landing page needs hero/feature-grid rules the app's component-driven
 * theme.css doesn't have, not the app-chrome rules (.form-control, .card,
 * etc.) it does. Structure/class names mirror balajiweb.closebee.com's
 * own site.css (the established pattern for this product family's
 * marketing sites) -- only the palette and copy change per product.
 */
:root {
	--bg-dark: #171310;
	--charcoal-mid: #221c17;
	--charcoal-card: #1d1712;
	--charcoal-border: #3d332b;
	--orange-accent: #ea580c;
	--orange-hover: #f2864a;
	--text-light: #fdf1e7;
	--text-muted: #b89a86;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: radial-gradient(ellipse 1200px 700px at 50% -10%, var(--charcoal-mid) 0%, var(--bg-dark) 60%);
	color: var(--text-light);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, .display {
	font-family: 'Poppins', 'Segoe UI', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

a { color: var(--orange-hover); }

/* Nav */
.nav {
	position: sticky; top: 0; z-index: 20;
	background: rgba(23, 19, 16, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--charcoal-border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.nav .brand-plate { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav .brand-plate img { height: 38px; width: auto; max-width: 160px; object-fit: contain; border-radius: 8px; display: block; background: #fff; padding: 4px 10px; }
.nav .nav-links { display: flex; align-items: center; gap: 28px; }
.nav .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav .nav-links a:hover { color: var(--text-light); }
.nav .btn { white-space: nowrap; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 26px; border-radius: 9px; font-weight: 600; font-size: 15px;
	text-decoration: none; border: 1px solid transparent; cursor: pointer;
	transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange-accent); color: #2a1608; }
.btn-orange:hover { background: var(--orange-hover); color: #2a1608; }
.btn-outline { border-color: var(--charcoal-border); color: var(--text-light); background: rgba(255,255,255,0.02); }
.btn-outline:hover { border-color: var(--orange-accent); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 68px 0 88px; text-align: left; }
.hero-photo {
	position: absolute; top: 68px; bottom: 0; left: 0; right: 64px; width: auto; height: auto;
	object-fit: cover; border-radius: 0 20px 20px 0; z-index: 0;
}
.hero-scrim {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(90deg, var(--bg-dark) 0%, var(--bg-dark) 38%, rgba(23,19,16,0.86) 54%, rgba(23,19,16,0.35) 72%, rgba(23,19,16,0.05) 86%);
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow {
	display: flex; width: max-content; align-items: center; gap: 8px;
	color: var(--orange-hover); font-size: 13px; font-weight: 600;
	letter-spacing: 0.08em; text-transform: uppercase;
	border: 1px solid var(--charcoal-border); border-radius: 999px;
	padding: 6px 16px; margin-bottom: 16px; background: rgba(23,19,16,0.5);
}
.hero h1 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.14; max-width: 640px; margin: 0 0 22px; }
.hero h1 .accent { color: var(--orange-hover); }
.hero p.lede { color: var(--text-muted); font-size: 18px; max-width: 540px; margin: 0 0 36px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 20px; }
.hero .fine-print { color: var(--text-muted); font-size: 13px; }
.hero .free-badge {
	display: flex; width: max-content; align-items: center; gap: 8px;
	background: rgba(34, 197, 94, 0.14); border: 1px solid rgba(34, 197, 94, 0.4);
	color: #4ade80; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13.5px;
	letter-spacing: 0.02em; padding: 8px 18px; border-radius: 999px; margin-bottom: 22px;
}
@media (max-width: 860px) {
	.hero-scrim { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark) 55%, rgba(23,19,16,0.92) 75%, rgba(23,19,16,0.7) 100%); }
	.hero-photo { right: 0; border-radius: 0; }
	.hero { padding: 64px 0 56px; }
	.hero h1, .hero p.lede { max-width: 100%; }
}

/* Scale hero -- a bold standalone stat band, distinct from the softer
   side-by-side .problem strip below it. */
.scale-hero {
	background: linear-gradient(180deg, var(--charcoal-mid) 0%, var(--bg-dark) 100%);
	border-top: 1px solid var(--charcoal-border); border-bottom: 1px solid var(--charcoal-border);
	padding: 76px 0; text-align: center;
}
.scale-hero .kicker { color: var(--orange-hover); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.scale-hero .figures { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 22px; }
.scale-hero .figure .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(52px, 8vw, 84px); line-height: 1; color: var(--text-light); }
.scale-hero .figure .num .orange { color: var(--orange-hover); }
.scale-hero .figure .cap { color: var(--text-muted); font-size: 14.5px; margin-top: 10px; }
.scale-hero .divider { width: 1px; height: 64px; background: var(--charcoal-border); }
.scale-hero p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto; }
@media (max-width: 640px) {
	.scale-hero .figures { gap: 20px; }
	.scale-hero .divider { display: none; }
}

/* Problem strip */
.problem {
	background: var(--charcoal-card); border-top: 1px solid var(--charcoal-border);
	border-bottom: 1px solid var(--charcoal-border); padding: 56px 0;
}
.problem .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.problem .stat { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 46px; color: var(--orange-hover); line-height: 1; }
.problem .stat-label { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.problem p { color: var(--text-light); font-size: 17px; }
.problem p + p { margin-top: 14px; }

/* Spotlight rows -- deeper dive on flagship capabilities, alternating
   text/visual sides for rhythm against the feature grid above it. */
.spotlight-row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
	padding: 52px 0; border-bottom: 1px solid var(--charcoal-border);
}
.spotlight-row:last-child { border-bottom: none; }
.spotlight-row:nth-child(even) .spotlight-text { order: 2; }
.spotlight-row:nth-child(even) .spotlight-visual { order: 1; }
.spotlight-text .kicker { color: var(--orange-hover); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.spotlight-text h3 { font-size: 26px; margin-bottom: 14px; }
.spotlight-text p { color: var(--text-muted); font-size: 16px; }
.spotlight-visual {
	display: flex; align-items: center; justify-content: center;
	background: var(--charcoal-card); border: 1px solid var(--charcoal-border); border-radius: 16px;
	min-height: 220px; position: relative; overflow: hidden;
}
.spotlight-visual::before {
	content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
	background: radial-gradient(circle, rgba(234,88,12,0.18) 0%, transparent 70%);
}
.spotlight-visual .vicon {
	width: 84px; height: 84px; border-radius: 20px; position: relative; z-index: 1;
	background: rgba(234,88,12,0.14); border: 1px solid rgba(234,88,12,0.4);
	display: flex; align-items: center; justify-content: center;
	color: var(--orange-hover); font-size: 34px;
}
.spotlight-visual .chip-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; padding: 0 20px; }
.spotlight-visual .chip {
	background: rgba(255,255,255,0.05); border: 1px solid var(--charcoal-border); color: var(--text-light);
	font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
}
.spotlight-visual .sync-flow { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.spotlight-visual .sync-flow .node {
	width: 64px; height: 64px; border-radius: 14px; background: rgba(255,255,255,0.05);
	border: 1px solid var(--charcoal-border); display: flex; align-items: center; justify-content: center;
	color: var(--text-light); font-size: 24px;
}
.spotlight-visual .sync-flow i.fa-arrow-right-long { color: var(--orange-hover); font-size: 20px; }

@media (max-width: 860px) {
	.spotlight-row { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
	.spotlight-row:nth-child(even) .spotlight-text,
	.spotlight-row:nth-child(even) .spotlight-visual { order: unset; }
}

/* Section headers */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head .kicker { color: var(--orange-hover); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 16.5px; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
	background: var(--charcoal-card); border: 1px solid var(--charcoal-border); border-radius: 14px;
	padding: 28px 26px;
}
.feature-card .ficon {
	width: 46px; height: 46px; border-radius: 11px;
	background: rgba(234,88,12,0.14); border: 1px solid rgba(234,88,12,0.35);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px; color: var(--orange-hover); font-size: 20px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 9px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step { text-align: center; padding: 0 20px; position: relative; }
.step .num {
	width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 20px;
	background: var(--bg-dark); border: 2px solid var(--orange-accent); color: var(--orange-hover);
	display: flex; align-items: center; justify-content: center;
	font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px;
	position: relative; z-index: 2;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; max-width: 260px; margin: 0 auto; }
.steps::before {
	content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 2px;
	background: linear-gradient(90deg, var(--charcoal-border), var(--orange-accent), var(--charcoal-border));
	z-index: 1;
}

/* Roles */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role-card { background: var(--charcoal-card); border: 1px solid var(--charcoal-border); border-radius: 14px; padding: 30px 28px; }
.role-card .role-badge {
	display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--orange-hover); background: rgba(234,88,12,0.14); border: 1px solid rgba(234,88,12,0.35);
	border-radius: 999px; padding: 4px 12px; margin-bottom: 16px;
}
.role-card h3 { font-size: 19px; margin-bottom: 12px; }
.role-card ul { list-style: none; }
.role-card li { color: var(--text-muted); font-size: 14.5px; padding: 6px 0 6px 24px; position: relative; }
.role-card li::before { content: '✓'; position: absolute; left: 0; color: var(--orange-hover); font-weight: 700; }
.role-card li.no::before { content: '—'; color: var(--charcoal-border); }

/* Closing CTA */
.closing { text-align: center; padding: 90px 0 110px; }
.closing h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.closing p { color: var(--text-muted); font-size: 17px; max-width: 520px; margin: 0 auto 34px; }

/* Footer */
footer { border-top: 1px solid var(--charcoal-border); padding: 32px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer .brand-plate { display: inline-flex; align-items: center; gap: 8px; }
footer .brand-plate img { height: 26px; width: auto; max-width: 130px; object-fit: contain; border-radius: 5px; display: block; background: #fff; padding: 3px 8px; }
footer .fine { color: var(--text-muted); font-size: 13px; }

@media (max-width: 860px) {
	.problem .grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
	.feature-grid { grid-template-columns: 1fr 1fr; }
	.steps { grid-template-columns: 1fr; gap: 40px; }
	.steps::before { display: none; }
	.roles { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.feature-grid { grid-template-columns: 1fr; }
	.nav .nav-links { display: none; }
}
