@charset "UTF-8";
/* ---------------------------
   InventaCloud Neon (Glass)
   --------------------------- */
:root {
  --ic-bg: #070a12;
  --ic-bg2: #05060b;
  --ic-card: rgba(255, 255, 255, 0.06);
  --ic-border: rgba(255, 255, 255, 0.12);
  --ic-glow: rgba(98, 255, 226, 0.35);
  --ic-glow2: rgba(141, 77, 255, 0.35);
  --ic-text: rgba(255, 255, 255, 0.92);
  --ic-muted: rgba(255, 255, 255, 0.66);
  --header-height: 72px;
  --footer-height: 80px;
  --pricing-table-bg: #06080e;
  --ic-glass: rgba(255, 255, 255, 0.06);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip; /* allows position:sticky descendants (hidden breaks them) */
  transform: none !important;
  zoom: 1 !important;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.full-height-section {
  min-height: calc(100vh - var(--header-height, 0px) - var(--footer-height, 0px));
  display: flex;
  align-items: center;
}

.ic-body {
  background: radial-gradient(1200px 700px at 20% -10%, rgba(141, 77, 255, 0.25), transparent 60%), radial-gradient(900px 600px at 85% 10%, rgba(98, 255, 226, 0.22), transparent 55%), radial-gradient(900px 700px at 50% 110%, rgba(98, 255, 226, 0.12), transparent 60%), linear-gradient(180deg, var(--ic-bg) 0%, var(--ic-bg2) 100%);
  color: var(--ic-text);
  overflow-x: hidden;
  overflow-x: clip; /* allows position:sticky descendants (hidden breaks them) */
  min-height: 100vh;
}

.ic-logo {
  height: 75px;
  width: auto;
  display: block;
  transition: height 0.2s ease;
}

.ic-nav--scrolled .ic-logo {
  height: 40px;
}

/* Everything below xxl — 58px logo. Covers small phones-up to large
   laptops where the hamburger nav kicks in. Keeps the brand mark
   readable without crowding the right-side CTA cluster. */
@media (min-width: 576px) and (max-width: 1399.98px) {
  .ic-logo {
    height: 58px;
  }
}

@media (max-width: 575.98px) {
  .ic-logo {
    height: 45px;
  }
  .ic-nav--scrolled .ic-logo {
    height: 32px;
  }
}

.ic-brand-text {
  letter-spacing: 0.2px;
}

.ic-nav {
  /* At rest: invisible strip. Background + blur + border fade in only
     once the JS adds .ic-nav--scrolled (i.e. user has scrolled). */
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0.85rem 0 0.55rem 0; /* breathing room above nav items */
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: background 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease, border-color 0.2s ease;
}
.ic-nav.ic-nav--scrolled {
  background: rgba(7, 10, 18, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.ic-nav .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.ic-nav .navbar-brand {
  /* Glass "lozenge" with the (oversized) logo. Hangs below the nav
     baseline via a negative bottom margin so the nav row itself stays
     compact. !important defeats Bootstrap's .d-flex utility. */
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 14px;
  /* Glass pill — disabled for now, may re-enable later.
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  */
  border-radius: 0 0 18px 18px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  margin-top: -0.85rem; /* negate nav top padding — pill stays flush to viewport top */
  margin-bottom: -55px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.18s ease, margin-bottom 0.2s ease;
}
.ic-nav .navbar-brand:hover {
  transform: translateY(-1px);
}
@media (max-width: 575.98px) {
  .ic-nav .navbar-brand {
    padding: 6px 10px;
    margin-bottom: -32px;
    /* Mobile: pill stays plain (no glass) even if desktop styles get re-enabled */
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
/* Compact state — JS adds .ic-nav--scrolled once the user scrolls past
   the threshold. Logo shrinks 75 → 40, pill hangs less. */
.ic-nav.ic-nav--scrolled .navbar-brand {
  margin-bottom: -25px;
}
@media (max-width: 575.98px) {
  .ic-nav.ic-nav--scrolled .navbar-brand {
    margin-bottom: -15px;
  }
}
.ic-nav .nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(234, 242, 255, 0.82);
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.ic-nav .navbar-nav .btn {
  white-space: nowrap;
}
.ic-nav .navbar-toggler {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.ic-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(124, 92, 255, 0.35);
  outline: none;
}
.ic-nav .navbar-toggler-icon {
  width: 1.15em;
  height: 1.15em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23eaf2ff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E");
}

.ic-nav-divider {
  display: none;
}

@media (min-width: 1200px) {
  .ic-nav-divider {
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 0.5rem;
    align-self: center;
  }
}

/* =====================================================================
   Audience band (.ic-audience-band) + switch (.ic-audience-switch).
   The band is the centered strip between the sticky nav and the hero,
   home to the persistent cross-audience switcher. Lives outside the
   nav so the brand mark stays uncluttered and the switcher gets its
   own quiet space.
   ===================================================================== */
.ic-audience-band {
  /* Centered strip between the sticky nav and the hero. Generous vertical
     padding so the switcher reads as its own grounded element with room
     to breathe. No background — the page hero gradient flows through. */
  padding: 1.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.ic-audience-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  /* Inner shadow gives the pill subtle inset depth — reads as a recessed
     track that the active tab sits in. Outer ring softens the edge. */
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    0 12px 30px rgba(0,0,0,0.35);
  position: relative;
}

/* Subtle outer halo behind the pill on the active gradient side. Painted
   as a ::before pseudo so the pill itself doesn't need a wrapper. */
.ic-audience-switch::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(50% 100% at 50% 50%, rgba(141,77,255,0.10), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.ic-audience-switch__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.ic-audience-switch__tab:hover,
.ic-audience-switch__tab:focus,
.ic-audience-switch__tab:focus-visible {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  outline: none;
}
.ic-audience-switch__tab:active {
  transform: translateY(1px);
}

/* Active tab — full brand gradient. Outer shadow plus a tight neon ring
   (cyan→purple) so the active side reads as a tactile chip raised out
   of the pill track. */
.ic-audience-switch__tab.is-active {
  background:
    linear-gradient(90deg, rgba(98, 255, 226, 0.98), rgba(141, 77, 255, 0.92));
  color: rgba(5, 6, 11, 0.95);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.40),
    0 0 18px rgba(98, 255, 226, 0.20),
    0 0 30px rgba(141, 77, 255, 0.18);
  pointer-events: none;
  cursor: default;
  transform: translateY(0);
}

.ic-audience-switch__tab i {
  font-size: 1.05rem;
}
.ic-audience-switch__tab.is-active i {
  color: rgba(5, 6, 11, 0.85);
}

/* Tablet / smaller laptops — slightly compress. */
@media (max-width: 991.98px) {
  .ic-audience-band { padding: 1.25rem 0 1rem; }
  .ic-audience-switch__tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
/* Phones — drop labels but keep the icons. Smaller halo + tighter pill
   so it doesn't dominate the hero on a 360px viewport. */
@media (max-width: 575.98px) {
  /* Extra top padding on mobile gives the switcher breathing room
     between the sticky nav and the pill so it doesn't feel pinched. */
  .ic-audience-band { padding: 2rem 0 0.75rem; }
  .ic-audience-switch {
    padding: 3px;
  }
  .ic-audience-switch__tab {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    gap: 0.4rem;
  }
  .ic-audience-switch__tab i {
    font-size: 0.95rem;
  }
}
@media (max-width: 419.98px) {
  .ic-audience-switch__label { display: none; }
  .ic-audience-switch__tab {
    padding: 0.45rem 0.8rem;
  }
}

/* Block variant used inside the mobile drawer — spans full width with
   the two tabs splitting space evenly. Sits at the top of the drawer
   body so the audience choice is the very first thing visible. */
.ic-audience-switch--block {
  display: flex;
  width: 100%;
}
.ic-audience-switch--block .ic-audience-switch__tab {
  flex: 1 1 0;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
}
.ic-audience-switch--block .ic-audience-switch__tab i {
  font-size: 1.1rem;
}

/* Drawer CTAs (Start free trial + Request a demo) pinned below the link
   list. Full-width buttons read as the natural mobile conversion path. */
.ic-drawer-ctas .btn {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
}

/* Belt-and-suspenders: even with data-bs-scroll="true" some browsers
   still reflow when the offcanvas transitions in. Pin the body so its
   computed scroll position can't be reset during the transition. */
body.offcanvas-opening,
body.offcanvas-opening-stable {
  overflow-anchor: none;
}

/* =====================================================================
   Nav CTAs (.ic-nav-cta). Always-visible right-side button — sized
   smaller on phones so the brand mark + toggler still fit.
   ===================================================================== */
.ic-nav-cta {
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .ic-nav-cta {
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
  }
  .ic-nav .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

/* (Mid-desktop nav compression lives AFTER the xl+ hard-reset block below —
   the reset re-declares .ic-nav .navbar-nav .nav-link and would override a
   band rule placed here.) */

/* =====================================================================
   Mobile drawer (offcanvas). Slides in from the RIGHT below xl (1200px,
   matching navbar-expand-xl — the inline bar overflows below ~1200). The
   force-overrides below ensure offcanvas-end positioning sticks even
   when Phoenix's theme.min.css or another framework rule competes. The
   user reported the drawer rendering as a top strip — that's a sign
   Bootstrap's .offcanvas-end positioning rules were being overridden,
   so all the positioning props here use !important to lock them.
   ===================================================================== */
@media (max-width: 1199.98px) {
  .ic-mobile-drawer.offcanvas {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 360px !important;
    max-width: 88vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #0b0e16;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
    color: #f4f5f8;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
    /* Win the stacking war against every page section (.ic-section is
       position:relative;z-index:1, etc.) Bootstrap's default 1045 lost
       to page sections nested in their own stacking contexts. */
    z-index: 100000 !important;
    display: flex !important;
    flex-direction: column;
  }
  /* Backdrop sits one notch below the drawer, above everything else. */
  body .offcanvas-backdrop.show { z-index: 99999 !important; opacity: 0.78 !important; background: #000 !important; }
  .ic-mobile-drawer.offcanvas.show,
  .ic-mobile-drawer.offcanvas.showing {
    transform: translateX(0) !important;
    visibility: visible !important;
    transition: transform 0.3s ease-in-out, visibility 0s linear 0s;
  }
  .ic-mobile-drawer .offcanvas-header {
    flex: 0 0 auto;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ic-mobile-drawer .offcanvas-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }
  .ic-mobile-drawer .btn-close { filter: invert(1) grayscale(1) brightness(2); opacity: 0.6; }
  .ic-mobile-drawer .btn-close:hover { opacity: 1; }
  .ic-mobile-drawer .offcanvas-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .ic-mobile-drawer .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  .ic-mobile-drawer .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    display: block;
  }
  .ic-mobile-drawer .nav-link:hover,
  .ic-mobile-drawer .nav-link:focus {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }
}

/* Hard reset at xl+ (matches navbar-expand-xl). Strips ALL drawer/sheet
   styling from the offcanvas when Bootstrap reflows it back to inline so
   the expanded desktop nav never inherits a leftover background,
   position, or transform. */
@media (min-width: 1200px) {
  .ic-nav .navbar-collapse,
  .ic-nav .offcanvas {
    margin-top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    width: auto !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }
  .ic-nav .offcanvas-body {
    padding: 0 !important;
    flex-grow: 0;
    display: contents;
  }
  .ic-nav .offcanvas-header { display: none !important; }
  .ic-nav .navbar-nav {
    width: auto;
    gap: 0;
  }
  .ic-nav .navbar-nav .nav-link {
    padding: 0.5rem 0.85rem;
    border-radius: 0;
    font-size: 0.92rem;
  }
}

/* Mid-desktop band (1200px to ~1560px) — the inline bar carries six menus
   + Sign In + two CTAs, which only fits at full size from ~1560px up.
   Compress links and buttons so the row fits from 1200px without dropping
   to the hamburger. Placed AFTER the xl+ reset above so these values win
   the cascade against its .ic-nav .navbar-nav .nav-link re-declaration.
   Below 1200px the nav is the hamburger + drawer (navbar-expand-xl). */
@media (min-width: 1200px) and (max-width: 1559.98px) {
  .ic-nav .nav-link,
  .ic-nav .navbar-nav .nav-link {
    padding: 0.5rem 0.45rem;
    font-size: 0.85rem;
  }
  .ic-nav-cta,
  .ic-nav .btn.ic-nav-cta {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }
}
/* The container narrows relative to the row in the 1400-1540 sub-band —
   shave a little more link padding so the CTAs stay flush with the
   container edge instead of poking past it. */
@media (min-width: 1400px) and (max-width: 1539.98px) {
  .ic-nav .nav-link,
  .ic-nav .navbar-nav .nav-link {
    padding: 0.5rem 0.3rem;
  }
  .ic-nav-cta,
  .ic-nav .btn.ic-nav-cta {
    padding: 0.45rem 0.6rem;
  }
}

/* =====================================================================
   "More ▾" dropdown (.ic-nav-dropdown). Lg+ only. Sits inside the nav's
   anchor-link row and houses secondary utility items so the inline bar
   doesn't crowd.
   ===================================================================== */
.ic-nav .dropdown-toggle::after {
  vertical-align: 0.18em;
  border-top-color: rgba(255, 255, 255, 0.6);
}
.ic-nav-dropdown {
  background: rgba(11, 14, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.4rem;
  margin-top: 0.5rem !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  min-width: 220px;
  backdrop-filter: blur(10px);
}
.ic-nav-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.ic-nav-dropdown .dropdown-item i {
  font-size: 1.05rem;
  color: rgba(98, 255, 226, 0.8);
}
.ic-nav-dropdown .dropdown-item:hover,
.ic-nav-dropdown .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.ic-nav-dropdown .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0.3rem 0;
}

.ic-hero {
  position: relative;
  padding-top: 2.75rem;
}
.ic-hero .ic-caption {
  font-size: 1.753125rem;
}
@media (max-width: 991.98px) {
  .ic-hero .ic-caption {
    font-size: 16px;
  }
  .ic-hero {
    padding-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .ic-hero {
    padding-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .ic-hero {
    padding-top: 1rem;
  }
}

.ic-hero-glow {
  position: absolute;
  inset: -200px -120px auto -120px;
  height: 520px;
  background: radial-gradient(closest-side at 25% 50%, rgba(141, 77, 255, 0.2), transparent 70%), radial-gradient(closest-side at 70% 35%, rgba(98, 255, 226, 0.16), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  overflow: hidden;
}

.ic-hero .container {
  z-index: 1;
}

.ic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.ic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(98, 255, 226, 0.9);
  box-shadow: 0 0 18px rgba(98, 255, 226, 0.65);
}

.ic-neon-text {
  text-shadow: 0 0 18px rgba(98, 255, 226, 0.22), 0 0 34px rgba(141, 77, 255, 0.18);
}

.ic-glass {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.ic-glass--thin {
  background: rgba(255, 255, 255, 0.035);
}

.ic-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.ic-card--featured {
  border-color: rgba(98, 255, 226, 0.22);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(98, 255, 226, 0.08) inset, 0 0 42px rgba(98, 255, 226, 0.1);
}

.ic-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: radial-gradient(closest-side, rgba(98, 255, 226, 0.16), rgba(255, 255, 255, 0.03));
  border: 0px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 22px rgba(98, 255, 226, 0.08);
  color: var(--ic-text);
  font-size: 56px;
}
@media (max-width: 575.98px) {
  .ic-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.ic-mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.ic-mini-stat__k {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.ic-mini-stat__v {
  color: var(--ic-muted);
  font-size: 0.85rem;
}

.ic-subtle {
  color: rgba(98, 255, 226, 0.75);
}

.ic-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.ic-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(98, 255, 226, 0.18);
  background: rgba(98, 255, 226, 0.06);
  color: rgba(98, 255, 226, 0.88);
  font-size: 0.82rem;
}

.ic-badge {
  background: linear-gradient(90deg, rgba(98, 255, 226, 0.95), rgba(141, 77, 255, 0.85));
  color: rgba(5, 6, 11, 0.95);
  border: none;
  box-shadow: 0 0 22px rgba(98, 255, 226, 0.22);
}

.ic-badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.ic-btn-primary {
  border: none;
  background: linear-gradient(90deg, rgba(98, 255, 226, 0.95), rgba(141, 77, 255, 0.85));
  color: rgba(5, 6, 11, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(98, 255, 226, 0.1);
}

.ic-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34), 0 0 38px rgba(141, 77, 255, 0.14);
}

/* Mirror of .ic-btn-primary using the same brand cyan+purple palette but
   reversed (purple -> cyan). Use as the secondary CTA when you want a
   prominent button right next to .ic-btn-primary without two visually
   identical gradients competing for attention. */
.ic-btn-primary-alt {
  border: none;
  background: linear-gradient(90deg, rgba(141, 77, 255, 0.92), rgba(98, 255, 226, 0.88));
  color: rgba(5, 6, 11, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(141, 77, 255, 0.12);
}

.ic-btn-primary-alt:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34), 0 0 38px rgba(98, 255, 226, 0.16);
}

.ic-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(10px);
}

.ic-btn-ghost:hover {
  border-color: rgba(98, 255, 226, 0.22) !important;
  box-shadow: 0 0 26px rgba(98, 255, 226, 0.1);
}

.ic-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.ic-save {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(98, 255, 226, 0.16);
  background: rgba(98, 255, 226, 0.06);
  color: rgba(98, 255, 226, 0.85);
}

.ic-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.ic-price__amount {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.ic-price__per {
  font-size: 0.95rem;
}

.ic-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
}

.ic-list li {
  position: relative;
  padding-left: 1.25rem;
}

.ic-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(98, 255, 226, 0.85);
  text-shadow: 0 0 14px rgba(98, 255, 226, 0.35);
}

.ic-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ic-steps li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.ic-step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(98, 255, 226, 0.9);
  box-shadow: 0 0 20px rgba(98, 255, 226, 0.08);
  font-weight: 800;
}

/* Testimonials */
.ic-quote {
  padding: 1.1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.ic-quote__body {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.ic-quote__meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ic-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: rgba(5, 6, 11, 0.95);
  background: linear-gradient(90deg, rgba(98, 255, 226, 0.95), rgba(141, 77, 255, 0.85));
  box-shadow: 0 0 26px rgba(98, 255, 226, 0.12);
}

.ic-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.ic-swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(98, 255, 226, 0.9);
  box-shadow: 0 0 18px rgba(98, 255, 226, 0.35);
}

@media (max-width: 575.98px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 100% !important;
    width: 100% !important;
  }
}
stripe-pricing-table {
  position: relative;
  /* Remove Stripe white bottom border */
}
stripe-pricing-table:before {
  display: block;
  position: absolute;
  background: #111319;
  height: 15px;
  width: 100%;
  content: " ";
  z-index: 1;
  bottom: -10px;
  top: auto;
}

#icTestimonials {
  position: inherit;
}
#icTestimonials .swiper-horizontal > .swiper-pagination-bullets,
#icTestimonials .swiper-pagination-bullets.swiper-pagination-horizontal,
#icTestimonials .swiper-pagination-custom,
#icTestimonials .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 2px);
}

stripe-pricing-table {
  background: transparent !important;
}

stripe-pricing-table {
  background: transparent !important;
  backdrop-filter: blur(12px);
}

/* === PRICING TABLE GLASS CARD === */
.pricing-glass {
  background: rgba(15, 18, 25, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* === NEON BORDER GLOW === */
.pricing-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.6), rgba(120, 80, 255, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* === STRIPE TABLE OVERRIDES === */
stripe-pricing-table {
  background: transparent !important;
}

/* Kill any Phoenix card backgrounds if nested */
.card,
.card-body {
  background: transparent !important;
  box-shadow: none !important;
}

/* =========================
	MOBILE NAV PANEL
========================= */
@media (max-width: 1199.98px) {
  .ic-nav .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(11, 16, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .ic-nav .navbar-nav {
    gap: 0.15rem;
  }
  .ic-nav .nav-link {
    padding: 0.65rem 0.85rem;
  }
  .ic-nav .nav-item.ic-nav-divider {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.5rem 0.25rem;
  }
  .ic-nav .navbar-nav .btn {
    display: block;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    text-align: center;
  }
  .ic-nav .navbar-nav .nav-item.ms-lg-1,
  .ic-nav .navbar-nav .nav-item.ms-lg-2 {
    margin-left: 0 !important;
  }
}
/* IC Neon Text Utility
	Usage:
	<span class="ic-neon-text">InventaCloud</span>
	Optional modifiers:
	- ic-neon-text--sm / --lg / --xl
	- ic-neon-text--pulse (subtle animation)
*/
.ic-neon-text {
  /* tweak these 3 to match your theme */
  --ic-neon-color: #7c5cff; /* core glow color */
  --ic-neon-hot: rgba(124, 92, 255, 0.95); /* inner glow */
  --ic-neon-cold: rgba(124, 92, 255, 0.25); /* outer glow */
  color: #f3f6ff;
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px var(--ic-neon-hot), 0 0 14px rgba(124, 92, 255, 0.55), 0 0 28px var(--ic-neon-cold), 0 0 46px rgba(124, 92, 255, 0.18);
  filter: drop-shadow(0 0 10px rgba(124, 92, 255, 0.25));
}

/* Works great for headlines */
.ic-neon-text--sm {
  font-size: 0.95em;
}

.ic-neon-text--lg {
  font-size: 1.15em;
}

.ic-neon-text--xl {
  font-size: 1.35em;
}

/* Optional: brighter on hover */
.ic-neon-text:hover {
  text-shadow: 0 0 8px var(--ic-neon-hot), 0 0 18px rgba(124, 92, 255, 0.65), 0 0 34px rgba(124, 92, 255, 0.3), 0 0 60px rgba(124, 92, 255, 0.22);
}

/* Optional: subtle “alive” neon pulse */
@keyframes icNeonPulse {
  0%, 100% {
    text-shadow: 0 0 6px var(--ic-neon-hot), 0 0 14px rgba(124, 92, 255, 0.55), 0 0 28px var(--ic-neon-cold), 0 0 46px rgba(124, 92, 255, 0.18);
    filter: drop-shadow(0 0 10px rgba(124, 92, 255, 0.25));
  }
  50% {
    text-shadow: 0 0 10px var(--ic-neon-hot), 0 0 22px rgba(124, 92, 255, 0.7), 0 0 42px rgba(124, 92, 255, 0.35), 0 0 70px rgba(124, 92, 255, 0.26);
    filter: drop-shadow(0 0 16px rgba(124, 92, 255, 0.35));
  }
}
.ic-neon-text--pulse {
  animation: icNeonPulse 2.8s ease-in-out infinite;
}

.ic-glow-border {
  position: relative;
}

.ic-glow-border:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(168, 85, 247, 0.45), rgba(34, 197, 94, 0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

/* =========================================================
   InventaCloud — Account Portal
   ========================================================= */
.ic-max-w {
  max-width: 56ch;
}

/* Hero glow ring */
.ic-glow-ring {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(99, 102, 241, 0.18), transparent 55%), radial-gradient(900px 500px at 80% 20%, rgba(16, 185, 129, 0.14), transparent 55%), radial-gradient(900px 500px at 40% 90%, rgba(236, 72, 153, 0.1), transparent 60%), rgba(0, 0, 0, 0.35);
}
.ic-glow-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.45), rgba(16, 185, 129, 0.25), rgba(236, 72, 153, 0.25));
  filter: blur(18px);
  opacity: 0.35;
  pointer-events: none;
}

.ic-hero-inner {
  position: relative;
  z-index: 1;
}

/* Card glow */
.ic-card-glow {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* Buttons */
.ic-btn-glow {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 14px 40px rgba(99, 102, 241, 0.25);
}

/* Badge glow */
.ic-badge-glow {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
}

/* =========================================================
   Global page offset (fixed / sticky header)
   ========================================================= */
.ic-page-offset {
  /* Navbar clearance lives on .ic-body now; this utility just adds visual breathing room */
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .ic-page-offset {
    margin-top: 2.5rem;
  }
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.nav-link[aria-current="page"] {
  --ic-neon-color: #7c5cff;
  --ic-neon-hot: rgba(124, 92, 255, 0.95);
  --ic-neon-cold: rgba(124, 92, 255, 0.25);
  color: #f3f6ff;
  text-shadow: 0 0 6px var(--ic-neon-hot), 0 0 14px rgba(124, 92, 255, 0.55), 0 0 28px var(--ic-neon-cold), 0 0 46px rgba(124, 92, 255, 0.18);
  filter: drop-shadow(0 0 10px rgba(124, 92, 255, 0.25));
}
.nav-link.active { font-weight: 600; }

/* ---------- IC Loader (page-level progress) ----------------------------
   Mirrors the app's ic-layout.css spec so the marketing site loader looks
   identical to what users see once they're inside the app. Toggled via
   progressPage("on" | "off") in inventacloud.js. */
#page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Above the mobile drawer (z-index: 100000) so the loader actually
     shows when a link inside the drawer triggers a navigation. */
  z-index: 200000;
}
body[data-progress] #page-overlay {
  opacity: 1;
  pointer-events: auto;
}
#page-progress {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200001;  /* one tick above #page-overlay; both above the drawer */
  background: rgba(8, 10, 18, 0.18);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}
body[data-progress] #page-progress {
  display: flex;
}
.ic-loader {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #b18cff;
  border-right-color: rgba(177, 140, 255, 0.7);
  border-radius: 50%;
  animation: ic-loader-spin 1.1s linear infinite;
  box-shadow: 0 0 18px rgba(177, 140, 255, 0.65), inset 0 0 18px rgba(177, 140, 255, 0.45);
}
.ic-loader::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid transparent;
  border-bottom-color: #b18cff;
  border-left-color: rgba(177, 140, 255, 0.5);
  border-radius: 50%;
  animation: ic-loader-spin 1.8s linear reverse infinite;
  box-shadow: 0 0 12px rgba(177, 140, 255, 0.55);
}
.ic-loader__mark {
  font-family: inherit;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 0 8px #b18cff, 0 0 22px #b18cff, 0 0 42px rgba(177, 140, 255, 0.85);
  animation: ic-loader-pulse 1.2s ease-in-out infinite;
}
@keyframes ic-loader-spin {
  to { transform: rotate(360deg); }
}
@keyframes ic-loader-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.92; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* =====================================================================
   "No catalog? We'll build it" section. Centered card with a faint
   neon grid backdrop and a soft gradient halo so the section reads as
   its own moment — distinct from the surrounding sections without being
   so loud that it competes with the hero or pricing.
   ===================================================================== */
