/* 4SYTE marketing landing — aligned with 4syte-landing reference */

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

:root {
  --black: #000000;
  --dark: #040810;
  --dark2: #080f1a;
  --dark3: #0d1826;
  --border: rgba(30, 143, 255, 0.15);
  --blue: #1e8fff;
  --blue2: #00aaff;
  --blue-light: #4fc3ff;
  --green: #00e5a0;
  --red: #ff4c6a;
  --text: #d8e8f5;
  --muted: #6a8ca8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.6;
  min-height: 100%;
}

a { color: var(--blue-light); }

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  background: var(--black);
  border-bottom: 1px solid rgba(30, 143, 255, 0.12);
}

.site-nav .nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 8px;
}

.site-nav .nav-logo img {
  height: 40px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.site-nav .nav-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav .nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.btn-primary-nav {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary-nav:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  padding: 120px 0 88px;
  background:
    radial-gradient(ellipse 90% 60% at 15% -10%, rgba(30, 143, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 20%, rgba(0, 170, 255, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, var(--black) 0%, var(--dark) 42%, #060d1a 100%);
  overflow: visible;
}

.hero-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 143, 255, 0.3), transparent);
  pointer-events: none;
}

.hero-fx .hero-bg-grid {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 143, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 143, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 70% at 35% 40%, black 15%, transparent 78%);
  animation: gridDrift 28s linear infinite;
}

.hero-bg-grid--slow {
  background-size: 96px 96px;
  opacity: 0.45;
  animation-duration: 42s;
  animation-direction: reverse;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

.hero-fx .hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(40px);
}

.hero-glow--primary {
  top: -8%;
  right: -5%;
  width: min(680px, 55vw);
  height: 520px;
  background: radial-gradient(circle, rgba(30, 143, 255, 0.16) 0%, transparent 68%);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--secondary {
  bottom: 10%;
  left: -8%;
  width: min(480px, 40vw);
  height: 360px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.07) 0%, transparent 70%);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-fx .hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}



.hero-copy {
  position: relative;
  padding-top: 32px;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 .headline-l1,
.hero h1 .headline-l2 {
  display: block;
}

.hero h1 .headline-l2 {
  white-space: nowrap;
}

.hero h1 .headline-accent {
  background: linear-gradient(90deg, var(--blue2), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: rgba(216, 232, 245, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.hero-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0;
}

.hero-pillars li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

.hero-pillars li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(30, 143, 255, 0.6);
}

.hero-signin {
  font-size: 13px;
  color: var(--muted);
}

.hero-signin a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.hero-signin a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Hero aside: dashboard preview + lead form */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-preview {
  --hp-bg: #0f0f0f;
  --hp-surface: #1a1a1a;
  --hp-border: #2a2a2a;
  --hp-text: #f0f0f0;
  --hp-muted: #888;
  --hp-red: #e8453c;
  --hp-green: #22c55e;
  --hp-blue: #3b82f6;
  --hp-amber: #f59e0b;
}

.hp-window {
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.hp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--hp-surface);
  border-bottom: 1px solid var(--hp-border);
}

.hp-logo { display: flex; align-items: center; gap: 10px; }
.hp-logo img { display: block; border-radius: 4px; }

.hp-venue {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-text);
  line-height: 1.2;
}

.hp-venue-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--hp-muted);
}

.hp-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--hp-green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 9px;
  border-radius: 20px;
}

.hp-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hp-green);
  animation: pulse 1.5s infinite;
}

.hp-site-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 14px;
  background: var(--hp-surface);
  border-bottom: 1px solid var(--hp-border);
}

.hp-site-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin-right: 2px;
}

.hp-store {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--hp-muted);
  padding: 4px 10px;
  border-radius: 6px;
}

.hp-store.active { color: var(--hp-red); }
.hp-site-spacer { flex: 1; min-width: 8px; }

.hp-action {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--hp-text);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--hp-border);
  background: #262626;
  white-space: nowrap;
}

.hp-action.primary {
  background: var(--hp-red);
  border-color: var(--hp-red);
  color: #fff;
}

.hp-tabs {
  display: flex;
  gap: 0;
  padding: 0 14px;
  border-bottom: 2px solid var(--hp-border);
  background: var(--hp-bg);
  overflow-x: auto;
  scrollbar-width: none;
}

.hp-tabs::-webkit-scrollbar { display: none; }

.hp-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--hp-muted);
  padding: 8px 14px;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.hp-tab.active {
  color: var(--hp-red);
  border-bottom-color: var(--hp-red);
}

.hp-hero-card {
  margin: 12px 14px 10px;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid var(--hp-border);
}

.hp-hero-card.ahead {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14) 0%, rgba(15, 15, 15, 1) 55%);
  border-color: rgba(34, 197, 94, 0.4);
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.hp-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-green);
  margin-bottom: 2px;
}

.hp-variance {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-green);
  line-height: 1.05;
  margin-bottom: 4px;
}

