:root {
  /* Beraksi Electric Tech Color Palette */
  --primary: #1E46F0;
  --primary-dark: #1233BA;
  --primary-light: #3D64FF;
  --primary-soft: #EDF2FE;
  --primary-glow: rgba(30, 70, 240, 0.25);
  
  --accent-cyan: #00B0F0;
  --accent-purple: #5F01D2;
  --accent-lime: #00E887;
  --neon-lime: #D4FF00;
  --accent-amber: #FFC000;
  
  --bg: #F4F6FB;
  --surface: #FFFFFF;
  --surface-alt: #EDF1F9;
  
  --dark-bg: #080A14;
  --dark-surface: #0D1021;
  --dark-card: #13172E;
  --dark-border: #1E2340;
  
  --ink: #0B0E1B;
  --ink-secondary: #2D334A;
  --muted: #68718E;
  --line: #E2E6F2;
  --line-hover: #BCC7E6;
  
  --font-head: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", "Sora", system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 64, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 23, 64, 0.06);
  --shadow-lg: 0 16px 45px rgba(15, 23, 64, 0.09);
  --shadow-primary: 0 8px 28px rgba(30, 70, 240, 0.32);
  
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.shell, .container {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}
.muted { color: var(--muted); }
.center { text-align: center; }

/* ── Buttons (Beraksi High-Impact) ── */
.btn {
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: linear-gradient(135deg, #1E46F0 0%, #1233BA 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2D54FE 0%, #1E46F0 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 32px rgba(30, 70, 240, 0.45);
  color: #ffffff;
}
.btn-lime {
  background: var(--neon-lime);
  border: 1px solid #C4EB00;
  color: #080A14;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 255, 0, 0.35);
}
.btn-lime:hover {
  background: #E2FF4D;
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.5);
  color: #080A14;
}
.btn-ghost {
  background: #ffffff;
  border: 1.5px solid var(--line);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary-soft);
  border-color: #CBD6F7;
  color: var(--primary-dark);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 8px;
}
.btn-danger {
  background: #fff;
  border-color: #f3c0c0;
  color: #c0392b;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── Top Announcement Strip ── */
.top-strip {
  background: var(--dark-bg);
  color: #EDF2FE;
  font-size: 13px;
  border-bottom: 1px solid var(--dark-border);
  font-family: var(--font-head);
}
.strip-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.strip-inner b {
  background: var(--neon-lime);
  color: #080A14;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 6px;
  font-weight: 800;
  font-size: 11px;
}
.strip-link {
  background: none;
  border: 0;
  color: var(--accent-cyan);
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
  font-weight: 700;
}
.strip-link:hover {
  color: #ffffff;
}

/* ── Site Header & Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 246, 251, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 230, 242, 0.85);
}
.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}
.dot {
  color: var(--primary);
  display: inline;
  margin: 0 -0.08em;
  padding: 0;
  letter-spacing: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
}
.nav-item {
  background: none;
  border: 0;
  color: var(--ink-secondary);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 9px;
  transition: all 0.18s ease;
}
.nav-item:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-item.active {
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-menu {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.avatar-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), #e0e8ff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}
.mobile-menu {
  display: none;
  background: none;
  border: 0;
  font-size: 25px;
  cursor: pointer;
  color: var(--ink);
}
.mobile-drawer {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px 26px;
}
.mob-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mob-actions {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

/* ── Hero & Search Architecture ── */
.search-box {
  max-width: 640px;
}
.search-main {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 6px 8px 6px 18px;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}
.search-main:focus-within {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(30, 70, 240, 0.16), 0 0 0 3px rgba(30, 70, 240, 0.12);
}
.search-icon {
  color: var(--muted);
  display: grid;
  place-items: center;
  margin-right: 12px;
}
.search-main input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
}
.search-submit {
  background: linear-gradient(135deg, #1E46F0 0%, #1233BA 100%);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(30, 70, 240, 0.28);
}
.search-submit:hover {
  background: linear-gradient(135deg, #2D54FE 0%, #1E46F0 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 70, 240, 0.4);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-stack {
  display: flex;
  align-items: center;
}
.mini-face-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -9px;
  box-shadow: 0 2px 8px rgba(15, 23, 64, 0.12);
}
.mini-face-img:first-child {
  margin-left: 0;
}

/* ── Badges, Pills & Indicators ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  background: var(--surface);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-secondary);
  letter-spacing: 0.02em;
}
.badge-green, .badge-primary {
  background: var(--primary-soft);
  border-color: #D3E0FC;
  color: var(--primary);
}
.badge-lime {
  background: #F4FFCE;
  border-color: #E2ED9A;
  color: #4D6100;
}
.verified {
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9.5px;
  font-weight: 800;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.status-dot, .live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  display: inline-block;
}
.live-dot {
  box-shadow: 0 0 0 3px rgba(0, 232, 135, 0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(0, 232, 135, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(0, 232, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 232, 135, 0); }
}

/* ── Layout & Typography Sections ── */
.section { padding: 84px 0; }
.section-sm { padding: 54px 0; }
.band { background: #fff; border-block: 1px solid var(--line); }
.kicker {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}
.h2 {
  font-size: 40px;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 8px 0 0;
}
.row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.row-head a.view-all-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--primary);
}
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Bento Cards & Profiles ── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-lg);
}
.card-pad { padding: 26px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: #B9C7F2;
  background: #FAFBFD;
  box-shadow: var(--shadow-lg);
}
.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.bento-top .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid #D6E0FB;
}
.bento-arrow {
  color: var(--muted);
  font-size: 16px;
  transition: 0.18s;
  font-weight: 700;
}
.bento-card:hover .bento-arrow {
  color: var(--primary);
  transform: translateX(4px);
}
.bento-title {
  font: 800 16.5px/1.25 var(--font-head);
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}
.bento-blurb {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── Filters ── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.18s ease;
  cursor: pointer;
}
.filter-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: #D3E0FC;
}
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(30, 70, 240, 0.32);
}

