/* =========================================================
   AI ATTENDANCE — DESIGN SYSTEM
   ========================================================= */

:root {
	--navy-950: #05070f;
	--navy-900: #0a0e23;
	--navy-850: #0c1230;
	--navy-800: #10173a;
	--navy-700: #171f4d;
	--navy-600: #232c5f;

	--blue-400: #5b9cff;
	--blue-500: #3b82f6;
	--blue-600: #2563eb;
	--violet-400: #a78bfa;
	--violet-500: #8b5cf6;
	--violet-600: #7c3aed;
	--cyan-400: #38bdf8;

	--gradient-brand: linear-gradient(135deg, var(--blue-500) 0%, var(--violet-500) 100%);
	--gradient-brand-soft: linear-gradient(135deg, rgba(59,130,246,.14) 0%, rgba(139,92,246,.14) 100%);
	--gradient-dark: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);

	--ink-900: #0b1020;
	--ink-700: #2a3149;
	--ink-600: #4b5468;
	--ink-500: #6b7488;

	--surface-0: #ffffff;
	--surface-50: #f7f8fc;
	--surface-100: #eef1f8;
	--border-soft: #e4e8f2;
	--border-dark: rgba(255,255,255,.10);

	--success: #22c55e;
	--danger: #f87171;

	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;

	--shadow-sm: 0 2px 10px rgba(15, 23, 42, .06);
	--shadow-md: 0 12px 32px rgba(15, 23, 42, .10);
	--shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
	--shadow-glow: 0 0 0 1px rgba(139,92,246,.15), 0 20px 60px rgba(59,130,246,.20);

	--font-display: "Plus Jakarta Sans", "Manrope", -apple-system, sans-serif;
	--font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

	--container: 1240px;
	--container-narrow: 860px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink-700);
	background: var(--surface-0);
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { top: -50px; left: 0; position: fixed; z-index: 10000; background: var(--navy-950); color: #fff; padding: 12px 20px; transition: top .2s; }
.skip-link:focus { top: 0; position: fixed; width: auto; height: auto; clip: auto; }
:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section-dark { background: var(--gradient-dark); color: rgba(255,255,255,.86); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-alt { background: var(--surface-50); }
.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { color: var(--ink-600); font-size: 18px; }
.section-dark .section-head p { color: rgba(255,255,255,.68); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700; font-size: 13px;
	letter-spacing: .06em; text-transform: uppercase;
	color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gradient-brand); }
.eyebrow-light { color: var(--cyan-400); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700; font-size: 15px;
	padding: 13px 26px; border-radius: 999px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.btn-primary { background: var(--gradient-brand); color: #fff; box-shadow: 0 10px 26px rgba(99,74,246,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(99,74,246,.45); }
.btn-secondary { background: var(--navy-950); color: #fff; }
.btn-secondary:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 1.5px solid var(--border-soft); }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }
.section-dark .btn-ghost, .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { display: flex; width: 100%; }
.btn-icon svg { width: 18px; height: 18px; }

/* ---------- Icons ---------- */
.aiatt-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
	position: sticky; top: 0; z-index: 999;
	background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--border-soft); box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 24px; }
.site-logo img { height: 60px; width: auto; }

.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
	display: flex; align-items: center; height: 92px; padding: 0 16px;
	font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-700);
	transition: color .15s;
}
.primary-nav > ul > li > a:hover { color: var(--blue-600); }
.primary-nav > ul > li > a[aria-current="page"] { color: var(--blue-600); }

.nav-dropdown {
	position: absolute; top: 100%; left: 0; min-width: 320px;
	background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-soft);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	padding: 20px;
}
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nav-dropdown-inner.single { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-title { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); font-weight: 700; margin-bottom: 10px; }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-700); }
.nav-dropdown a:hover { background: var(--surface-50); color: var(--blue-600); }
.nd-icon { width: 18px; height: 18px; color: var(--blue-500); }

.site-header-cta { display: flex; align-items: center; gap: 14px; }
.mobile-nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; }
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
	display: none; position: fixed; inset: 92px 0 0 0; background: #fff; z-index: 998;
	padding: 28px 24px; overflow-y: auto; transform: translateY(-12px); opacity: 0; pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}
