@charset "UTF-8";
:root {
  --asphalt-950:#0A0A0D;
  --asphalt-900:#131316;
  --asphalt-800:#18181C;
  --asphalt-700:#1F1F24;
  --steel-600:#2A2A30;
  --fog-300:#8A8791;
  --fog-200:#C7C4CC;
  --white:#F5F4F7;
  --pink-500:#FF5D8F;
  --pink-400:#FF8FAE;
  --coral-500:#FF7A59;
  --violet-500:#8B5CF6;
  --blue-500:#5B8DFF;
  --brand-gradient:linear-gradient(90deg,#FF7A59,#FF5D8F,#8B5CF6,#5B8DFF);
  /* High-level semantic aliases (do not change values to preserve layout) */
  --primary: var(--coral-500);
  --primary-600: var(--pink-500);
  --primary-rgb: 255,122,89;
  --secondary: var(--asphalt-900);
  --secondary-rgb: 19,19,22;
  --cream-50:#F3F1EC;
  --ink-900:#1D1A15;
  --ink-700:#5B564A;
  --radius:10px;
  --radius-12:12px;
  --radius-14:14px;
  --radius-sm:6px;
  --radius-8:8px;
  --radius-sm:6px;
  --space-8:8px;
  --space-4:4px;
  --space-8:8px;
  --space-9:9px;
  --space-10:10px;
  --space-12:12px;
  --space-13:13px;
  --space-14:14px;
  --space-16:16px;
  --space-18:18px;
  --space-20:20px;
  --space-22:22px;
  --space-26:26px;
  --space-28:28px;
  --space-32:32px;
  --space-36:36px;
  --space-44:44px;
  --space-48:48px;
  --space-56:56px;
  --space-64:64px;
  --space-72:72px;
  --space-88:88px;
  --space-96:96px;
  --space-34:34px;
  --space-60:60px;
  --space-24:24px;
  --space-18:18px;
  --space-20:20px;
  --space-22:22px;
  --space-26:26px;
  --space-28:28px;
  --space-32:32px;
  --space-36:36px;
  --space-44:44px;
  --space-48:48px;
  --space-56:56px;
  --space-64:64px;
  --space-72:72px;
  --space-88:88px;
  --space-96:96px;
  --maxw:1180px;
  --font-display:'Manrope',sans-serif;
  --font-body:'Manrope',sans-serif;
  --font-mono:'IBM Plex Mono',monospace;
}

/* Google Fonts are loaded in each HTML document for static hosting. */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile without breaking position:sticky (clip, not hidden) */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

body {
  margin: 0;
  background: var(--asphalt-950);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-400);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--pink-400);
  display: inline-block;
}

.section {
  padding: var(--space-96) 0;
}
.section.tight {
  padding: var(--space-64) 0;
}
.section.light {
  background: var(--cream-50);
  color: var(--ink-900);
}
.section.mid {
  background: var(--asphalt-900);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}
.section-head p {
  color: var(--fog-200);
  font-size: 17px;
  margin-top: 16px;
}
.section.light .section-head p {
  color: var(--ink-700);
}

/* Inner page templates */
.page-hero {
  padding: var(--space-72) 0 var(--space-56);
  border-bottom: 1px solid var(--steel-600);
  position: relative;
  overflow: hidden;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  max-width: 720px;
}
.page-hero .sub {
  font-size: 17px;
  color: var(--fog-200);
  max-width: 600px;
  margin-top: 18px;
}

/* .benefit-grid / .feat-grid are now Bootstrap .row (see .col wrappers in markup) */
/* Feature card (an <a>, so it needs explicit block layout as a Bootstrap col child) */
.feat-card {
  display: flex;
  flex-direction: column;
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: var(--space-26);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.feat-card:hover {
  border-color: var(--pink-500);
  transform: translateY(-2px);
}
.feat-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--fog-200);
}

.feat-icon {
  width: var(--space-34);
  height: var(--space-34);
  border-radius: var(--radius-8);
  background: var(--asphalt-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-16);
  color: var(--coral-500);
  font-family: var(--font-mono);
  font-weight: 500;
}

.benefit-card {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: var(--space-26);
}
.benefit-card h2 {
  font-size: 16.5px;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--fog-200);
}

.steps {
  counter-reset: step;
  border-left: 2px solid var(--steel-600);
  padding-left: 28px;
}

.step {
  position: relative;
  padding-bottom: 32px;
}
.step:last-child {
  padding-bottom: 0;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -40px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--asphalt-800);
  border: 2px solid var(--pink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink-400);
}
.step h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--fog-200);
}