.hp-var-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--hp-muted);
  line-height: 1.35;
  margin-bottom: 6px;
}

.hp-target-lbl {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hp-muted);
  margin-bottom: 2px;
}

.hp-target-val {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--hp-text);
}

.hp-target-val .muted { color: var(--hp-muted); font-weight: 400; }

.hp-hero-right {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 10px;
}

.hp-rec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-red);
  margin-bottom: 6px;
}

.hp-hero-rec {
  background: #262626;
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.hp-labour-pct {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-green);
  line-height: 1;
}

.hp-labour-diff {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--hp-muted);
  margin-top: 4px;
}

.hp-dinner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 14px 10px;
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
}

.hp-dinner-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(59, 130, 246, 0.95);
}

.hp-dinner-meta {
  margin-left: auto;
  font-size: 9px;
  color: var(--hp-muted);
}

.hp-pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 8px;
}

.hp-pulse-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-muted);
  flex-shrink: 0;
}

.hp-pulse-line {
  flex: 1;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 24' preserveAspectRatio='none'%3E%3Cpolyline points='0,12 90,3 100,21 110,3 120,18 252,12 340,12' fill='none' stroke='rgba(34,197,94,0.55)' stroke-width='1.5'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hp-big3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px 14px;
}

.hp-big3-card {
  border-radius: 10px;
  padding: 8px 9px 6px;
  border: 1px solid var(--hp-border);
  min-height: 100px;
  display: flex;
  flex-direction: column;
}

.hp-big3-card.sales {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.12) 0%, rgba(26, 26, 26, 0.97) 65%);
  border-color: rgba(34, 197, 94, 0.3);
}

.hp-big3-card.labour {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.12) 0%, rgba(26, 26, 26, 0.97) 65%);
  border-color: rgba(245, 158, 11, 0.3);
}

.hp-big3-card.cogs {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.12) 0%, rgba(26, 26, 26, 0.97) 65%);
  border-color: rgba(59, 130, 246, 0.35);
}

.hp-big3-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.hp-big3-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-big3-card.sales .hp-big3-title { color: var(--hp-green); }
.hp-big3-card.labour .hp-big3-title { color: var(--hp-amber); }
.hp-big3-card.cogs .hp-big3-title { color: var(--hp-blue); }

.hp-big3-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1;
  margin-bottom: 3px;
}

.hp-big3-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--hp-muted);
  margin-bottom: 4px;
}

.hp-big3-sub.pos { color: var(--hp-green); }
.hp-big3-sub.warn { color: var(--hp-amber); }

.hp-big3-detail-lbl {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hp-muted);
  margin-bottom: 2px;
}

.hp-big3-mono {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--hp-text);
}

.hp-big3-mono .muted { color: var(--hp-muted); font-weight: 400; }

.hp-big3-live {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--hp-muted);
  margin-bottom: 3px;
}

.hp-live-dot-sm {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hp-green);
  vertical-align: middle;
  animation: pulse 1.5s infinite;
}

.hp-big3-roster.pos { font-size: 9px; color: var(--hp-green); margin-bottom: 4px; }

.hp-gauge {
  height: 6px;
  background: #262626;
  border-radius: 4px;
  overflow: hidden;
  margin: 4px 0;
}

.hp-gauge-fill { display: block; height: 100%; background: var(--hp-green); border-radius: 4px; }
.hp-gauge-fill.warn { background: var(--hp-amber); }

.hp-big3-invoices {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--hp-muted);
  margin-top: auto;
}

.hp-sparkline {
  margin: auto -9px -6px;
  height: 36px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.hp-sparkline--green {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 52'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%2322c55e' stop-opacity='0.35'/%3E%3Cstop offset='100%25' stop-color='%2322c55e' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon fill='url(%23g)' points='0,40 50,32 100,28 150,35 200,18 250,12 300,8 300,52 0,52'/%3E%3Cpolyline fill='none' stroke='%2322c55e' stroke-width='1.5' points='0,40 50,32 100,28 150,35 200,18 250,12 300,8'/%3E%3C/svg%3E");
}

.hp-sparkline--amber {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 52'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23f59e0b' stop-opacity='0.35'/%3E%3Cstop offset='100%25' stop-color='%23f59e0b' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='0,38 60,34 120,30 180,32 240,26 300,22 300,52 0,52'/%3E%3Cpolyline fill='none' stroke='%23f59e0b' stroke-width='1.5' points='0,38 60,34 120,30 180,32 240,26 300,22'/%3E%3C/svg%3E");
}

/* LEAD FORM — matches dashboard shell */
.lead-card {
  position: relative;
  z-index: 2;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.lead-card h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #f0f0f0;
  margin-bottom: 6px;
}

.lead-card .lead-sub {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-bottom: 0.35rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #f0f0f0;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #666; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.lead-form textarea {
  min-height: 68px;
  resize: vertical;
}


.btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.15s, transform 0.1s;
}