.mobile-nav.is-open { display: block; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 24px; }
.mobile-nav a { display: block; padding: 16px 4px; font-family: var(--font-display); font-weight: 700; font-size: 19px; border-bottom: 1px solid var(--border-soft); }

@media (max-width: 980px) {
	.primary-nav { display: none; }
	.mobile-nav-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
	position: relative; overflow: hidden;
	background: var(--gradient-dark);
	padding: 88px 0 120px;
	color: #fff;
}
.hero::before {
	content: ""; position: absolute; inset: -20% -10% auto; height: 620px;
	background: radial-gradient(60% 60% at 30% 20%, rgba(59,130,246,.35), transparent 70%),
	            radial-gradient(50% 50% at 80% 10%, rgba(139,92,246,.30), transparent 70%);
	filter: blur(10px); pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
	font-size: 13.5px; font-weight: 700; margin-bottom: 24px; color: rgba(255,255,255,.9);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 12px var(--cyan-400); }
.hero h1 { font-size: clamp(38px, 4.6vw, 64px); color: #fff; margin-bottom: 22px; }
.hero h1 .grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 19px; color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; color: rgba(255,255,255,.5); font-size: 13.5px; font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }

/* Hero dashboard mockup */
.hero-visual { position: relative; }
.dash-mock {
	position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-xl); padding: 24px; backdrop-filter: blur(20px);
	box-shadow: var(--shadow-glow);
}
.dash-mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-mock-header .dots { display: flex; gap: 6px; }
.dash-mock-header .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.dash-greeting { color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; }
.dash-greeting strong { display: block; color: #fff; font-size: 17px; font-family: var(--font-display); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); padding: 16px; }
.dash-stat .num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fff; }
.dash-stat .label { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 600; }
.dash-stat.present .num { color: #4ade80; }
.dash-stat.late .num { color: #fbbf24; }
.dash-stat.absent .num { color: #f87171; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; background: rgba(255,255,255,.04); border-radius: var(--radius-md); padding: 14px; border: 1px solid rgba(255,255,255,.08); }
.dash-bars span { flex: 1; border-radius: 6px 6px 0 0; background: var(--gradient-brand); opacity: .85; }

.float-card {
	position: absolute; background: #fff; color: var(--ink-900); border-radius: var(--radius-md);
	padding: 14px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
	animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient-brand-soft); display: flex; align-items: center; justify-content: center; }
.float-card .fc-icon svg { width: 20px; height: 20px; color: var(--blue-600); }
.float-card .fc-title { font-weight: 800; font-size: 14px; }
.float-card .fc-sub { font-size: 12px; color: var(--ink-500); }
.float-card.card-verified { top: -22px; right: -18px; }
.float-card.card-location { bottom: -18px; left: -22px; animation-delay: 1.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; }
	.float-card { position: static; margin-top: 14px; animation: none; }
}

/* =========================================================
   FEATURE GRID ("One Platform")
   ========================================================= */
.feature-card {
	background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
	padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--gradient-brand); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 26px; height: 26px; color: #fff; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-600); font-size: 15px; margin: 0; }
.feature-card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--blue-600); }

/* =========================================================
   PROBLEM / SOLUTION
   ========================================================= */