.text-block {
  max-width: 720px;
}
.text-block p {
  color: var(--fog-200);
  font-size: 15.5px;
  margin-bottom: 16px;
}
.text-block p:last-child {
  margin-bottom: 0;
}

.placeholder-note {
  border: 1px dashed var(--steel-600);
  border-radius: var(--radius);
  padding: var(--space-18) var(--space-20);
  font-size: 13.5px;
  color: var(--fog-300);
  font-family: var(--font-mono);
  margin-top: var(--space-24);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-list li {
  display: flex;
  gap: var(--space-14);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--steel-600);
  font-size: 15px;
  color: var(--fog-200);
  align-items: flex-start;
}
.pricing-list li::before {
  content: "—";
  color: var(--pink-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* Background art: subtle dashboard wash */
.bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 18% 12%, rgba(255, 122, 89, 0.18), transparent 28%), radial-gradient(circle at 78% 18%, rgba(91, 141, 255, 0.16), transparent 30%), radial-gradient(circle at 50% 88%, rgba(255, 93, 143, 0.12), transparent 32%);
}

.orb {
  display: none;
}

.rel {
  position: relative;
  z-index: 1;
}

.grad-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-bar {
  height: 3px;
  width: var(--space-44);
  border-radius: 2px;
  background: var(--brand-gradient);
  display: inline-block;
  margin-bottom: var(--space-16);
}

/* .proof-band is now a Bootstrap .row of tiles */
.proof-band {
  margin-top: var(--space-48);
}

.proof-item {
  background: var(--asphalt-900);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: var(--space-22);
  height: 100%;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.proof-label {
  font-size: 13px;
  color: var(--fog-300);
  margin-top: 4px;
}

/* .page-split is now a Bootstrap .row */
.signal-panel {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: var(--space-28);
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-18);
  border-bottom: 1px solid var(--steel-600);
  padding: var(--space-13) 0;
  color: var(--fog-200);
  font-size: 14px;
}
.signal-row:last-child {
  border-bottom: none;
}
.signal-row strong {
  color: var(--white);
}

/* Problem statement */
.problem-block {
  max-width: 680px;
}
.problem-block h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-top: 14px;
}
.problem-block p {
  color: var(--fog-200);
  font-size: 16.5px;
  margin-top: 18px;
}
.problem-block {
  /* .link-out is now a theme button; keep only its spacing here */
}
.problem-block .link-out {
  margin-top: 20px;
}

/* Alternating feature rows */
/* .alt-row is now a Bootstrap .row (reverse via .flex-lg-row-reverse) */
.alt-row {
  padding: var(--space-56) 0;
  border-bottom: 1px solid var(--steel-600);
}
.alt-row:last-child {
  border-bottom: none;
}

.alt-copy .eyebrow {
  margin-bottom: 12px;
}
.alt-copy h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.alt-copy p {
  color: var(--fog-200);
  font-size: 15.5px;
  margin-bottom: 8px;
}
.alt-copy {
  /* .link-out is now a theme button; keep only its spacing here */
}
.alt-copy .link-out {
  margin-top: 14px;
}

.alt-visual {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-14);
  padding: var(--space-32);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-visual .big-mono {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--coral-500);
}
.alt-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Process steps (Bootstrap .row; connected stepper track at lg) */
.process-grid {
  position: relative;
  /* continuous gradient track running through the badges */
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0.55;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.process-step h3 {
  font-size: 16.5px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--fog-200);
  max-width: 240px;
  margin: 0 auto;
}
.process-step:hover .process-num {
  transform: translateY(-3px);
  box-shadow: 0 0 0 8px var(--asphalt-950), 0 12px 26px rgba(255, 93, 143, 0.28);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--pink-400);
  width: 56px;
  height: 56px;
  border: 2px solid var(--pink-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-16);
  background: var(--asphalt-950);
  /* solid ring masks the track so badges sit cleanly on the line */
  box-shadow: 0 0 0 8px var(--asphalt-950);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Comparison section */