.ic-catalog-help-card {
  max-width: 960px;
  border-radius: 24px;
  background:
    radial-gradient(60% 100% at 20% 0%,  rgba(98,255,226,0.06), transparent 60%),
    radial-gradient(60% 100% at 100% 0%, rgba(141,77,255,0.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(141, 77, 255, 0.10);
}

/* Faint grid backdrop — the visual reference the user shared. Painted
   with two repeating linear-gradients (horizontal + vertical lines)
   masked to fade out toward the card edges so the grid feels native to
   the surface rather than abruptly clipped. */
.ic-catalog-help-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, #000 50%, transparent 85%);
  opacity: 0.85;
}

.ic-catalog-help-lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ic-catalog-help-chips .ic-pill {
  font-size: 0.78rem;
  padding: 0.45rem 0.85rem;
}
.ic-catalog-help-chips .ic-pill i {
  color: rgba(98, 255, 226, 0.85);
}

@media (max-width: 575.98px) {
  .ic-catalog-help-card { border-radius: 18px; }
  .ic-catalog-help-card h2 { font-size: 1.6rem; }
  .ic-catalog-help-lead { font-size: 0.95rem; }
  .ic-catalog-help-chips .ic-pill { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
}

/* ---------- Hero animated SVG mock (AI mapping diagram) ----------------- */
.ic-hero-mock { overflow: hidden; }
.ic-hero-svg {
  display: block;
  width: 100%;
  height: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}
.ic-hero-col rect {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}
.ic-hero-col text { fill: rgba(255, 255, 255, 0.85); }
.ic-hero-col-label {
  font-size: 9.5px;
  fill: rgba(141, 77, 255, 0.95) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ic-hero-col--raw rect {
  stroke: rgba(255, 138, 138, 0.45);
  fill: rgba(255, 95, 95, 0.05);
  animation: ic-hero-raw-pulse 4.5s ease-in-out infinite;
}
.ic-hero-col--raw:nth-of-type(2) rect { animation-delay: 0.4s; }
.ic-hero-col--raw:nth-of-type(3) rect { animation-delay: 0.8s; }
.ic-hero-col--raw:nth-of-type(4) rect { animation-delay: 1.2s; }
.ic-hero-col--clean rect {
  stroke: rgba(98, 255, 226, 0.55);
  fill: rgba(98, 255, 226, 0.06);
  animation: ic-hero-clean-pulse 4.5s ease-in-out infinite;
}
.ic-hero-col--clean:nth-of-type(1) rect { animation-delay: 1.6s; }
.ic-hero-col--clean:nth-of-type(2) rect { animation-delay: 1.9s; }
.ic-hero-col--clean:nth-of-type(3) rect { animation-delay: 2.2s; }
.ic-hero-col--clean:nth-of-type(4) rect { animation-delay: 2.5s; }
@keyframes ic-hero-raw-pulse {
  0%, 70%, 100% { opacity: 0.55; }
  35%           { opacity: 1; }
}
@keyframes ic-hero-clean-pulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}
.ic-hero-lines path {
  stroke-dasharray: 4 6;
  stroke-dashoffset: 0;
  animation: ic-hero-flow 2.4s linear infinite;
  opacity: 0.85;
}
@keyframes ic-hero-flow {
  to { stroke-dashoffset: -200; }
}
.ic-hero-engine rect {
  fill: rgba(141, 77, 255, 0.18);
  stroke: rgba(141, 77, 255, 0.7);
  stroke-width: 1.4;
}
.ic-hero-engine text {
  fill: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ic-hero-engine-dot {
  fill: #62FFE2;
  filter: url(#ic-hero-glow);
  animation: ic-hero-engine-blink 1.4s ease-in-out infinite;
}
@keyframes ic-hero-engine-blink {
  0%, 100% { opacity: 0.35; r: 4.5; }
  50%      { opacity: 1;    r: 5.5; }
}
@media (prefers-reduced-motion: reduce) {
  .ic-hero-col--raw rect,
  .ic-hero-col--clean rect,
  .ic-hero-lines path,
  .ic-hero-engine-dot {
    animation: none;
    opacity: 0.85;
  }
}

/* ---------- AI Mapping panel — "in motion" diagram ----------------------
   Full-width replacement for the .ic-hero-* SVG mock. Cards are real HTML
   so text stays legible/selectable and the grid reflows on phones; the two
   dotted connector bands are stretch-to-fit SVGs whose endpoint x-values
   (100 * (i + .5) / cols) line up with the 6-up / 7-up grids at >=1200px,
   which is the only width where they render.
   ----------------------------------------------------------------------- */
.ic-mapflow {
	--ic-mf-raw: #62FFE2;
	--ic-mf-clean: #8D4DFF;
	--ic-mf-clean-text: #c2a1ff;
	--ic-mf-warn: #FFB020;
	position: relative;
}
.ic-mapflow__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.1rem;
}
.ic-mapflow__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}
.ic-mapflow__sub {
	margin: 0.3rem 0 0;
	font-size: 0.8125rem;
	color: var(--ic-muted, rgba(255, 255, 255, 0.66));
}
.ic-mapflow__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	flex-shrink: 0;
	padding: 0.35rem 0.7rem;
	font-size: 0.6875rem;
	white-space: nowrap;
}
.ic-mapflow__accent-raw { color: var(--ic-mf-raw); }
.ic-mapflow__accent-clean { color: var(--ic-mf-clean-text); }

/* --- stage ------------------------------------------------------------- */
.ic-mapflow__stage {
	position: relative;
	padding: 0.9rem 0.8rem 1.1rem;
	border: 1px solid rgba(141, 77, 255, 0.32);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(141, 77, 255, 0.07), rgba(98, 255, 226, 0.035));
}
/* Inline (not flex) so the label text wraps as one run on narrow screens
   instead of the number, the copy, and the accent each becoming a line. */