/* ── Industry Cards ── */
.modern-industry-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f6f8fd 100%);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.modern-industry-card:hover {
  transform: translateY(-4px);
  border-color: #B9C7F2;
  box-shadow: var(--shadow-lg);
}
.ind-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.industry-chip {
  background: var(--dark-bg);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.ind-arrow {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
}
.ind-heading {
  font: 800 22px/1.3 var(--font-head);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 10px 0 16px;
  max-width: 480px;
}
.ind-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ind-tag {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--ink-secondary);
  font-weight: 600;
}

/* ── How It Works Steps ── */
.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: 0.22s;
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: #B9C7F2;
  box-shadow: var(--shadow-lg);
}
.step-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  font: 800 13px var(--font-head);
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 8px;
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid #D6E0FB;
}
.step-title {
  font: 800 20px var(--font-head);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── Forms & Input Fields ── */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}
.input, .textarea, .select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  font-size: 14.5px;
  outline: none;
  transition: 0.15s;
  font-family: var(--font-body);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 70, 240, 0.12);
}
.textarea { min-height: 120px; resize: vertical; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

/* ── App Shell / Workspace ── */
.app-shell { display: grid; grid-template-columns: 256px 1fr; min-height: 100vh; }
.app-side {
  background: var(--dark-bg);
  color: #CCD3E8;
  padding: 24px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  border-right: 1px solid var(--dark-border);
}
.app-side .brand { color: #fff; font-size: 18px; margin-bottom: 20px; }
.app-side .side-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #727D9C;
  margin: 20px 8px 8px;
  font-weight: 800;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #CCD3E8;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 3px;
  transition: 0.15s;
}
.side-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.side-link.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 70, 240, 0.35);
}
.app-topbar {
  height: 68px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.app-topbar h1 { font-size: 20px; }
.app-body { padding: 28px 30px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.stat .v { font: 800 28px var(--font-head); letter-spacing: -0.03em; color: var(--ink); }
.stat .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.stat .delta { font-size: 11px; font-weight: 800; color: var(--primary); }

/* ── Footer (Deep Obsidian Tech) ── */
footer {
  background: radial-gradient(circle at 50% 0%, #11162C 0%, #080A14 70%);
  color: #CCD3E8;
  padding: 70px 0 36px;
  margin-top: 60px;
  border-top: 1px solid #1E2340;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
}
.footer-brand .brand,
.brand.brand-light {
  color: #ffffff;
}
.footer-brand p {
  color: #8C96B5;
  font-size: 13.5px;
  max-width: 260px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.footer-brand > span {
  display: block;
  margin-top: 24px;
  color: #8C96B5;
  font-size: 12px;
}
footer h4 {
  font: 800 12.5px var(--font-head);
  margin: 8px 0 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer a:not(.brand) {
  display: block;
  font-size: 13.5px;
  color: #8C96B5;
  margin: 10px 0;
  transition: 0.15s;
}
footer a:hover {
  color: var(--accent-cyan);
}

/* ── Global Enquiry Modal ── */
.enquiry-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 20, 0.82);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.enquiry-modal-backdrop.active, .enquiry-modal-backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  display: grid;
}
.enquiry-modal-dialog {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: min(520px, 100%);
  padding: 36px;
  position: relative;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  animation: modalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
  from { transform: scale(0.95) translateY(12px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.enquiry-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--surface-alt);
  border: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-secondary);
  transition: 0.15s;
}
.enquiry-modal-close:hover {
  background: #E2E8F4;
  color: var(--ink);
}

/* ── Conversion & Pilot Widgets ── */
.floating-pilot-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 55;
  background: var(--dark-bg);
  color: #ffffff;
  border: 1px solid var(--dark-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--font-head);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-pilot-pill:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 16px 42px rgba(30, 70, 240, 0.4);
}
.floating-pilot-pill b {
  color: var(--neon-lime);
}
.floating-pilot-pill .pill-arrow {
  color: var(--accent-cyan);
  font-weight: 800;
  transition: transform 0.2s;
}
.floating-pilot-pill:hover .pill-arrow {
  transform: translateX(3px);
}

/* ── Before & After Sample Viewer ── */
.before-after-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.before-after-head {
  background: var(--surface-alt);
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.before-pane {
  background: #FAFAFD;
  border-right: 1px solid var(--line);
  padding: 24px;
}
.after-pane {
  background: #FFFFFF;
  padding: 24px;
}

/* ── Mobile Sticky Conversion Bar ── */
.mobile-sticky-action-bar {
  display: none;
}

/* ── Hero & Matcher Grid Layouts ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font: 800 52px/1.05 var(--font-head);
  letter-spacing: -2.5px;
  margin: 16px 0 18px;
  color: var(--ink);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 580px;
  margin: 0;
}
.matcher-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

/* ── Prevent ANY horizontal page scrolling globally ── */
html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
  width: 100%;
}

/* ── Responsive Viewports ── */
@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu { display: block; }
  .nav-actions .ghost-btn { display: none; }
  .cols-4, .bento-grid, .agent-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-3, .how-grid, .category-showcase-grid { grid-template-columns: 1fr 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .before-pane { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-title {
    font-size: 34px !important;
    letter-spacing: -1.2px !important;
    line-height: 1.12 !important;
  }
  .hero-desc {
    font-size: 15px !important;
  }
  .matcher-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .shell, .container { width: min(100% - 24px, var(--shell)); }
  .top-strip { display: none; }
  .nav-wrap { height: 66px; }
  .brand { font-size: 20px; }
  .h2 { font-size: 28px; }
  .section { padding: 44px 0; }
  .cols-2, .cols-3, .cols-4, .bento-grid, .how-grid, .stat-grid, .agent-showcase-grid, .category-showcase-grid, .industry-showcase-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-pilot-pill { bottom: 16px; right: 16px; padding: 8px 14px; font-size: 11px; }

  .cta-search-wrap {
    flex-direction: column !important;
  }
  .cta-search-wrap button {
    width: 100% !important;
  }
  .quiz-grid, .quiz-cta-grid {
    grid-template-columns: 1fr !important;
  }

  .mobile-sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 65;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    gap: 10px;
  }
  .mobile-sticky-action-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ── Admin operator console (extends existing tokens, no new palette) ── */
.app-shell .card:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.app-menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.data th {
  text-align: left;
  padding: 12px 14px;
  background: var(--surface-alt);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}
table.data td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f3f0;
  vertical-align: top;
}
table.data tr:last-child td { border-bottom: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  background: var(--surface-alt);
  color: var(--ink-secondary);
  border: 1px solid var(--line);
  text-transform: uppercase;
}
.pill-live { background: #e6f4ea; color: #137333; border-color: #ceead6; }
.pill-warn { background: #fef7e0; color: #b06000; border-color: #feefc3; }
.pill-err { background: #fce8e6; color: #c5221f; border-color: #fad2cf; }
.pill-info { background: var(--primary-soft); color: var(--primary-dark); border-color: #d2e3fc; }
.admin-flash {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  margin: 0 0 16px;
}
.admin-flash-ok { background: #e6f4ea; color: #137333; border: 1px solid #ceead6; }
.admin-flash-err { background: #fce8e6; color: #c5221f; border: 1px solid #fad2cf; }
.admin-banner {
  background: var(--dark-bg);
  color: #e8f0ff;
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.admin-banner .kicker {
  color: var(--accent-lime);
  margin: 0;
}
.admin-note {
  background: var(--primary-soft);
  border: 1px solid #d2e3fc;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  margin: 0 0 18px;
}
.empty { text-align: center; color: var(--muted); padding: 28px 12px; }
.btn-on-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.btn-on-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
@media (max-width: 1050px) {
  .app-menu-btn { display: inline-flex !important; }
  .app-side.is-open {
    display: block;
    position: fixed;
    z-index: 40;
    width: 256px;
    height: 100vh;
    top: 0;
    left: 0;
  }
}