/* .compare-grid is now a Bootstrap .row */
.compare-col {
  background: var(--asphalt-900);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-14);
  padding: var(--space-32) var(--space-36);
}
.compare-col h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--fog-200);
}
.compare-col {
  /* highlighted winning column: subtle accent border + Recommended chip */
}
.compare-col.win {
  background: var(--asphalt-800);
  border-color: rgba(255, 93, 143, 0.45);
  box-shadow: var(--shadow);
}
.compare-col.win h3 {
  color: var(--pink-400);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col.win h3::after {
  content: "Recommended";
  margin-left: auto;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 10px;
  font-weight: 700;
  color: var(--pink-400);
  background: rgba(255, 93, 143, 0.14);
  padding: 3px 9px;
  border-radius: 20px;
}
.compare-col {
  /* circular icon badges */
}
.compare-col .compare-item::before {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.compare-col:not(.win) .compare-item {
  color: var(--fog-300);
}
.compare-col:not(.win) .compare-item::before {
  content: "✕";
  background: rgba(255, 255, 255, 0.06);
  color: var(--fog-300);
}
.compare-col.win .compare-item::before {
  content: "✓";
  background: var(--coral-500);
  color: #fff;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  font-size: 14.5px;
  color: var(--fog-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-item:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 920px) {
  .alt-row {
    padding: 36px 0;
  }
}
/* the stepper track only makes sense in the single-row (lg) layout */
@media (max-width: 991.98px) {
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }
  .cta-block {
    padding: 44px 22px;
  }
  .section {
    padding: 56px 0;
  }
}
:focus-visible {
  outline: 2px solid var(--coral-500);
  outline-offset: 2px;
}

/* Button system: theme-btn (base) + style modifiers + sizes
   Backward-compatible .btn / .btn-primary classes are maintained. */
.theme-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.theme-btn.w-100,
.btn.w-100 {
  width: 100%;
}
.theme-btn:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Primary (brand) */
.primary-btn,
.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  background-size: 160% 100%;
  background-position: 0% 0%;
  box-shadow: 0 8px 24px rgba(20, 33, 46, 0.06);
}
.primary-btn:hover,
.btn-primary:hover {
  background-position: 100% 0%;
}
.primary-btn:focus-visible,
.btn-primary:focus-visible {
  outline: 3px solid rgba(255, 122, 89, 0.12);
  outline-offset: 2px;
}

/* Secondary (dark) */
.secondary-btn,
.btn-secondary {
  background: var(--asphalt-900);
  color: #fff;
}
.secondary-btn:hover,
.btn-secondary:hover {
  background: var(--asphalt-800);
}

/* White / subtle */
.white-btn {
  background: var(--white);
  color: var(--coral-500);
  border: 1px solid var(--fog-200);
}
.white-btn:hover {
  box-shadow: 0 6px 18px rgba(20, 33, 46, 0.04);
}

/* Outline */
.outline-btn {
  background: transparent;
  color: var(--coral-500);
  border: 1px solid var(--coral-500);
}
.outline-btn:hover {
  background: rgba(255, 122, 89, 0.06);
}

/* Ghost — transparent w/ subtle border, for dark backgrounds */
.ghost-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--steel-600);
}
.ghost-btn:hover {
  border-color: var(--fog-300);
}
.section.light .ghost-btn {
  color: var(--ink-900);
  border-color: #D8D4C9;
}

/* Sizes */
.theme-btn-lg {
  padding: 16px 30px;
  font-size: 16px;
  min-width: 250px;
}

.theme-btn-wide {
  min-width: 200px;
}

.theme-btn-sm,
.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

/* Connector graphic (signature element) */
.connector-wrap {
  margin-top: 64px;
  position: relative;
}

.connector-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.node-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: var(--fog-200);
}

.dash-line {
  stroke-dasharray: 6 8;
  stroke: url(#brandGradLine);
  opacity: 0.95;
  animation: dash 22s linear infinite;
}

.node circle:first-child {
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 3.2s ease-in-out infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -280;
  }
}
@keyframes node-pulse {
  0%, 100% {
    opacity: 0.16;
    transform: scale(1);
  }
  50% {
    opacity: 0.28;
    transform: scale(1.25);
  }
}
/* Slick is bundled for future sliders. The homepage connector animation is custom vanilla JS/CSS. */
/* Pagination placeholder for future inventory/listing pages. */
/* =========================================================
   Header — Bootstrap 5 navbar, themed dark
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel-600);
}

.site-nav {
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-12) var(--space-32);
  flex-wrap: wrap;
}

/* Brand */
.navbar-brand.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 0;
  margin: 0;
  margin-right: auto;
}
.navbar-brand.logo .dot {
  width: var(--space-8);
  height: var(--space-8);
  border-radius: 50%;
  background: var(--brand-gradient);
}