.problem-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.ps-panel { border-radius: var(--radius-lg); padding: 36px; }
.ps-problem { background: var(--surface-50); border: 1px solid var(--border-soft); }
.ps-solution { background: var(--gradient-dark); color: #fff; box-shadow: var(--shadow-glow); }
.ps-panel h3 { font-size: 22px; margin-bottom: 20px; }
.ps-solution h3 { color: #fff; }
.ps-list { display: flex; flex-direction: column; gap: 14px; }
.ps-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 15px; }
.ps-list .mark { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.ps-problem .mark { background: rgba(248,113,113,.14); color: var(--danger); }
.ps-solution .mark { background: rgba(74,222,128,.16); color: #4ade80; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-row::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-soft) 0 10px, transparent 10px 18px); z-index: 0; }
.step-card { position: relative; z-index: 1; text-align: left; }
.step-num { width: 68px; height: 68px; border-radius: 20px; background: #fff; border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--blue-600); margin-bottom: 20px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--ink-600); font-size: 14.5px; }

/* =========================================================
   METHOD CARDS (Face / PIN / QR / Mobile / Kiosk)
   ========================================================= */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.method-card {
	background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
	padding: 28px; text-align: center; transition: transform .2s, box-shadow .2s;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.method-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 18px; background: var(--gradient-brand-soft); display: flex; align-items: center; justify-content: center; }
.method-icon svg { width: 30px; height: 30px; color: var(--violet-600); }
.method-card h3 { font-size: 17px; margin-bottom: 6px; }
.method-card p { font-size: 14px; color: var(--ink-600); margin: 0; }
.method-tag { display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--blue-600); background: var(--gradient-brand-soft); padding: 5px 10px; border-radius: 999px; }

/* =========================================================
   FACE VERIFY MOCKUP (facial recognition section)
   ========================================================= */
.face-mock { position: relative; background: var(--navy-950); border-radius: var(--radius-xl); padding: 40px; color: #fff; overflow: hidden; }
.face-mock::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 50% at 50% 0%, rgba(139,92,246,.25), transparent 70%); }
.face-frame { position: relative; z-index: 1; width: 220px; height: 220px; margin: 0 auto 24px; border-radius: 28px; }
.face-frame svg { width: 100%; height: 100%; color: var(--cyan-400); }
.face-result { position: relative; z-index: 1; text-align: center; }
.face-result .badge-ok { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,222,128,.14); color: #4ade80; padding: 8px 16px; border-radius: 999px; font-weight: 800; font-size: 13.5px; margin-bottom: 14px; }
.face-result h4 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.face-result p { color: rgba(255,255,255,.55); margin: 0; }
.face-methods-row { position: relative; z-index: 1; display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.face-methods-row span { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); }
.face-methods-row span.active { background: var(--gradient-brand); border-color: transparent; color: #fff; }

/* =========================================================
   KIOSK SECTION — tablet mockup
   ========================================================= */
.kiosk-scene { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.tablet-mock { position: relative; background: #14142b; border-radius: 34px; padding: 14px; box-shadow: var(--shadow-lg); max-width: 340px; margin: 0 auto; border: 6px solid #1c1c38; }
.tablet-screen { background: var(--gradient-dark); border-radius: 20px; padding: 24px 20px; color: #fff; min-height: 460px; display: flex; flex-direction: column; }
.tablet-brand { font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.55); text-align: center; margin-bottom: 18px; }
.tablet-clock { text-align: center; font-family: var(--font-display); font-size: 34px; font-weight: 800; margin-bottom: 4px; }
.tablet-date { text-align: center; font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.tablet-face-area { width: 140px; height: 140px; margin: 0 auto 18px; border-radius: 24px; border: 2px dashed rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; }
.tablet-face-area svg { width: 64px; height: 64px; color: var(--cyan-400); }
.tablet-welcome { text-align: center; margin-bottom: 18px; }
.tablet-welcome .ok { color: #4ade80; font-weight: 800; font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 4px; }
.tablet-welcome strong { font-size: 17px; }
.tablet-options { margin-top: auto; display: flex; gap: 8px; }
.tablet-options span { flex: 1; text-align: center; padding: 10px 4px; border-radius: 12px; background: rgba(255,255,255,.07); font-size: 11.5px; font-weight: 700; }

.kiosk-points { display: flex; flex-direction: column; gap: 22px; }
.kiosk-point { display: flex; gap: 16px; }
.kiosk-point .kp-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: var(--gradient-brand-soft); display: flex; align-items: center; justify-content: center; }
.kiosk-point .kp-icon svg { width: 24px; height: 24px; color: var(--violet-600); }
.kiosk-point h4 { font-size: 17px; margin-bottom: 4px; }
.kiosk-point p { color: var(--ink-600); font-size: 14.5px; margin: 0; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare-table th, table.compare-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border-soft); font-size: 15px; }
table.compare-table th { background: var(--surface-50); font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-500); }
table.compare-table tr:last-child td { border-bottom: none; }
table.compare-table td.method-name { font-weight: 700; display: flex; align-items: center; gap: 10px; }
table.compare-table td.method-name svg { width: 20px; height: 20px; color: var(--blue-600); }

/* =========================================================
   SCHEDULING MOCKUP
   ========================================================= */
.schedule-mock { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-md); }
.schedule-day-label { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink-900); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-soft); }
.schedule-shift { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--border-soft); }
.schedule-shift:last-child { border-bottom: none; }
.schedule-time { font-family: var(--font-display); font-weight: 800; font-size: 14px; width: 96px; color: var(--blue-600); flex-shrink: 0; }
.schedule-shift-name { font-weight: 700; font-size: 15px; }
.schedule-loc { font-size: 13px; color: var(--ink-500); }
.schedule-count { margin-left: auto; background: var(--surface-50); border-radius: 999px; padding: 6px 14px; font-size: 12.5px; font-weight: 800; color: var(--ink-700); }