.ic-mapflow__steplabel {
	display: block;
	margin: 0 0 0.7rem;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.9);
}
.ic-mapflow__steplabel--out {
	margin-top: 0.9rem;
	margin-bottom: 0.4rem;
}
.ic-mapflow__stepnum {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.4rem;
	height: 1.4rem;
	flex-shrink: 0;
	margin-right: 0.45rem;
	vertical-align: middle;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.07);
	font-size: 0.6875rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

/* --- card rows --------------------------------------------------------- */
.ic-mapflow__row {
	display: grid;
	gap: 0.6rem;
}
.ic-mapflow__row--in,
.ic-mapflow__row--out { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ic-mapflow__card {
	position: relative;
	min-width: 0;
	padding: 0.6rem 0.65rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
}
.ic-mapflow__card--raw {
	border-color: rgba(98, 255, 226, 0.26);
	background: rgba(98, 255, 226, 0.045);
	animation: ic-mapflow-raw-pulse 6s ease-in-out infinite;
}
.ic-mapflow__card--clean {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-color: rgba(141, 77, 255, 0.38);
	background: rgba(141, 77, 255, 0.07);
	animation: ic-mapflow-clean-pulse 6s ease-in-out infinite;
}
.ic-mapflow__row--in .ic-mapflow__card:nth-child(2) { animation-delay: 0.18s; }
.ic-mapflow__row--in .ic-mapflow__card:nth-child(3) { animation-delay: 0.36s; }
.ic-mapflow__row--in .ic-mapflow__card:nth-child(4) { animation-delay: 0.54s; }
.ic-mapflow__row--in .ic-mapflow__card:nth-child(5) { animation-delay: 0.72s; }
.ic-mapflow__row--in .ic-mapflow__card:nth-child(6) { animation-delay: 0.9s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(1) { animation-delay: 1.7s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(2) { animation-delay: 1.88s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(3) { animation-delay: 2.06s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(4) { animation-delay: 2.24s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(5) { animation-delay: 2.42s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(6) { animation-delay: 2.6s; }
.ic-mapflow__row--out .ic-mapflow__card:nth-child(7) { animation-delay: 2.78s; }
.ic-mapflow__card-head {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	width: 100%;
	min-width: 0;
	margin-bottom: 0.45rem;
}
.ic-mapflow__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.95rem;
	line-height: 1;
}
.ic-mapflow__card--raw .ic-mapflow__ico {
	color: var(--ic-mf-raw);
	border-color: rgba(98, 255, 226, 0.32);
}
.ic-mapflow__card--clean .ic-mapflow__ico {
	color: var(--ic-mf-clean-text);
	border-color: rgba(141, 77, 255, 0.42);
}
/* Field names wrap rather than truncate — "Dealer Cost" clipped to
   "Dealer …" costs the visitor the one word that explains the column. */
.ic-mapflow__field {
	min-width: 0;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}
.ic-mapflow__vals {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ic-mapflow__vals li {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.6875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.6);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* The standardized value is the payoff of the whole diagram, so it wraps
   in full. Only the messy sample list above ellipsises. */
.ic-mapflow__val {
	display: block;
	width: 100%;
	margin-bottom: 0.5rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #fff;
	overflow-wrap: anywhere;
}
.ic-mapflow__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 2.5rem;
	margin-bottom: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	overflow: hidden;
}
.ic-mapflow__thumb svg {
	display: block;
	width: 78%;
	height: auto;
}
.ic-mapflow__state {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	/* Cards are stretched to the tallest in the row (the one with the image
	   thumb), so pin the status chip to the bottom edge of every card. */
	margin-top: auto;
	padding: 0.15rem 0.45rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.5;
	white-space: nowrap;
}
.ic-mapflow__state--mapped {
	color: #8ffcea;
	border-color: rgba(98, 255, 226, 0.45);
	background: rgba(98, 255, 226, 0.12);
}
.ic-mapflow__state--validated {
	color: #cbb0ff;
	border-color: rgba(141, 77, 255, 0.55);
	background: rgba(141, 77, 255, 0.18);
}
.ic-mapflow__state--review {
	color: #ffd08a;
	border-color: rgba(255, 176, 32, 0.5);
	background: rgba(255, 176, 32, 0.14);
}
/* A "needs review" card takes the amber family end-to-end so the legend,
   the chip, and the card all read as the same signal. */
.ic-mapflow__card--clean:has(.ic-mapflow__state--review) {
	border-color: rgba(255, 176, 32, 0.45);
	background: rgba(255, 176, 32, 0.06);
}
.ic-mapflow__card--clean:has(.ic-mapflow__state--review) .ic-mapflow__ico {
	color: var(--ic-mf-warn);
	border-color: rgba(255, 176, 32, 0.45);
}

/* --- connector bands --------------------------------------------------- */
.ic-mapflow__link {
	position: relative;
	height: 2.25rem;
}
.ic-mapflow__link > svg { display: none; }
.ic-mapflow__link-mini {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	height: 100%;
	font-size: 0.85rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.45);
}
.ic-mapflow__link-mini::before {
	content: "";
	width: 0;
	height: 0.9rem;
	border-left: 2px dashed rgba(255, 255, 255, 0.28);
}
.ic-mapflow__link path {
	fill: none;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-dasharray: 3 5;
	vector-effect: non-scaling-stroke;
	animation: ic-mapflow-flow 2.6s linear infinite;
}
.ic-mapflow__link--in path { stroke: rgba(98, 255, 226, 0.7); }
.ic-mapflow__link--out path { stroke: rgba(167, 118, 255, 0.8); }
@keyframes ic-mapflow-flow {
	to { stroke-dashoffset: -80; }
}

/* --- engine ------------------------------------------------------------ */
.ic-mapflow__engine {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 0.6rem 1.4rem;
	border: 1px solid rgba(141, 77, 255, 0.75);
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(98, 255, 226, 0.12), rgba(141, 77, 255, 0.24));
	animation: ic-mapflow-engine 3.2s ease-in-out infinite;
}
.ic-mapflow__engine-ico {
	flex-shrink: 0;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--ic-mf-raw);
	text-shadow: 0 0 12px rgba(98, 255, 226, 0.7);
}
.ic-mapflow__engine-name {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}
.ic-mapflow__engine-tag {
	display: block;
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.68);
}

/* --- legend ------------------------------------------------------------ */
.ic-mapflow__legend {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ic-mapflow__legend-item {
	display: flex;
	gap: 0.55rem;
}
.ic-mapflow__legend-dot {
	width: 0.5rem;
	height: 0.5rem;
	margin-top: 0.36rem;
	flex-shrink: 0;
	border-radius: 50%;
}
.ic-mapflow__legend-dot--mapped {
	background: var(--ic-mf-raw);
	box-shadow: 0 0 8px rgba(98, 255, 226, 0.8);
}
.ic-mapflow__legend-dot--review {
	background: var(--ic-mf-warn);
	box-shadow: 0 0 8px rgba(255, 176, 32, 0.75);
}
.ic-mapflow__legend-dot--validated {
	background: #a776ff;
	box-shadow: 0 0 8px rgba(141, 77, 255, 0.8);
}
.ic-mapflow__legend-name {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #fff;
}
.ic-mapflow__legend-text {
	display: block;
	font-size: 0.75rem;
	line-height: 1.5;
	color: var(--ic-muted, rgba(255, 255, 255, 0.66));
}

@keyframes ic-mapflow-raw-pulse {
	0%, 22%, 100% { box-shadow: 0 0 0 rgba(98, 255, 226, 0); }
	8%            { box-shadow: 0 0 18px rgba(98, 255, 226, 0.3); }
}
@keyframes ic-mapflow-clean-pulse {
	0%, 22%, 100% { box-shadow: 0 0 0 rgba(141, 77, 255, 0); }
	8%            { box-shadow: 0 0 20px rgba(141, 77, 255, 0.42); }
}
@keyframes ic-mapflow-engine {
	0%, 100% { box-shadow: 0 0 22px rgba(141, 77, 255, 0.3), 0 0 55px rgba(98, 255, 226, 0.08), inset 0 0 16px rgba(141, 77, 255, 0.16); }
	50%      { box-shadow: 0 0 40px rgba(141, 77, 255, 0.5), 0 0 90px rgba(98, 255, 226, 0.16), inset 0 0 24px rgba(141, 77, 255, 0.26); }
}

@media (min-width: 576px) {
	.ic-mapflow__row--in,
	.ic-mapflow__row--out { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
	.ic-mapflow__legend {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}
@media (min-width: 1200px) {
	.ic-mapflow__stage { padding: 1.15rem 1.25rem 1.4rem; }
	.ic-mapflow__row--in {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 0.55rem;
	}
	.ic-mapflow__row--out {
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: 0.5rem;
	}
	.ic-mapflow__link { height: 4.5rem; }
	.ic-mapflow__link > svg {
		display: block;
		width: 100%;
		height: 100%;
	}
	.ic-mapflow__link-mini { display: none; }
	/* The engine has to be wide enough that the 41 / 59 convergence points
	   land inside the pill at every container width from 1200px up. */
	.ic-mapflow__engine {
		min-width: 22rem;
		padding: 0.7rem 1.6rem;
	}
	/* Step 2 sits to the left of the fan-out, the way the connectors do in
	   the reference art — pull the band back up over the label's row. */
	.ic-mapflow__steplabel--out {
		width: fit-content;
		margin: 0.85rem 0 0;
	}
	.ic-mapflow__link--out { margin-top: -1.55rem; }
	/* Line endpoints: a glowing tap under each vendor column, an arrowhead
	   landing on each standardized field. Only drawn where the SVG bands are. */
	.ic-mapflow__card--raw::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: -4px;
		width: 7px;
		height: 7px;
		margin-left: -3.5px;
		border-radius: 50%;
		background: var(--ic-mf-raw);
		box-shadow: 0 0 9px rgba(98, 255, 226, 0.9);
	}
	.ic-mapflow__card--clean::before {
		content: "";
		position: absolute;
		left: 50%;
		top: -10px;
		width: 0;
		height: 0;
		margin-left: -5px;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 7px solid rgba(167, 118, 255, 0.95);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ic-mapflow__card--raw,
	.ic-mapflow__card--clean,
	.ic-mapflow__engine,
	.ic-mapflow__link path {
		animation: none;
	}
}

/* ---------- Founder avatar (image + initials fallback) ------------------ */
.ic-founder-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(141, 77, 255, 0.55), rgba(98, 255, 226, 0.35));
  border: 2px solid rgba(141, 77, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.18), 0 18px 60px rgba(141, 77, 255, 0.18);
}
.ic-founder-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.ic-founder-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(141, 77, 255, 0.55);
  z-index: 0;
}

/* ---------- Back-to-top FAB --------------------------------------------- */
.ic-fab-back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(141, 77, 255, 0.35);
  background: rgba(11, 11, 26, 0.78);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 28px rgba(141, 77, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
}
.ic-fab-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ic-fab-back-top:hover,
.ic-fab-back-top:focus-visible {
  background: rgba(141, 77, 255, 0.25);
  border-color: rgba(141, 77, 255, 0.7);
  box-shadow: 0 12px 36px rgba(141, 77, 255, 0.45);
  outline: none;
}
.ic-fab-back-top:active { transform: translateY(1px); }
@media (prefers-reduced-motion: reduce) {
  .ic-fab-back-top { transition: opacity 120ms linear; transform: none; }
  .ic-fab-back-top.is-visible { transform: none; }
}
/*# sourceMappingURL=inventacloud.css.map */
/* ---------------------------------------------------------------------------
   Features page — quick filter (features.cfm)
--------------------------------------------------------------------------- */
.ic-feature-filter { max-width: 560px; }
.ic-feature-filter .ph {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ic-muted);
  font-size: 1.1rem;
  pointer-events: none;
}
.ic-feature-filter input.form-control {
  background: var(--ic-glass);
  border: 1px solid var(--ic-border);
  border-radius: 999px;
  color: var(--ic-text);
  padding-left: 2.9rem;
  font-size: 0.95rem;
}
.ic-feature-filter input.form-control::placeholder { color: var(--ic-muted); }
.ic-feature-filter input.form-control:focus {
  background: var(--ic-glass);
  border-color: rgba(98, 255, 226, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(98, 255, 226, 0.12);
  color: var(--ic-text);
  outline: none;
}
/* WebKit's native search-cancel button is invisible on the dark glass —
   keep it, just make it legible. */
.ic-feature-filter input[type="search"]::-webkit-search-cancel-button { opacity: 0.7; }

/* ---------------------------------------------------------------------------
   Accessibility — skip link, focus visibility, reduced motion, contrast
--------------------------------------------------------------------------- */

/* Skip link: visually hidden until it receives keyboard focus, then a
   high-contrast pill pinned top-left above everything (WCAG 2.4.1). */
.ic-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  color: #070a12;
  font-weight: 600;
  text-decoration: none;
}
.ic-skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  outline: 3px solid rgba(98, 255, 226, 0.9);
  outline-offset: 2px;
}