/* Hamburger toggler — white icon, visible on dark */
.navbar-toggler {
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-sm);
  padding: 6px 9px;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--coral-500);
  outline-offset: 2px;
}
.navbar-toggler .navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5F4F7' stroke-width='2.5' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

/* Nav links */
.navbar-nav {
  align-items: center;
  gap: 2px;
}

.site-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fog-200);
  padding: var(--space-10) var(--space-14);
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.site-nav .nav-link:hover, .site-nav .nav-link:focus, .site-nav .nav-link.show {
  color: var(--white);
}
.site-nav .nav-link.active {
  color: var(--pink-400);
}

/* Clearer chevron caret (replaces Bootstrap's tiny triangle) */
.site-nav .dropdown-toggle::after {
  content: "";
  border: 0;
  width: 8px;
  height: 8px;
  margin: -3px 0 0 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.75;
}

.site-nav .dropdown-toggle.show::after {
  margin-top: 2px;
  transform: rotate(-135deg);
}

/* Dropdown / mega-menu — dark */
.site-nav .dropdown-menu {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius);
  padding: var(--space-8);
  margin-top: var(--space-8);
  min-width: 240px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.site-nav .dropdown-item {
  color: var(--fog-200);
  font-size: 13.5px;
  padding: var(--space-9) var(--space-12);
  border-radius: var(--radius-sm);
  white-space: normal;
}
.site-nav .dropdown-item:hover, .site-nav .dropdown-item:focus, .site-nav .dropdown-item:active, .site-nav .dropdown-item.active {
  background: var(--asphalt-700);
  color: var(--white);
}

.dropdown-featured {
  margin-top: var(--space-8);
  padding-top: var(--space-12);
  border-top: 1px solid var(--steel-600);
}
.dropdown-featured p {
  font-size: 12.5px;
  color: var(--fog-300);
  padding: 0 var(--space-12) var(--space-10);
  margin: 0;
}
.dropdown-featured .theme-btn {
  width: calc(100% - 24px);
  margin: 0 var(--space-12);
}

.dropdown-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fog-300);
  padding: 10px 12px 4px;
  margin-top: 4px;
  border-top: 1px solid var(--steel-600);
}

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

/* ---- Desktop (≥992px): centered menu + hover-open dropdowns ---- */
@media (min-width: 992px) {
  .navbar-collapse {
    flex-grow: 1;
  }
  .main-menu {
    margin: 0 auto;
  }
  .site-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/* ---- Mobile (<992px): stacked, inline dropdowns ---- */
@media (max-width: 991.98px) {
  .navbar-inner {
    padding: var(--space-12) var(--space-18);
  }
  .navbar-collapse {
    flex-basis: 100%;
    margin-top: var(--space-12);
  }
  .navbar-nav {
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .site-nav .dropdown-toggle {
    justify-content: space-between;
  }
  /* dropdowns flow inline instead of floating over the menu */
  .site-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
    margin: 0;
    padding: 2px 0 8px 12px;
  }
  .dropdown-featured .theme-btn {
    width: auto;
    margin: 6px 0 0;
  }
  .nav-actions {
    width: 100%;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--steel-600);
  }
}
/* Footer */
footer {
  background: var(--asphalt-950);
  border-top: 1px solid var(--steel-600);
  padding: var(--space-64) 0 var(--space-32);
}

/* .foot-grid is now a Bootstrap .row; only spacing remains */
.foot-grid {
  margin-bottom: var(--space-48);
}

.foot-col h2 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fog-300);
  margin-bottom: var(--space-16);
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--fog-200);
  margin-bottom: var(--space-10);
  cursor: pointer;
}
.foot-col a:hover {
  color: var(--white);
}

.foot-bottom {
  border-top: 1px solid var(--steel-600);
  padding-top: var(--space-24);
  display: flex;
  justify-content: space-between;
  color: var(--fog-300);
  font-size: 13px;
  flex-wrap: wrap;
  gap: var(--space-10);
}

/* Footer extras */
.newsletter {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-14);
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  padding: var(--space-10) var(--space-12);
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 13.5px;
}

.social-row {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-18);
}
.social-row a {
  width: var(--space-32);
  height: var(--space-32);
  border: 1px solid var(--steel-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--fog-200);
}
.social-row a:hover {
  border-color: var(--pink-500);
  color: var(--pink-400);
}

.foot-contact {
  font-size: 13.5px;
  color: var(--fog-300);
  margin-top: var(--space-10);
  line-height: 1.8;
}