/* =========================================================
   TIMESHEET MOCKUP
   ========================================================= */
.timesheet-mock-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); }
table.timesheet-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
table.timesheet-table th { background: var(--navy-950); color: rgba(255,255,255,.7); text-align: left; padding: 14px 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
table.timesheet-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
.status-pill { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.status-approved { background: rgba(74,222,128,.14); color: #16a34a; }
.status-pending { background: rgba(251,191,36,.16); color: #b45309; }

/* =========================================================
   PAYROLL FLOW
   ========================================================= */
.flow-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 140px; text-align: center; background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 22px 14px; }
.flow-step .fs-icon { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 12px; background: var(--gradient-brand-soft); display: flex; align-items: center; justify-content: center; }
.flow-step .fs-icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.flow-step span { font-weight: 700; font-size: 14px; }
.flow-arrow { color: var(--ink-500); flex-shrink: 0; }
.flow-arrow svg { width: 20px; height: 20px; }
@media (max-width: 780px) { .flow-arrow svg { transform: rotate(90deg); } }

/* =========================================================
   SECURITY
   ========================================================= */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.security-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-lg); padding: 26px; }
.security-card .sec-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.security-card .sec-icon svg { width: 24px; height: 24px; color: var(--cyan-400); }
.security-card h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.security-card p { color: rgba(255,255,255,.6); font-size: 14px; margin: 0; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.industry-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.industry-card:hover img { transform: scale(1.06); }
.industry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,15,.92) 0%, rgba(5,7,15,.35) 55%, rgba(5,7,15,0) 100%); }
.industry-card-body { position: relative; z-index: 1; padding: 24px; color: #fff; }
.industry-card-body .ic-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--cyan-400); margin-bottom: 6px; display: block; }
.industry-card-body h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.industry-card-body p { color: rgba(255,255,255,.75); font-size: 13.5px; margin-bottom: 10px; }
.industry-card-body a { font-size: 13.5px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; color: #fff; }

/* =========================================================
   INDUSTRY DETAIL BLOCKS (Industries page)
   ========================================================= */
.industry-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--border-soft); }
.industry-block:last-child { border-bottom: none; }
.industry-block.reverse .industry-block-media { order: 2; }
.industry-block-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.industry-block-media img { width: 100%; height: 100%; object-fit: cover; }
.industry-block h2 { font-size: 28px; margin-bottom: 14px; }
.industry-block p.lead { font-size: 17px; color: var(--ink-600); margin-bottom: 20px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-row span { background: var(--surface-50); border: 1px solid var(--border-soft); padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink-700); }

/* =========================================================
   SOCIAL PROOF
   ========================================================= */