.btn-cta span::after { content: ' →'; opacity: 0.9; }

.btn-cta:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-cta:active:not(:disabled) { transform: scale(0.99); }

.btn-cta:disabled { opacity: 0.55; cursor: wait; }

.form-msg {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}

.form-msg.show { display: block; }

.form-msg.ok {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-msg.err {
  background: rgba(232, 69, 60, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(232, 69, 60, 0.25);
}

/* HERO DASHBOARD PREVIEW (simplified) */
.hero-visual {
  position: relative;
  z-index: 1;
  padding-top: 8px;
  display: none;
}

@media (min-width: 960px) {
  .hero-visual { display: block; }
}

.dash-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 143, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dash-chrome {
  background: #0a0f1a;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(30, 143, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}

.dd-r { background: #ff5f57; }
.dd-y { background: #febc2e; }
.dd-g { background: #28c840; }

.dash-chrome-title {
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  text-align: center;
}

.live-badge {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.dash-body-preview {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #06101d;
}

.dash-stat {
  background: #0d1826;
  border: 1px solid rgba(30, 143, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
}

.dash-stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.dash-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.dash-stat-delta { font-size: 10px; color: var(--green); margin-top: 2px; }

/* LOGO STRIP */
.logo-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ls-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-weight: 600;
}

.ls-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.ls-item {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.ls-item.deputy { color: rgba(232, 82, 58, 0.55); }
.ls-item.redcat { color: rgba(79, 195, 255, 0.55); }

.ls-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

/* SECTIONS */
.sec {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 14px;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue2);
  opacity: 0.5;
}

.sec-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.sec-h .blue { color: var(--blue2); }

.sec-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.sec-center { text-align: center; }
.sec-center .sec-p { margin-left: auto; margin-right: auto; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: #0a1220;
  border: 1px solid rgba(30, 143, 255, 0.15);
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color 0.25s;
}

.feature-card:hover { border-color: rgba(30, 143, 255, 0.35); }

.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Integrations */
.int-section {
  background: var(--dark2);
  border-top: 1px solid rgba(30, 143, 255, 0.1);
  padding: 72px 24px;
  text-align: center;
}

.int-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.int-card {
  background: #060d18;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 130px;
  transition: border-color 0.3s, transform 0.2s;
}

.int-card:hover {
  border-color: rgba(30, 143, 255, 0.35);
  transform: translateY(-3px);
}

.int-card img {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
  object-fit: contain;
}

.int-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.int-cat {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.site-footer .footer-logo img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* Stat band */
.stat-band {
  background: var(--black);
  border-top: 1px solid rgba(30, 143, 255, 0.1);
  border-bottom: 1px solid rgba(30, 143, 255, 0.1);
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span { color: var(--blue2); }

.stat-label { font-size: 13px; color: var(--muted); }

/* Feature rows (reference layout) */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child { border-bottom: none; }

.fi-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(30, 143, 255, 0.08);
  border: 1px solid rgba(30, 143, 255, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.fi-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.fi-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.feature-panel {
  background: #0a1220;
  border: 1px solid rgba(30, 143, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.fp-header {
  background: #060d18;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(30, 143, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.fp-body { padding: 18px; }

.fp-metric-row { display: flex; gap: 10px; margin-bottom: 12px; }

.fp-metric {
  flex: 1;
  background: #0d1826;
  border: 1px solid rgba(30, 143, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
}

.fp-metric-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.fp-metric-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.fp-metric-delta { font-size: 10px; color: var(--green); margin-top: 2px; font-weight: 600; }

.fp-rec {
  background: rgba(30, 143, 255, 0.06);
  border: 1px solid rgba(30, 143, 255, 0.15);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}

.fp-rec strong { color: var(--blue-light); }

.features-bg {
  background: radial-gradient(ellipse 60% 50% at 50% 10%, rgba(30, 143, 255, 0.05) 0%, transparent 70%);
}

/* Responsive */
@media (max-width: 959px) {
  .site-nav .nav-links { display: none; }

  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .hero-copy { padding-top: 8px; }

  .hero h1 { max-width: none; }

  .hero-aside { max-width: 520px; margin: 0 auto; width: 100%; }

  .hp-big3 { grid-template-columns: 1fr; }

  .hp-big3-val { font-size: 15px; }

  .hp-hero-grid { grid-template-columns: 1fr; }

  .hp-hero-right {
    border-left: none;
    padding-left: 0;
    margin-top: 8px;
  }


  .stat-band { grid-template-columns: 1fr 1fr; gap: 24px; }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding-bottom: 16px; }

  .features-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-nav { padding: 0 16px; }

  .hero-inner { padding: 0 16px; }

  .nav-actions .btn-ghost { display: none; }

  .sec { padding: 56px 16px; }

  .stat-band { grid-template-columns: 1fr; }
}


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #1a2a3d; border-radius: 3px; }