.page-home {
  /* Hero */
}
.page-home .hero {
  padding: var(--space-88) 0 var(--space-60);
  position: relative;
  overflow: hidden;
}
.page-home .hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.04;
  max-width: 780px;
}
.page-home .hero .sub {
  font-size: 18px;
  color: var(--fog-200);
  max-width: 560px;
  margin-top: var(--space-22);
}
.page-home .hero .eyebrow {
  margin-bottom: var(--space-18);
}
.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
  position: relative;
  z-index: 2;
}
.page-home .hero-ctas {
  display: flex;
  gap: var(--space-14);
  margin-top: var(--space-34);
  flex-wrap: wrap;
}
.page-home {
  /* Section dashboard / insights visuals (Problem + Solution) */
}
.page-home .problem-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.page-home .solution-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 50px rgba(29, 26, 21, 0.22));
}
@media (max-width: 920px) {
  .page-home .problem-visual,
  .page-home .solution-visual {
    margin-top: 40px;
  }
}
.page-home {
  /* Pillars (.pillar-grid is now a Bootstrap .row) */
}
.page-home .pillar {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: var(--space-28);
}
.page-home .pillar h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.page-home .pillar p {
  color: var(--fog-200);
  font-size: 14.5px;
}
.page-home .pillar-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--coral-500);
  margin-bottom: 14px;
  display: block;
}
.page-home .section.light .pillar {
  background: #fff;
  border-color: #E4E0D5;
}
.page-home .section.light .pillar p {
  color: var(--ink-700);
}
.page-home {
  /* Founding partners — copy left, gradient image right */
}
.page-home .founding-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #14121c 0%, #16131f 45%, #101827 100%);
  border-top: 1px solid var(--steel-600);
  border-bottom: 1px solid var(--steel-600);
}
.page-home .founding-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background: url("../images/founding-visual.svg") center right/cover no-repeat;
  /* fade the image into the background on its left edge */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%);
  pointer-events: none;
}
.page-home .founding-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.page-home .founding-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin-top: 12px;
}
.page-home .founding-copy p {
  color: var(--fog-200);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-top: 16px;
}
.page-home .founding-copy .theme-btn {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .page-home .founding-visual {
    width: 100%;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
  }
  .page-home .founding-copy {
    max-width: 100%;
  }
}
.page-home {
  /* Problem/solution menu */
}
.page-home .menu-list {
  border-top: 1px solid var(--steel-600);
}
.page-home .menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-22) var(--space-4);
  border-bottom: 1px solid var(--steel-600);
  cursor: pointer;
  transition: padding-left 0.15s;
}
.page-home .menu-row:hover {
  padding-left: var(--space-12);
  color: var(--pink-400);
}
.page-home .menu-row span.q {
  font-size: 18px;
  font-weight: 500;
}
.page-home .menu-row span.arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fog-300);
}
.page-home {
  /* Feature grid card styles are global (see base/_base.scss) */
  /* Closing CTA */
}
.page-home .cta-block {
  background: linear-gradient(135deg, #2A1712, #1A1128, #101828);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-16);
  padding: var(--space-64) var(--space-48);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-home .cta-block > * {
  position: relative;
  z-index: 1;
}
.page-home .cta-block h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}
.page-home .cta-block p {
  color: var(--fog-200);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.page-home .cta-block .hero-ctas {
  justify-content: center;
  margin-top: 28px;
}
.page-home {
  /* Pricing calculator (.calc-grid is now a Bootstrap .row) */
}
.page-home .calc-col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fog-300);
  margin-bottom: 14px;
}
.page-home .calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius);
  padding: var(--space-14) var(--space-16);
  margin-bottom: var(--space-10);
  cursor: pointer;
  transition: border-color 0.15s;
}
.page-home .calc-item:hover {
  border-color: var(--pink-500);
}
.page-home .calc-item.checked {
  border-color: var(--pink-500);
  background: rgba(255, 93, 143, 0.06);
}
.page-home .calc-item.checked .calc-checkbox {
  background: var(--brand-gradient);
  border-color: transparent;
}
.page-home .calc-item.checked .calc-checkbox::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.page-home .calc-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-home .calc-checkbox {
  width: var(--space-18);
  height: var(--space-18);
  border-radius: var(--radius-sm);
  border: 2px solid var(--steel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.page-home .calc-item-name {
  font-size: 14.5px;
  font-weight: 500;
}
.page-home .calc-item-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fog-300);
}
.page-home .calc-summary {
  position: sticky;
  top: 100px;
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-14);
  padding: var(--space-32);
  text-align: center;
}
@media (max-width: 920px) {
  .page-home .calc-summary {
    position: static;
  }
}
.page-home .calc-summary-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fog-300);
  margin-bottom: 12px;
}
.page-home .calc-total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  position: relative;
  display: inline-block;
}
.page-home .calc-total.struck::after {
  content: "";
  position: absolute;
  left: -4%;
  top: 50%;
  height: 4px;
  width: 0;
  background: var(--pink-500);
  transform: translateY(-50%);
  animation: strike 0.5s ease forwards;
}
.page-home .calc-permo {
  font-size: 15px;
  color: var(--fog-300);
  margin-top: 4px;
}
.page-home .calc-reveal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--steel-600);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease 0.3s;
}
.page-home .calc-reveal.visible {
  opacity: 1;
  max-height: 200px;
}
.page-home .calc-reveal p {
  font-size: 14px;
  color: var(--fog-200);
  margin-bottom: 16px;
}
.page-home .calc-empty {
  color: var(--fog-300);
  font-size: 14px;
  padding: 20px 0;
}
.page-home .calc-disclaimer {
  font-size: 11.5px;
  color: var(--fog-300);
  margin-top: 18px;
  line-height: 1.6;
}
.page-home {
  /* Form */
}
.page-home .demo-form {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-14);
  padding: var(--space-36);
  max-width: 560px;
}
.page-home .field {
  margin-bottom: var(--space-18);
}
.page-home .field label {
  display: block;
  font-size: 13px;
  color: var(--fog-300);
  margin-bottom: var(--space-7);
  font-family: var(--font-mono);
}
.page-home .field input,
.page-home .field select {
  width: 100%;
  padding: var(--space-12) var(--space-14);
  background: var(--asphalt-900);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.page-home .field input:focus,
.page-home .field select:focus {
  outline: 2px solid var(--pink-500);
  outline-offset: 1px;
}
.page-home {
  /* FAQ accordion */
}
.page-home .faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.page-home .faq-item {
  background: var(--asphalt-800);
  border: 1px solid var(--steel-600);
  border-radius: var(--radius-12);
  padding: 0 var(--space-24);
  margin-bottom: var(--space-14);
  transition: border-color 0.18s ease;
}
.page-home .faq-item[open] {
  border-color: rgba(255, 93, 143, 0.4);
}
.page-home .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: var(--space-22) 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.page-home .faq-item summary::-webkit-details-marker {
  display: none;
}
.page-home .faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid var(--fog-300);
  border-bottom: 2px solid var(--fog-300);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.page-home .faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--pink-400);
}
.page-home .faq-item .faq-answer {
  border-top: 1px solid var(--steel-600);
  padding: var(--space-18) 0 var(--space-22);
}
.page-home .faq-item .faq-answer p {
  margin: 0;
  color: var(--fog-200);
  font-size: 15px;
  line-height: 1.7;
}