.proof-strip { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 32px 0; opacity: .6; }
.proof-strip .logo-placeholder { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink-500); letter-spacing: -.02em; }
.testimonial-card { background: var(--surface-50); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border-soft); }
.testimonial-card p.quote { font-size: 18px; font-family: var(--font-display); font-weight: 600; color: var(--ink-900); margin-bottom: 18px; }
.testimonial-card .attribution { font-size: 13.5px; color: var(--ink-500); font-weight: 700; }
.placeholder-note { font-size: 12.5px; color: var(--ink-500); font-style: italic; margin-top: 10px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.faq-chevron { transition: transform .2s ease; color: var(--ink-500); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 22px 20px; color: var(--ink-600); margin: 0; font-size: 15px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta-panel {
	position: relative; overflow: hidden; text-align: center; border-radius: var(--radius-xl);
	background: var(--gradient-dark); padding: 72px 40px; color: #fff;
}
.final-cta-glow { position: absolute; inset: -30% -10% auto; height: 300px; background: radial-gradient(50% 50% at 50% 0%, rgba(139,92,246,.4), transparent 70%); }
.final-cta-panel h2 { position: relative; color: #fff; font-size: clamp(26px, 3.2vw, 38px); }
.final-cta-panel p { position: relative; color: rgba(255,255,255,.68); max-width: 520px; margin: 0 auto 28px; font-size: 16.5px; }
.cta-row { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: 14px; margin: 16px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; }
.footer-col-title { color: #fff; font-size: 14px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }

/* =========================================================
   BREADCRUMB + PAGE HERO (interior pages)
   ========================================================= */
.breadcrumb-nav { background: var(--surface-50); border-bottom: 1px solid var(--border-soft); padding: 14px 0; }
.breadcrumb-nav ol { display: flex; gap: 8px; font-size: 13.5px; color: var(--ink-500); }
.breadcrumb-nav li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--ink-500); }
.breadcrumb-nav a:hover { color: var(--blue-600); }

.page-hero { background: var(--gradient-dark); color: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: -20% -10% auto; height: 420px; background: radial-gradient(50% 50% at 30% 0%, rgba(59,130,246,.3), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4vw, 48px); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 18px; margin: 0; }

/* =========================================================
   FORMS
   ========================================================= */
.form-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 7px; color: var(--ink-900); }
.form-field .req { color: var(--danger); }
.form-field input, .form-field select, .form-field textarea {
	width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--border-soft);
	font-family: var(--font-body); font-size: 15px; background: var(--surface-50); transition: border-color .15s, background .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; }
.form-msg { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; display: none; }
.form-msg.is-visible { display: block; }
.form-msg.success { background: rgba(74,222,128,.12); color: #16a34a; }
.form-msg.error { background: rgba(248,113,113,.12); color: #dc2626; }
.form-side-list { display: flex; flex-direction: column; gap: 20px; }
.form-side-item { display: flex; gap: 14px; }
.form-side-item .fi-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; background: var(--gradient-brand-soft); display: flex; align-items: center; justify-content: center; }
.form-side-item .fi-icon svg { width: 20px; height: 20px; color: var(--blue-600); }
.form-side-item h4 { font-size: 15px; margin-bottom: 2px; }
.form-side-item p { font-size: 13.5px; color: var(--ink-600); margin: 0; }

/* =========================================================
   LEGAL / GENERIC CONTENT PAGES
   ========================================================= */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin-top: 2em; font-size: 22px; }
.legal-content p, .legal-content li { color: var(--ink-600); font-size: 15.5px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal-content ul li { margin-bottom: 6px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.float-card { animation: none; }
	html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.method-grid { grid-template-columns: repeat(2, 1fr); }
	.security-grid { grid-template-columns: repeat(2, 1fr); }
	.industry-grid { grid-template-columns: repeat(2, 1fr); }
	.steps-row { grid-template-columns: repeat(2, 1fr); }
	.steps-row::before { display: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
	.industry-block { grid-template-columns: 1fr; padding: 48px 0; }
	.industry-block.reverse .industry-block-media { order: 0; }
	.section { padding: 64px 0; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
	.problem-solution-grid { grid-template-columns: 1fr; }
	.method-grid { grid-template-columns: 1fr; }
	.security-grid { grid-template-columns: 1fr; }
	.industry-grid { grid-template-columns: 1fr; }
	.steps-row { grid-template-columns: 1fr; }
	.kiosk-scene { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.form-card { padding: 26px; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.flow-row { flex-direction: column; }
	.flow-arrow svg { transform: rotate(90deg); }
	.dash-stats { grid-template-columns: 1fr; }
}