/* Guaranteed-visible keyboard focus on the dark theme — the neon ring is
   consistent across links, buttons, and form fields (WCAG 2.4.7). Mouse
   clicks don't trigger it (:focus-visible only). */
.ic-body a:focus-visible,
.ic-body button:focus-visible,
.ic-body input:focus-visible,
.ic-body select:focus-visible,
.ic-body textarea:focus-visible,
.ic-body [tabindex]:focus-visible {
  outline: 2px solid rgba(98, 255, 226, 0.9);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Decorative motion stops for users who ask for it (WCAG 2.3.3). The IC
   loader spinner is excluded — it communicates a real busy state. */
@media (prefers-reduced-motion: reduce) {
  .ic-neon-text--pulse,
  .ic-hero-svg *,
  .ic-hero-col--raw,
  .ic-hero-col--clean,
  .ic-hero-lines path,
  .ic-hero-engine-dot {
    animation: none !important;
    transition: none !important;
  }
}

/* Bootstrap's dark-theme tertiary text sits below the 4.5:1 contrast floor
   for small text on this near-black backdrop — lift it (WCAG 1.4.3).
   !important required: the utility itself is !important. */
.ic-body .text-body-tertiary {
  color: rgba(255, 255, 255, 0.64) !important;
}

/* ============================================================
   Revamp foundation components (2026-07-17) — plan v3 §2.
   Additive only; nothing above this block was modified.
   ============================================================ */

/* Breadcrumbs */
.ic-breadcrumbs { padding: .5rem 0 0; }
.ic-breadcrumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; font-size: .8125rem; }
.ic-breadcrumbs__item { color: var(--ic-muted, rgba(255,255,255,.55)); }
.ic-breadcrumbs__item + .ic-breadcrumbs__item::before { content: "\203A"; margin: 0 .4rem; opacity: .5; }
.ic-breadcrumbs__item a { color: var(--ic-muted, rgba(255,255,255,.55)); text-decoration: none; }
.ic-breadcrumbs__item a:hover { color: var(--ic-neon-color, #7ef0d4); }
.ic-breadcrumbs__item[aria-current="page"] { color: var(--ic-text, #fff); }

/* Status badges — Available / Beta / Coming Soon / Planned / Illustrative */
.ic-status-badge { display: inline-flex; align-items: center; gap: .3em; padding: .16rem .55rem; border-radius: 999px; font-size: .6875rem; font-weight: 600; letter-spacing: .02em; line-height: 1.4; border: 1px solid var(--ic-border, rgba(255,255,255,.14)); color: var(--ic-text, #fff); background: var(--ic-glass, rgba(255,255,255,.05)); white-space: nowrap; }
.ic-status-badge--available { border-color: rgba(64, 227, 160, .5); color: #6ff0c0; background: rgba(64, 227, 160, .1); }
.ic-status-badge--beta { border-color: rgba(96, 200, 255, .5); color: #8fd8ff; background: rgba(96, 200, 255, .1); }
.ic-status-badge--coming-soon { border-color: rgba(255, 196, 87, .5); color: #ffd58a; background: rgba(255, 196, 87, .1); }
.ic-status-badge--planned { border-color: var(--ic-border, rgba(255,255,255,.2)); color: var(--ic-muted, rgba(255,255,255,.64)); background: rgba(255,255,255,.04); }
.ic-status-badge--illustrative { border-color: rgba(186, 132, 255, .5); color: #cdaaff; background: rgba(186, 132, 255, .1); }

/* PO preview status badges reuse the pill shape */
.ic-po-badge--acknowledged { border-color: rgba(96, 200, 255, .5); color: #8fd8ff; background: rgba(96, 200, 255, .1); }
.ic-po-badge--fulfilled { border-color: rgba(64, 227, 160, .5); color: #6ff0c0; background: rgba(64, 227, 160, .1); }
.ic-po-badge--pending { border-color: rgba(255, 196, 87, .5); color: #ffd58a; background: rgba(255, 196, 87, .1); }

/* Workflow nodes (mockup hero panel) — numbered glass cards, dashed connectors */
.ic-flow { display: flex; flex-direction: column; gap: 1.1rem; list-style: none; margin: 0; padding: 0; counter-reset: icflow; }
.ic-flow__node { position: relative; display: flex; align-items: flex-start; gap: .85rem; padding: 1rem 1.1rem; border-radius: .75rem; }
.ic-flow:not(.ic-flow--row) .ic-flow__node + .ic-flow__node::before { content: ""; position: absolute; left: 2.1rem; top: -1.05rem; height: 1rem; border-left: 2px dashed var(--ic-neon-color, rgba(126,240,212,.5)); opacity: .55; }
.ic-flow__num { display: inline-flex; align-items: center; justify-content: center; min-width: 1.5rem; height: 1.5rem; border-radius: 50%; font-size: .75rem; font-weight: 700; color: var(--ic-bg, #05060d); background: var(--ic-neon-color, #7ef0d4); flex-shrink: 0; margin-top: .15rem; }
.ic-flow__icon { flex-shrink: 0; }
.ic-flow--row { flex-direction: row; flex-wrap: wrap; }
.ic-flow--row .ic-flow__node { flex: 1 1 220px; }
@media (min-width: 992px) {
	.ic-flow--row .ic-flow__node + .ic-flow__node::before { content: ""; position: absolute; left: -1.05rem; top: 50%; width: 1rem; border-top: 2px dashed var(--ic-neon-color, rgba(126,240,212,.5)); opacity: .55; }
}

/* Channel-readiness bars */
.ic-readiness__row { margin-bottom: .8rem; }
.ic-readiness__row:last-child { margin-bottom: 0; }
.ic-readiness__track { height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.ic-readiness__bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--ic-neon-cold, #60c8ff), var(--ic-neon-color, #7ef0d4)); }

/* Integration logo strip */
.ic-logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem; }
.ic-logo-strip__tile { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.1rem; border-radius: .65rem; border: 1px solid var(--ic-border, rgba(255,255,255,.12)); background: var(--ic-glass, rgba(255,255,255,.04)); text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease; }
.ic-logo-strip__tile:hover { border-color: var(--ic-neon-color, #7ef0d4); box-shadow: 0 0 14px var(--ic-glow, rgba(126,240,212,.18)); }
.ic-logo-strip__tile img { display: block; height: 28px; width: auto; }
.ic-logo-strip__name { color: var(--ic-text, #fff); font-weight: 600; font-size: .875rem; }

/* Preview panels (PO table, chat) */
.ic-preview-table { --bs-table-bg: transparent; margin-bottom: 0; }
.ic-preview-table th { color: var(--ic-muted, rgba(255,255,255,.6)); font-weight: 600; border-color: var(--ic-border, rgba(255,255,255,.1)); }
.ic-preview-table td { border-color: var(--ic-border, rgba(255,255,255,.08)); color: var(--ic-text, #fff); vertical-align: middle; }
.ic-chat-preview { display: flex; flex-direction: column; gap: .85rem; }
.ic-chat-preview__msg { display: flex; gap: .65rem; align-items: flex-start; }
.ic-chat-preview__avatar { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0; font-size: .6875rem; font-weight: 700; color: var(--ic-text, #fff); background: rgba(255,255,255,.1); border: 1px solid var(--ic-border, rgba(255,255,255,.14)); }
.ic-chat-preview__avatar--system { color: #6ff0c0; background: rgba(64, 227, 160, .12); border-color: rgba(64, 227, 160, .4); }

/* Marketing images + development asset placeholder */
.ic-marketing-img { max-width: 100%; height: auto; border-radius: .75rem; border: 1px solid var(--ic-border, rgba(255,255,255,.1)); background: var(--ic-card, #0a0c16); }
.ic-asset-pending { display: flex; align-items: center; justify-content: center; width: 100%; border-radius: .75rem; border: 1px dashed var(--ic-border, rgba(255,255,255,.25)); background: repeating-linear-gradient(45deg, rgba(255,255,255,.02), rgba(255,255,255,.02) 12px, rgba(255,255,255,.045) 12px, rgba(255,255,255,.045) 24px); }
.ic-asset-pending__inner { text-align: center; padding: 1rem; }
.ic-asset-pending__inner .ph { font-size: 1.6rem; color: var(--ic-muted, rgba(255,255,255,.4)); }
.ic-asset-pending__name { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .75rem; color: var(--ic-text, #fff); margin-top: .35rem; }
.ic-asset-pending__meta { font-size: .6875rem; color: var(--ic-muted, rgba(255,255,255,.5)); margin-top: .15rem; }

/* Gradient primary CTA (mockup "Start Free" treatment). Like
   .ic-btn-primary / .ic-btn-ghost it sets NO padding, font-size, or
   border-radius — sizing comes from Bootstrap's .btn / .btn-lg /
   .ic-nav-cta so it always matches the buttons rendered beside it. */
.ic-btn-gradient {
  border: none;
  background: linear-gradient(135deg, #6d3df5, #a24df0 55%, #c74df0);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(140, 77, 240, 0.25);
}
.ic-btn-gradient:hover, .ic-btn-gradient:focus-visible {
  color: #fff !important;
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34), 0 0 38px rgba(140, 77, 240, 0.4);
}

/* ============================================================
   V4 homepage (2026-07-17) — hero, pillars, mini previews, footer
   ============================================================ */

/* Purple companion to .ic-neon-text for the hero's second accent */
.ic-neon-text-alt { color: #b78aff; text-shadow: 0 0 18px rgba(162, 77, 240, .45); }

/* Hero workflow panel */
.ic-hero-flow { border-radius: 1rem; }
.ic-hero-flow .ic-flow__node { padding: .8rem 1rem; }

/* Six-pillar summary row */
.ic-pillar { transition: border-color .15s ease, box-shadow .15s ease; }
.ic-pillar:hover, .ic-pillar:focus-visible { border-color: var(--ic-neon-color, #7ef0d4); box-shadow: 0 0 14px var(--ic-glow, rgba(126,240,212,.15)); }
.ic-pillar .fs-10 { font-size: .6875rem; }

/* Mini UI previews (product record, sharing list) — HTML/CSS product
   surfaces used instead of image placeholders (asset priority 3). */
.ic-mini-field { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--ic-border, rgba(255,255,255,.08)); font-size: .8125rem; }
.ic-mini-field:last-child { border-bottom: 0; }
.ic-mini-field span { color: var(--ic-muted, rgba(255,255,255,.55)); }
.ic-mini-field strong { color: var(--ic-text, #fff); font-weight: 600; text-align: right; }
.ic-mini-thumb { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: .5rem; border: 1px solid var(--ic-border, rgba(255,255,255,.12)); background: rgba(255,255,255,.04); color: var(--ic-muted, rgba(255,255,255,.45)); font-size: 1.1rem; }
.ic-mini-thumb--add { border-style: dashed; }
.ic-mini-row { display: flex; align-items: center; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid var(--ic-border, rgba(255,255,255,.08)); }
.ic-mini-row:last-child { border-bottom: 0; }

/* Static (non-link) logo-strip tiles — same look, no hover affordance */
.ic-logo-strip__tile--static:hover { border-color: var(--ic-border, rgba(255,255,255,.12)); box-shadow: none; }

/* New footer columns */
.ic-footer-cols { border-top: 1px solid var(--ic-border, rgba(255,255,255,.08)); }
.ic-footer-cols h2 { font-size: .8125rem; font-weight: 600; color: var(--ic-text, #fff); text-transform: none; letter-spacing: .01em; margin-bottom: .6rem; }
.ic-footer-cols ul { list-style: none; margin: 0; padding: 0; }
.ic-footer-cols li { margin-bottom: .35rem; }
.ic-footer-cols a { color: var(--ic-muted, rgba(255,255,255,.6)); text-decoration: none; font-size: .8125rem; }
.ic-footer-cols a:hover { color: var(--ic-neon-color, #7ef0d4); }

/* Reduced motion: the gradient CTA glow is static already; ensure new
   hover transitions collapse gracefully. */
@media (prefers-reduced-motion: reduce) {
	.ic-pillar, .ic-logo-strip__tile, .ic-btn-gradient { transition: none; }
}

/* ============================================================
   Detail pages (2026-07-17) — integration flow diagram
   ============================================================ */
.ic-flowdiag { display: flex; flex-direction: column; align-items: stretch; gap: .5rem; }
.ic-flowdiag__node { padding: 1rem 1.1rem; border-radius: .75rem; text-align: center; flex: 1 1 0; }
.ic-flowdiag__node .ic-icon { display: inline-flex; margin-bottom: .5rem; }
.ic-flowdiag__node--center { border-radius: .75rem; padding: 1rem 1.1rem; }
.ic-flowdiag__link { align-self: center; width: 2px; height: 1.1rem; border-left: 2px dashed var(--ic-neon-color, rgba(126,240,212,.5)); opacity: .55; }
@media (min-width: 992px) {
	.ic-flowdiag { flex-direction: row; align-items: stretch; gap: .75rem; }
	.ic-flowdiag__link { align-self: center; width: 1.4rem; height: 2px; border-left: 0; border-top: 2px dashed var(--ic-neon-color, rgba(126,240,212,.5)); flex-shrink: 0; }
}