/* Page styles for Platform */
/* Use this file to add page-specific overrides for the Platform page.
   No overrides today to preserve current layout and visuals.
*/
/* Page styles for CRM */
/* Placeholder for CRM-specific styles. */
/* Page styles for DMS */
/* Page styles for CDP */
/* Page styles for Website */
/* Page styles for Marketing */
/* Page styles for Managed Services */
/* Page styles for Self-Serve Marketing */
/* Page styles for PPC */
/* Page styles for Organic Social */
/* Page styles for AEO & SEO */
/* Page styles for AI Agents */
/* Page styles for Facebook & Instagram */
/* Page styles for Google */
/* Page styles for TikTok */
/* Page styles for Snapchat */
/* Page styles for YouTube */
/* Page styles for Integrations */
.partner-strip {
  margin-top: 40px;
  text-align: center;
}
.partner-strip img {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}
.partner-strip .partner-note {
  margin-top: 14px;
  color: var(--fog-300);
  font-size: 14px;
}

/* Page styles for Insights */
/* Page styles for About */
.founder-figure {
  margin: 0 0 28px;
  max-width: 320px;
}
.founder-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-14);
}

@media (min-width: 768px) {
  .founder-figure {
    float: right;
    max-width: 300px;
    margin: 4px 0 20px 32px;
  }
}
/* Page styles for Pricing */
/* Page styles for Demo */
/* Page styles for Founding Partner Program */
/* Page styles for Who We Serve */
/* Alternate key: whoweserve */