:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2035;
  --navy-light: #162845;
  --navy-card:  #111F38;
  --teal:       #2DD4C8;
  --yellow:     #F7C52A;
  --blue:       #1863DC;
  --white:      #FFFFFF;
  --off-white:  #E8EDF5;
  --muted:      #7A9BBF;
  --text:       #C8D8EE;
  --nav-w:      68px;
  --nav-w-open: 260px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--navy); color: var(--text); display: flex; min-height: 100vh; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(45,212,200,0.3); border-radius: 4px; }

/* ── MODERN ICON RAIL NAV ── */
nav {
  position: fixed; top: 0; left: 0;
  width: var(--nav-w); height: 100vh;
  background: rgba(7,15,30,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
  z-index: 200;
  transition: width 0.28s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
nav:hover { width: var(--nav-w-open); }

nav::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(45,212,200,0.2) 40%, rgba(24,99,220,0.15) 70%, transparent 100%);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.4rem 1.1rem;
  min-height: 68px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 20px rgba(45,212,200,0.25);
}
.logo-wordmark {
  height: 15px; width: auto; flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
nav:hover .logo-wordmark { opacity: 1; transition-delay: 0.05s; }
.wm {
  font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.01em; color: var(--white); line-height: 1.1;
}
.wm span { color: var(--teal); }
.tag {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

.nav-scroll { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 0.75rem 0 1rem; }
.nav-scroll::-webkit-scrollbar { width: 0; }

.nav-gl {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(122,155,191,0.4);
  padding: 1rem 0 0.3rem 1.15rem;
  white-space: nowrap; overflow: hidden;
  opacity: 0; transition: opacity 0.15s;
}
nav:hover .nav-gl { opacity: 1; transition-delay: 0.05s; }

.nav-link {
  display: flex; align-items: center; gap: 0;
  padding: 0; margin: 0.15rem 0.6rem;
  text-decoration: none; border-radius: 8px;
  color: var(--muted);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap; overflow: hidden;
  position: relative;
}
.nav-link:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.nav-link.active { background: rgba(45,212,200,0.1); color: var(--teal); }

.nl-icon {
  width: 44px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border-radius: 8px;
  transition: all 0.18s;
}
.nav-link.active .nl-icon { color: var(--teal); }

.nl-label {
  flex: 1; font-size: 0.78rem; font-weight: 500;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.18s, transform 0.18s;
  padding-right: 0.6rem;
}
nav:hover .nl-label { opacity: 1; transform: translateX(0); transition-delay: 0.04s; }

.nbadge {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; background: rgba(45,212,200,0.1);
  color: var(--teal); padding: 0.1rem 0.35rem; border-radius: 20px;
  flex-shrink: 0; margin-right: 0.6rem;
  opacity: 0; transition: opacity 0.18s;
}
.nbadge.ai { background: rgba(24,99,220,0.15); color: #6ba4f5; }
nav:hover .nbadge { opacity: 1; transition-delay: 0.06s; }

.nav-link.active::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2.5px; height: 18px;
  background: var(--teal);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(45,212,200,0.6);
}

.nl-tip {
  position: absolute; left: calc(var(--nav-w) + 10px); top: 50%;
  transform: translateY(-50%);
  background: rgba(15,32,53,0.95); border: 1px solid rgba(45,212,200,0.15);
  color: var(--white); font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.7rem; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.12s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 300;
}
nav:not(:hover) .nav-link:hover .nl-tip { opacity: 1; }

.nav-divider {
  height: 1px; margin: 0.5rem 0.6rem;
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  padding: 0.75rem 0.6rem 1.25rem; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.btn-nav {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), #1aada3);
  color: var(--navy); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.65rem; border-radius: 8px; text-decoration: none;
  transition: all 0.2s; white-space: nowrap; overflow: hidden;
  box-shadow: 0 4px 16px rgba(45,212,200,0.2);
}
.btn-nav:hover { background: var(--white); box-shadow: 0 4px 24px rgba(45,212,200,0.35); transform: translateY(-1px); }
.btn-nav .btn-icon { font-size: 1rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.btn-nav .btn-text { opacity: 0; width: 0; transition: opacity 0.18s, width 0.28s; overflow: hidden; }
nav:hover .btn-nav .btn-text { opacity: 1; width: auto; transition-delay: 0.05s; }

/* MOBILE TOP BAR — hidden by default, revealed on mobile */
#mobile-topbar { display: none; }
#nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  z-index: 198;
}

/* MAIN */
.page-wrap { margin-left: var(--nav-w); flex: 1; display: flex; flex-direction: column; min-width: 0; transition: margin-left 0.28s cubic-bezier(0.4,0,0.2,1); }
main { flex: 1; }
section { padding: 6rem 5rem; position: relative; overflow: hidden; }
.sdiv { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(45,212,200,0.12), transparent); }
.kicker { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.kicker::before { content: ''; display: block; width: 22px; height: 2px; background: var(--teal); }
.shead { font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.sbody { font-size: 0.95rem; line-height: 1.8; color: var(--text); max-width: 600px; margin-bottom: 2rem; }
.sbody strong { color: var(--white); }
.sbody-sub { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); max-width: 600px; margin-bottom: 1rem; }
.btn-p { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--teal); color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.8rem 1.6rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-p:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,212,200,0.25); }
.btn-o { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid rgba(45,212,200,0.3); color: var(--teal); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.8rem 1.6rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-o:hover { background: rgba(45,212,200,0.07); border-color: var(--teal); }

/* HERO */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(8,15,29,0.88) 0%, rgba(15,37,64,0.78) 55%, rgba(9,24,40,0.88) 100%), url('../images/hero-top.jpg') center / cover no-repeat; }
#hero::before { content: ''; position: absolute; top: -15%; right: -8%; width: 750px; height: 750px; background: radial-gradient(circle, rgba(45,212,200,0.06) 0%, transparent 68%); pointer-events: none; }
#hero::after { content: ''; position: absolute; bottom: 0; left: 15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(24,99,220,0.07) 0%, transparent 68%); pointer-events: none; }
.hero-eye { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.7rem; }
.hero-eye::before { content: ''; display: block; width: 32px; height: 2px; background: var(--teal); }
h1 { font-family: 'Poppins', sans-serif; font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.0; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem; }
h1 .t { color: var(--teal); }
h1 .y { color: var(--yellow); }
.hero-sub { font-size: 1.05rem; font-weight: 400; line-height: 1.75; color: var(--text); max-width: 560px; margin-bottom: 2.5rem; }
.hero-sub strong { color: var(--white); }
.stats { display: flex; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.stat .n { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat .n span { color: var(--teal); }
.stat .l { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }
.hactions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
@media(max-width: 1024px) {
}

/* TRUST BAND */
#trust {
  position: relative;
  padding: 4rem 5rem;
  text-align: center;
  border-top: 1px solid rgba(45,212,200,0.07);
  border-bottom: 1px solid rgba(45,212,200,0.07);
}
#trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/graphics/projects.jpg') center / cover no-repeat;
  filter: grayscale(1);
  z-index: 0;
}
#trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,12,26,0.88) 0%, rgba(4,12,26,0.82) 50%, rgba(4,12,26,0.92) 100%);
  z-index: 1;
}
#trust > * { position: relative; z-index: 2; }
.trust-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin-bottom: 1rem;
}
.trust-eyebrow::before, .trust-eyebrow::after {
  content: ''; display: block; height: 1px; width: 40px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.trust-eyebrow::after { background: linear-gradient(90deg, var(--teal), transparent); }
.trust-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 0.75rem;
}
.trust-headline span { color: var(--teal); }
.trust-sub {
  font-size: 0.92rem; color: var(--muted); max-width: 520px;
  margin: 0 auto 3rem; line-height: 1.7;
}
.trust-pillars {
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap; max-width: 900px; margin: 0 auto 3rem;
  border: 1px solid rgba(45,212,200,0.1); border-radius: 12px; overflow: hidden;
  background: rgba(45,212,200,0.04);
}
.trust-pillar {
  flex: 1; min-width: 180px; padding: 2rem 1.5rem;
  border-right: 1px solid rgba(45,212,200,0.08);
  transition: background 0.2s;
}
.trust-pillar:last-child { border-right: none; }
.trust-pillar:hover { background: rgba(45,212,200,0.06); }
.tp-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 0.3rem;
}
.tp-num span { color: var(--teal); }
.tp-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
}
.trust-industries {
  display: flex; justify-content: center; align-items: center;
  gap: 0.5rem; flex-wrap: wrap; max-width: 700px; margin: 0 auto;
}
.g2-badges { display: block; margin: 3rem auto 0; max-width: 100%; }
.ti-chip {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--muted); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.35rem 0.85rem; border-radius: 20px;
  transition: all 0.18s;
}
.ti-chip:hover { color: var(--teal); border-color: rgba(45,212,200,0.25); background: rgba(45,212,200,0.05); }
.ti-dot { color: rgba(45,212,200,0.3); font-size: 0.5rem; }

/* ── VECTOR TEASER ── */
#vector-teaser {
  padding-top: 0; padding-bottom: 0;
  background:
    linear-gradient(to bottom,
      #0a1628 0%,
      transparent 22%,
      transparent 78%,
      #0a1628 100%
    ),
    linear-gradient(rgba(10,22,40,0.5), rgba(10,22,40,0.5)),
    url('../images/graphics/vector-wallpaper.png') center / cover no-repeat;
}
.vector-teaser-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 8rem 2rem;
}
.vt-logo { width: 120px; height: auto; object-fit: contain; margin-bottom: 1.25rem; filter: none; }
.vt-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); opacity: 1;
  margin-bottom: 0.75rem;
}
.vt-head {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 1.1rem;
}
.vt-body {
  font-size: 0.95rem; line-height: 1.8; color: var(--text);
  max-width: 440px; margin-bottom: 2rem;
}
.vt-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal); color: var(--navy);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.85rem 1.75rem;
  border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.vt-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.vt-card {
  background: #fff; border-radius: 14px;
  padding: 2rem 2rem; box-shadow: 0 4px 32px rgba(10,22,40,0.08);
  display: flex; flex-direction: column; gap: 0;
}
.vt-card-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.vt-card-row:last-child { border-bottom: none; }
.vt-pill {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.35rem 0.85rem;
  border-radius: 20px; white-space: nowrap; min-width: 110px; text-align: center;
}
.vt-pill.capture { background: rgba(45,212,200,0.12); color: #0d9488; }
.vt-pill.sync    { background: rgba(45,212,200,0.12); color: #0d9488; }
.vt-pill.deliver { background: rgba(45,212,200,0.12); color: #0d9488; }
.vt-pill.ai      { background: rgba(96,165,250,0.12); color: #1863DC; }
.vt-card-desc { font-size: 0.88rem; color: #475569; line-height: 1.4; }
.vt-arrow { font-size: 1rem; color: rgba(10,22,40,0.2); padding: 0.1rem 0 0.1rem 0; text-align: center; }

/* FEATURES */
#features { background: var(--navy-mid); }
.tab-nav { display: flex; margin-bottom: 2.5rem; border: 1px solid rgba(45,212,200,0.12); border-radius: 6px; overflow: hidden; width: fit-content; }
.tab-btn { background: none; border: none; border-right: 1px solid rgba(45,212,200,0.1); cursor: pointer; padding: 0.6rem 1.3rem; font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); transition: all 0.18s; }
.tab-btn:last-child { border-right: none; }
.tab-btn:hover { color: var(--white); background: rgba(45,212,200,0.05); }
.tab-btn.active { background: rgba(45,212,200,0.1); color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.mgrid { display: grid; gap: 1.5px; background: rgba(45,212,200,0.07); border: 1px solid rgba(45,212,200,0.07); border-radius: 8px; overflow: hidden; }
.mgrid.c5 { grid-template-columns: repeat(5, 1fr); }
.mgrid.c3 { grid-template-columns: repeat(3, 1fr); }
.mgrid.c4 { grid-template-columns: repeat(4, 1fr); }
.mc { background: var(--navy-mid); padding: 1.75rem 1.5rem; transition: background 0.18s; position: relative; }
.mc:hover { background: var(--navy-light); }
.mi { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; line-height: 0; }
.mi img { display: block; width: 40px; height: 40px; }
.mt { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.md { font-size: 0.76rem; line-height: 1.6; color: var(--muted); }
.mtag { display: inline-block; margin-top: 0.75rem; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(45,212,200,0.7); background: rgba(45,212,200,0.07); padding: 0.2rem 0.45rem; border-radius: 3px; }

/* FEATURES — tier label & add-ons */
.feat-tier-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(45,212,200,0.6); margin-top: 2rem; margin-bottom: 0; }
.addons-divider { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 3rem; }
.addons-divider-label {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800; letter-spacing: -0.01em;
  text-transform: none; color: var(--yellow);
}
.addons-divider-desc { font-size: 0.88rem; color: var(--muted); margin: 0; max-width: 520px; line-height: 1.7; }
.mgrid-ao { background: rgba(247,197,42,0.04); border-color: rgba(247,197,42,0.08); }

/* UI samples scroll-window */
.ui-window {
  margin: 3rem 0 0;
  border-radius: 8px;
  border: 1px solid rgba(45,212,200,0.07);
  background: rgba(45,212,200,0.07);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 5;
}
.ui-window-img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}
.mc-ao { background: rgba(247,197,42,0.02); }
.mc-ao:hover { background: rgba(247,197,42,0.06); outline: 1px solid rgba(247,197,42,0.18); }
.ao-tag { color: rgba(247,197,42,0.8); background: rgba(247,197,42,0.08); }
.mc-ao .mc-more { color: rgba(247,197,42,0.45); }
.mc-ao:hover .mc-more { color: var(--yellow); }

/* JOBSITE */
#jobsite {
  background: linear-gradient(rgba(5,10,20,0.82) 0%, rgba(5,10,20,0.92) 100%), url('../images/hero-top.jpg') center / cover no-repeat;
  overflow: visible;
  text-align: center;
}
.jdt-center {
  max-width: 700px;
  margin: 0 auto;
}
.jdt-center .sbody { max-width: none; margin-left: auto; margin-right: auto; }
.jdt-center .jt-learn { max-width: none; text-align: left; }
.jdt-subtitle {
  font-size: 1.15rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin: 0 auto 1.5rem;
}
.jt-platform-img { display: block; margin: 3rem auto -6rem; max-width: 100%; }
.platform-foundation { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.5rem; padding: 1.1rem 1.5rem; background: rgba(45,212,200,0.04); border: 1px solid rgba(45,212,200,0.1); border-radius: 8px; }
.pf-wordmark { height: 22px; width: auto; flex-shrink: 0; opacity: 0.7; }
.pf-copy { font-size: 0.76rem; color: var(--muted); margin: 0; line-height: 1.5; }
.jt-platform-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: rgba(45,212,200,0.08); border: 1px solid rgba(45,212,200,0.08); border-radius: 8px; overflow: hidden; margin-top: 2rem; max-width: 920px; }
.tc { background: var(--navy); padding: 1.8rem; transition: background 0.18s; }
.tc:hover { background: var(--navy-light); }
.tic { font-size: 1.4rem; margin-bottom: 0.7rem; display: block; }
.tt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; }
.td { font-size: 0.76rem; line-height: 1.6; color: var(--muted); }

/* JDT ORBIT DIAGRAM */
.jdt-orbit-wrap {
  position: relative;
  height: 900px;
  overflow: visible;
  width: min(960px, 100%);
  margin: 0 auto;
}
.jdt-orbit-svg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 820px;
  overflow: visible;
  pointer-events: none;
}
.jdt-orbit-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: jdtSpin 60s linear infinite;
}
@keyframes jdtSpin { to { transform: rotate(360deg); } }
.jdt-item {
  position: absolute;
  left: calc(50% + 315px * sin(var(--a)));
  top: calc(50% - 308px * cos(var(--a)));
  transform: translate(-50%, -50%);
  text-align: center;
  width: 140px;
  padding: 0.7rem 0.6rem;
  border-radius: 8px;
  cursor: default;
  opacity: 0;
  transition: opacity 0.7s ease var(--delay, 0s), background 0.22s;
  z-index: 2;
}
.jdt-item.visible { opacity: 1; }
.jdt-num {
  display: block;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--teal); opacity: 0.75; margin-bottom: 0.25rem;
}
.jdt-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--white); line-height: 1.35;
}
.jdt-desc {
  font-size: 0.7rem; color: rgba(255,255,255,0.75); line-height: 1.55;
  margin-top: 0.4rem; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.jdt-item:hover { background: rgba(45,212,200,0.08); width: 180px; z-index: 10; }
.jdt-item:hover .jdt-desc { max-height: 200px; opacity: 1; }
.jdt-item.active { background: rgba(45,212,200,0.08); width: 180px; border-color: rgba(45,212,200,0.25); }
.jdt-item.active .jdt-desc { max-height: 200px; opacity: 1; }
@media (max-width: 1100px) {
  .jdt-orbit-wrap { transform: scale(0.8); transform-origin: top center; height: 720px; margin-bottom: -180px; }
}
/* JDT mobile grid (hidden on desktop) */
.jdt-mobile-grid { display: none; }

@media (max-width: 768px) {
  .jdt-orbit-wrap { display: none; }
  .jdt-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin: 1.75rem 0 2rem;
  }
  .jdt-mg-item {
    background: rgba(45,212,200,0.04);
    border: 1px solid rgba(45,212,200,0.12);
    border-radius: 10px;
    padding: 1rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .jdt-mg-item:hover { background: rgba(45,212,200,0.08); border-color: rgba(45,212,200,0.25); }
  .jdt-mg-num {
    font-size: 0.55rem; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal); opacity: 0.8;
    margin-bottom: 0.3rem;
  }
  .jdt-mg-title {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--white); line-height: 1.35;
    margin-bottom: 0.4rem;
  }
  .jdt-mg-desc {
    font-size: 0.7rem; line-height: 1.55; color: var(--muted);
  }
}

/* JOBSITE LEARN TEASER */
.jt-learn { margin-top: 0; max-width: 680px; padding: 2.75rem 3rem 2.5rem; border: 1px solid rgba(45,212,200,0.3); border-radius: 16px; background: rgba(5,10,20,0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.jt-learn-quote { font-size: 1.25rem; font-weight: 700; color: var(--teal); line-height: 1.5; margin-bottom: 1rem; font-style: italic; }
.jt-learn-body { font-size: 0.92rem; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

/* WHO */
#who { background: var(--navy-mid); }
.wgrid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.wc { background: var(--navy-card); border: 1px solid rgba(45,212,200,0.08); border-radius: 10px; padding: 2rem; transition: border-color 0.2s; }
.wc:hover { border-color: rgba(45,212,200,0.22); }
.wt { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.ws { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.wl { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.wl li { font-size: 0.8rem; line-height: 1.55; color: var(--text); display: flex; gap: 0.5rem; }
.wl li::before { content: '→'; color: var(--teal); flex-shrink: 0; font-size: 0.72rem; margin-top: 0.15rem; }

/* VECTOR SHARED */
.vs { background: var(--navy); }
.vs.alt { background: var(--navy-mid); }

/* Per-section photo backgrounds */
#vectorflow {
  background:
    linear-gradient(160deg, rgba(6,14,28,0.91) 0%, rgba(10,21,40,0.86) 50%, rgba(6,14,28,0.93) 100%),
    url('../images/graphics/site-ph-3.jpg') center / cover no-repeat;
}
#vectorsync {
  background:
    linear-gradient(160deg, rgba(8,16,30,0.92) 0%, rgba(13,24,44,0.87) 50%, rgba(8,16,30,0.94) 100%),
    url('../images/graphics/site-ph-1.jpg') center / cover no-repeat;
}
#vectorcast {
  background:
    linear-gradient(160deg, rgba(6,14,28,0.91) 0%, rgba(10,21,40,0.86) 50%, rgba(6,14,28,0.93) 100%),
    url('../images/graphics/site-ph-4.jpg') center / cover no-repeat;
}
#vectorai {
  background:
    linear-gradient(150deg, rgba(5,10,22,0.93) 0%, rgba(8,18,36,0.9) 100%),
    url('../images/graphics/site-ph-5.jpg') center / cover no-repeat;
}
.vl { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.vl.rev { direction: rtl; }
.vl.rev > * { direction: ltr; }
.vbadge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(45,212,200,0.08); border: 1px solid rgba(45,212,200,0.18); padding: 0.38rem 0.8rem; border-radius: 4px; margin-bottom: 1.5rem; }
.vn { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); }
.vs2 { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fl { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }
.fl li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.82rem; line-height: 1.5; color: var(--text); }
.fl li::before { content: '→'; color: var(--teal); font-size: 0.72rem; margin-top: 0.15rem; flex-shrink: 0; }
.vc { background: var(--navy-light); border: 1px solid rgba(45,212,200,0.1); border-radius: 10px; padding: 1.75rem; position: relative; overflow: hidden; }
.vc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue)); }
.vct { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.fr { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.fr:last-child { border-bottom: none; }
.fd { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--teal); box-shadow: 0 0 7px rgba(45,212,200,0.5); }
.fd.y { background: var(--yellow); box-shadow: 0 0 7px rgba(247,197,42,0.45); }
.fd.b { background: var(--blue); box-shadow: 0 0 7px rgba(24,99,220,0.45); }
.flab { font-size: 0.8rem; font-weight: 500; color: var(--off-white); flex: 1; }
.fst { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); background: rgba(45,212,200,0.09); padding: 0.18rem 0.45rem; border-radius: 3px; }
.fst.y { color: var(--yellow); background: rgba(247,197,42,0.09); }
.fst.b { color: #6ba4f5; background: rgba(24,99,220,0.12); }

/* AI */
.ai-glow { position: absolute; top: 20%; right: 5%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(24,99,220,0.09) 0%, transparent 70%); pointer-events: none; }
.ai-card { background: var(--navy-light); border: 1px solid rgba(24,99,220,0.18); border-radius: 10px; padding: 1.75rem; position: relative; overflow: hidden; }
.ai-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.ai-q { background: rgba(24,99,220,0.08); border: 1px solid rgba(24,99,220,0.14); border-radius: 6px; padding: 1rem; margin-bottom: 1rem; font-size: 0.78rem; font-style: italic; color: var(--off-white); line-height: 1.65; }
.ai-r { font-size: 0.78rem; line-height: 1.75; color: var(--text); }
.ai-r .hi { color: var(--teal); font-weight: 600; }

/* TESTIMONIALS */
#testimonials { background: var(--navy-mid); }
.qgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.qc { background: var(--navy-card); border: 1px solid rgba(45,212,200,0.07); border-radius: 8px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.18s; }
.qc:hover { border-color: rgba(45,212,200,0.18); }
.qm { font-family: 'Poppins', sans-serif; font-size: 3.5rem; color: var(--teal); opacity: 0.22; line-height: 1; margin-bottom: -0.5rem; }
.qt { font-size: 0.86rem; line-height: 1.75; color: var(--text); font-style: italic; }
.qa .qn { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.qa .qr { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }

/* BLOG */
#blog { background: var(--navy); }
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.bc {
  background: var(--navy-card); border: 1px solid rgba(45,212,200,0.07);
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.bc:hover { border-color: rgba(45,212,200,0.22); transform: translateY(-4px); }
.bc-img {
  height: 160px; overflow: hidden; position: relative; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(45,212,200,0.08), rgba(24,99,220,0.06));
  display: flex; align-items: center; justify-content: center;
}
.bc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.bc:hover .bc-img img { transform: scale(1.04); }
.bc-img .bc-fallback { font-size: 2.5rem; }
.bc-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px; background: linear-gradient(transparent, var(--navy-card));
  pointer-events: none;
}
.bc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.bc-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); background: rgba(45,212,200,0.08);
  padding: 0.2rem 0.55rem; border-radius: 20px; width: fit-content;
}
.bc-title { font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.bc-excerpt { font-size: 0.78rem; line-height: 1.65; color: var(--muted); flex: 1; }
.bc-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.65rem; color: rgba(122,155,191,0.5); letter-spacing: 0.05em;
  text-transform: uppercase; padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bc-read { color: var(--teal); font-weight: 600; }

/* Skeleton loading */
.bc-skeleton { pointer-events: none; animation: shimmer 1.6s ease infinite; }
.bc-skeleton .bc-img { background: rgba(255,255,255,0.04); }
.bc-skeleton .skel { background: rgba(255,255,255,0.06); border-radius: 4px; }
.bc-skeleton .skel.tag { width: 60px; height: 14px; }
.bc-skeleton .skel.title { width: 90%; height: 16px; margin-bottom: 4px; }
.bc-skeleton .skel.title2 { width: 70%; height: 16px; }
.bc-skeleton .skel.exc { width: 100%; height: 12px; margin-bottom: 4px; }
.bc-skeleton .skel.exc2 { width: 85%; height: 12px; margin-bottom: 4px; }
.bc-skeleton .skel.exc3 { width: 60%; height: 12px; }
.bc-skeleton .skel.meta { width: 40%; height: 10px; }
@keyframes shimmer { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* Blog error */
.blog-error { text-align: center; padding: 3rem; color: var(--muted); font-size: 0.85rem; }
.blog-cta { margin-top: 2.5rem; display: flex; gap: 1rem; }

/* CTA */
#cta { background: linear-gradient(145deg, #080f1d, #0d2040); min-height: 65vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
#cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(45,212,200,0.05) 0%, transparent 70%); pointer-events: none; }
.chead { font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.05; margin-bottom: 1.5rem; }
.csub { font-size: 1rem; line-height: 1.75; color: var(--text); max-width: 560px; margin: 0 auto 2.5rem; }
.cacts { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cfoot { margin-top: 2.5rem; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* PRICING */
#pricing { background: var(--navy-mid); }
.price-toggle { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.pt-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.pt-save {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); background: rgba(45,212,200,0.1); border: 1px solid rgba(45,212,200,0.2);
  padding: 0.15rem 0.45rem; border-radius: 20px;
}
.pt-switch {
  width: 48px; height: 26px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px; position: relative; cursor: pointer;
  transition: background 0.2s, border-color 0.2s; flex-shrink: 0;
}
.pt-switch.on { background: rgba(45,212,200,0.25); border-color: rgba(45,212,200,0.4); }
.pt-thumb {
  display: block; width: 18px; height: 18px; background: var(--muted);
  border-radius: 50%; position: absolute; top: 3px; left: 3px;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), background 0.2s;
}
.pt-switch.on .pt-thumb { transform: translateX(22px); background: var(--teal); }

/* Main platform card */
.pc-main {
  background: var(--navy-card); border: 1px solid rgba(45,212,200,0.2);
  border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; position: relative;
}
.pc-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.pc-main-head {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pc-main-price { text-align: right; flex-shrink: 0; }
.pc-main-body {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 2rem; padding: 2rem 2.5rem; align-items: start;
}
.pc-main-cta { display: flex; flex-direction: column; gap: 0.75rem; }
.pc-tier {
  font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; color: var(--white); letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.pc-desc { font-size: 0.78rem; line-height: 1.55; color: var(--muted); margin-bottom: 1.75rem; }
.pc-price { display: flex; align-items: flex-start; gap: 0.1rem; line-height: 1; }
.pc-curr { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-top: 0.5rem; }
.pc-num {
  font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--white);
  transition: opacity 0.15s;
}
.pc-per { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; }
.pc-billing { font-size: 0.65rem; color: rgba(122,155,191,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.25rem; min-height: 1em; }
.pc-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.pc-list li { font-size: 0.8rem; line-height: 1.5; color: var(--text); display: flex; gap: 0.6rem; align-items: flex-start; }
.pc-list li::before { content: '✓'; color: var(--teal); font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* Add-ons section */
.addon-section { margin-bottom: 1.5rem; }
.addon-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem;
  padding: 1.75rem 2rem; margin-bottom: 1.5px;
  background: rgba(45,212,200,0.03); border: 1px solid rgba(45,212,200,0.1);
  border-radius: 10px 10px 0 0;
}
.addon-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
}
.addon-eyebrow::before { content: ''; display: block; width: 16px; height: 2px; background: var(--teal); }
.addon-subhead { font-size: 0.82rem; color: var(--muted); max-width: 420px; line-height: 1.6; }
.addon-bundle {
  background: var(--navy-card); border: 1px solid rgba(45,212,200,0.14);
  border-radius: 8px; padding: 1.25rem 1.5rem; text-align: center; flex-shrink: 0; min-width: 210px;
}
.addon-bundle-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.addon-bundle-price {
  font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 800;
  color: var(--white); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 0.05rem;
}
.addon-bundle-price span { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.addon-bundle-note {
  font-size: 0.6rem; color: rgba(122,155,191,0.4); letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0.3rem 0 0.75rem;
}
.addon-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5px; background: rgba(45,212,200,0.07);
  border: 1px solid rgba(45,212,200,0.07); border-top: none;
  border-radius: 0 0 10px 10px; overflow: hidden;
}
.addon-card {
  background: var(--navy-card); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.35rem; transition: background 0.18s;
}
.addon-card:hover { background: var(--navy-light); }
.addon-icon { display: block; line-height: 0; margin-bottom: 0.15rem; }
.addon-icon img { display: block; width: 32px; height: 32px; }
.addon-name {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white); margin-top: 0.2rem;
}
.addon-desc-sm { font-size: 0.71rem; line-height: 1.55; color: var(--muted); flex: 1; margin-bottom: 0.6rem; }
.addon-price {
  font-size: 0.85rem; font-weight: 700; color: var(--teal);
  display: flex; align-items: baseline; gap: 0.05rem;
}
.addon-price span { font-size: 0.65rem; color: var(--muted); font-weight: 500; }

/* Enterprise banner */
.pc-enterprise {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: var(--navy-card); border: 1px solid rgba(45,212,200,0.08);
  border-radius: 10px; padding: 1.75rem 2rem; transition: border-color 0.2s;
}
.pc-enterprise:hover { border-color: rgba(45,212,200,0.2); }

/* ANIMS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fu { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.d1{animation-delay:0.1s}.d2{animation-delay:0.22s}.d3{animation-delay:0.36s}.d4{animation-delay:0.5s}

/* ── MODULE DRAWER ── */
.mc { cursor: pointer; }
.mc:hover { background: var(--navy-light); outline: 1px solid rgba(45,212,200,0.18); }
.mc-more { display: block; margin-top: 1rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(45,212,200,0.5); transition: color 0.18s; }
.mc:hover .mc-more { color: var(--teal); }
.mc-page-link { position: absolute; top: 0.75rem; right: 0.75rem; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 5px; color: rgba(45,212,200,0.35); transition: color 0.18s, background 0.18s; z-index: 1; }
.mc-page-link:hover { color: var(--teal); background: rgba(45,212,200,0.1); }
.mc-page-link svg { display: block; }

.mc-platform { cursor: default; background: #0B1A2E; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.65rem; }
.mc-platform:hover { background: #0B1A2E; outline: none; }
.mc-pf-logo { display: block; width: auto; height: 34px; max-width: 85%; opacity: 0.95; }
.mc-pf-stores { display: block; width: 100%; max-width: 200px; height: auto; margin-top: 0.35rem; }
.mc-pf-copy { font-size: 0.72rem; line-height: 1.5; color: var(--muted); margin: 0; max-width: 240px; }
.mc-pf-copy-sub { font-size: 0.68rem; opacity: 0.85; }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,10,20,0.7);
  backdrop-filter: blur(4px);
  z-index: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  width: min(640px, calc(100vw - 2rem));
  max-height: min(92vh, 920px);
  background: var(--navy-card);
  border: 1px solid rgba(45,212,200,0.14);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 610;
  opacity: 0; pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.drawer.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; pointer-events: all;
}

/* Nav arrows inside modal header */
.drawer-nav-group {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
.drawer-nav {
  background: none; border: none; padding: 0;
  cursor: pointer; line-height: 0;
  opacity: 0.85;
  transition: opacity 0.15s, transform 0.15s;
}
.drawer-nav:hover { opacity: 1; transform: scale(1.1); }

.drawer-head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-shrink: 0;
}
.drawer-head-left { flex: 1; min-width: 0; }
.drawer-close {
  background: rgba(255,255,255,0.05); border: none; border-radius: 6px;
  color: var(--muted); cursor: pointer; flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.drawer-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.drawer-icon { font-size: 1.75rem; margin-bottom: 0.65rem; display: block; line-height: 0; }
.drawer-icon img { display: block; width: 44px; height: 44px; }
.drawer-title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.45rem; }
.drawer-tag { display: inline-block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(45,212,200,0.8); background: rgba(45,212,200,0.08); padding: 0.22rem 0.5rem; border-radius: 3px; }
.drawer-body { padding: 1.5rem 1.75rem 1.75rem; color: var(--text); line-height: 1.8; font-size: 0.85rem; flex: 1; overflow-y: auto; }
.drawer-body p { margin: 0 0 1.25rem; }
.drawer-body p.db-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.drawer-body ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.drawer-body ul li { padding-left: 1rem; position: relative; color: var(--text); }
.drawer-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; top: 0.15em; }
.drawer-body ul li strong { color: var(--white); font-weight: 600; }
.db-outcomes { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem 1.25rem; background: rgba(45,212,200,0.05); border-left: 2px solid rgba(45,212,200,0.3); border-radius: 0 4px 4px 0; }
.db-outcomes span { font-size: 0.78rem; color: var(--teal); font-weight: 500; }
.drawer-img { width: 100%; display: block; border-radius: 8px; margin: 0 0 1.5rem; border: 1px solid rgba(255,255,255,0.07); object-fit: cover; }
.db-cta { display: flex; gap: 0.75rem; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.db-cta .btn-p { font-size: 0.74rem; padding: 0.65rem 1.25rem; }
.db-cta .btn-o { font-size: 0.74rem; padding: 0.65rem 1.25rem; }

/* WHITE DRAWER THEME */
.drawer.white { background: #ffffff; border-color: rgba(0,0,0,0.1); }
.drawer.white .drawer-head { border-bottom-color: rgba(0,0,0,0.08); }
.drawer.white .drawer-close { background: rgba(0,0,0,0.05); color: #64748b; }
.drawer.white .drawer-close:hover { background: rgba(0,0,0,0.1); color: #0a1628; }
.drawer.white .drawer-title { color: #0a1628; }
.drawer.white .drawer-tag { color: #0b6e69; background: rgba(45,212,200,0.12); }
.drawer.white .drawer-body { color: #334155; }
.drawer.white .drawer-body p.db-label { color: #0b6e69; }
.drawer.white .drawer-body ul li { color: #334155; }
.drawer.white .drawer-body ul li::before { color: #0b6e69; }
.drawer.white .drawer-body ul li strong { color: #0a1628; }
.drawer.white .drawer-img { border-color: rgba(0,0,0,0.08); }
.drawer.white .db-outcomes { background: rgba(45,212,200,0.08); border-left-color: rgba(45,212,200,0.4); }
.drawer.white .db-outcomes span { color: #0b6e69; }
.drawer.white .db-cta { border-top-color: rgba(0,0,0,0.08); }
.drawer.white .db-cta .btn-o { border-color: rgba(0,0,0,0.18); color: #334155; }
.drawer.white .db-cta .btn-o:hover { border-color: #0a1628; color: #0a1628; }
@media(max-width:768px){ .drawer { max-height: 92vh; } }

/* Modal counter */
.drawer-counter {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; flex-shrink: 0;
}

/* ── DATA LISTS ── */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  background: rgba(45,212,200,0.07);
  border: 1px solid rgba(45,212,200,0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.dl-card {
  background: var(--navy-mid);
  padding: 1.5rem 1.25rem;
  transition: background 0.18s;
}
.dl-card:hover { background: var(--navy-light); }
.dl-card-head {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.85rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dl-icon { display: flex; align-items: center; line-height: 0; flex-shrink: 0; }
.dl-icon img { display: block; width: 22px; height: 22px; }
.dl-name {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--white);
}
.dl-item {
  font-size: 0.68rem; color: var(--muted); line-height: 1.4;
  padding: 0.22rem 0; display: flex; align-items: center; gap: 0.45rem;
}
.dl-item::before {
  content: ''; display: block; flex-shrink: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(45,212,200,0.3);
}
.dl-more {
  margin-top: 0.6rem; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(45,212,200,0.35);
}
@media(max-width:1200px){ .dl-grid { grid-template-columns: repeat(5,1fr); } }
@media(max-width:960px)  { .dl-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px)  { .dl-grid { grid-template-columns: repeat(2,1fr); } }

/* ── FOOTER ── */
footer {
  background: rgba(5,10,20,0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
}
footer .wm span { color: var(--white); }
footer .tag { color: var(--white); }
.ft-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 5rem 3rem;
  align-items: start;
}
.ft-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.ft-logo { display: flex; align-items: center; gap: 0.9rem; }
.ft-tagline { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ft-col { display: flex; flex-direction: column; gap: 0.6rem; }
.ft-col-head {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(122,155,191,0.5);
  margin-bottom: 0.4rem;
}
.ft-link {
  font-size: 0.8rem; color: var(--muted); text-decoration: none;
  transition: color 0.15s;
}
.ft-link:hover { color: var(--white); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem; color: rgba(122,155,191,0.4);
}
@media(max-width:960px){
  .ft-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 2.5rem 2rem; }
  .ft-bottom { padding: 1.25rem 2.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media(max-width:768px){
  .ft-inner { padding: 3rem 2rem 2rem; }
  .ft-bottom { padding: 1.25rem 2rem; }
  .ft-cols { grid-template-columns: repeat(2,1fr); }
}

/* RESPONSIVE */
@media(max-width:1200px){.vl{grid-template-columns:1fr;gap:2.5rem}.vl.rev{direction:ltr}.mgrid.c5{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:960px){.tgrid,.wgrid,.qgrid,.bgrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:960px){
  .pc-main-head{flex-direction:column}
  .pc-main-price{text-align:left}
  .pc-main-body{grid-template-columns:1fr}
  .addon-header{flex-direction:column}
  .addon-grid{grid-template-columns:repeat(2,1fr)}
  .pc-enterprise{flex-direction:column}
}
@media(max-width:768px){
  html, body { overflow-x: hidden; }

  /* ── Mobile top bar ── */
  #mobile-topbar {
    display: flex; align-items: center; justify-content: space-between;
    position: fixed; top: 0; left: 0; right: 0; height: 56px;
    background: rgba(7,15,30,0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 1.25rem; z-index: 201;
  }
  .mobile-nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }

  /* ── Hamburger button ── */
  #nav-hamburger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    padding: 6px; margin: -6px;
  }
  #nav-hamburger span {
    display: block; height: 2px; width: 22px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
    transform-origin: center;
  }
  body.nav-open #nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open #nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  body.nav-open #nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Overlay ── */
  body.nav-open #nav-overlay { display: block; }

  /* ── Sidenav becomes slide-in panel ── */
  nav {
    width: var(--nav-w-open) !important;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    top: 56px !important;
    height: calc(100vh - 56px) !important;
    overflow-y: auto;
  }
  nav:hover { width: var(--nav-w-open) !important; }
  body.nav-open nav { transform: translateX(0); }

  /* Always show all labels when open on mobile */
  nav .nl-label  { opacity: 1 !important; transform: translateX(0) !important; transition: none !important; }
  nav .nav-gl    { opacity: 1 !important; }
  nav .nbadge    { opacity: 1 !important; }
  nav .logo-wordmark { opacity: 1 !important; }
  nav .btn-nav .btn-text { opacity: 1 !important; width: auto !important; }

  /* Hide duplicate logo inside nav panel (topbar already has it) */
  #sidenav .nav-logo { display: none; }

  /* Hide desktop tooltips on mobile */
  .nl-tip { display: none !important; }

  /* ── Page layout ── */
  .page-wrap { margin-left: 0 !important; padding-top: 56px; }
  /* Pages that use nav.js but have no .page-wrap wrapper (blog, post) */
  body > main { padding-top: 56px; }
  section { padding: 3.5rem 1.5rem; }
  .mgrid { grid-template-columns: repeat(2,1fr) !important; }
  .tgrid,.wgrid,.qgrid,.bgrid { grid-template-columns: 1fr; }
}

/* ── VECTOR SUITE INTRO ── */
#vector-suite {
  background:
    linear-gradient(160deg, rgba(6,14,28,0.9) 0%, rgba(13,30,54,0.82) 50%, rgba(6,14,28,0.9) 100%),
    url('../images/graphics/site-ph-2.jpg') center / cover no-repeat;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(45,212,200,0.08);
}
#vector-suite::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(45,212,200,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.vs-intro-wrap {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.vs-logo {
  width: 84px; height: 84px; object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 28px rgba(45,212,200,0.28)) drop-shadow(0 0 56px rgba(247,197,42,0.14));
}
.vs-trio {
  display: flex; align-items: stretch;
  margin-top: 3.5rem;
  max-width: 920px; margin-left: auto; margin-right: auto; width: 100%;
}
.vs-trio-item {
  flex: 1;
  background: rgba(45,212,200,0.03);
  border: 1px solid rgba(45,212,200,0.1);
  border-radius: 10px; padding: 2rem 1.75rem; text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.vs-trio-item:hover {
  border-color: rgba(45,212,200,0.22);
  background: rgba(45,212,200,0.06);
}
.vs-trio-desc {
  font-size: 0.82rem; line-height: 1.65;
  color: var(--muted); margin-top: 0.75rem;
}
.vs-trio-arrow {
  color: rgba(45,212,200,0.22); font-size: 1.4rem;
  padding: 0 1.25rem; flex-shrink: 0;
  display: flex; align-items: center;
}
/* ── VECTOR TEASER RESPONSIVE ── */
@media(max-width:960px){
  .vector-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .vt-body { max-width: 100%; }
}
@media(max-width:768px){
  .vector-teaser-inner { padding: 5rem 1.25rem; }
  .vt-logo { width: 90px; }
  .vt-head { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .vt-card { padding: 1.5rem; }
  .vt-pill { min-width: 90px; font-size: 0.65rem; }
  .vt-card-desc { font-size: 0.82rem; }
}
@media(max-width:480px){
  .vt-card-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .vt-pill { min-width: unset; width: 100%; }
}

@media(max-width:768px){
  .vs-trio { flex-direction: column; }
  .vs-trio-arrow { transform: rotate(90deg); align-self: center; padding: 0.5rem 0; }
}

/* ── VECTORFLOW DIAGRAM ── */
.vf-diagram {
  margin: 3rem auto 1.5rem;
  padding: 0 1rem;
  max-width: 980px;
}
.vf-diag-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 1.75rem;
}
.vf-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .vf-diagram { display: none; }
}

/* VECTORFLOW PILL CAROUSEL */
.vf-pill-track-wrap {
  margin: 3rem 0;
  overflow: hidden;
}
.vf-pill-label {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.vf-pill-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.vf-pill-inner {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: vfScroll 35s linear infinite;
}
.vf-pill-inner:hover {
  animation-play-state: paused;
}
@keyframes vfScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vf-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(45,212,200,0.25);
  background: rgba(45,212,200,0.06);
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.vf-pill:hover {
  border-color: rgba(45,212,200,0.55);
  color: var(--teal);
  background: rgba(45,212,200,0.1);
}

/* PRODUCT SCREENSHOTS STACK */
#features { overflow: visible; }
.ss-section-head { margin-top: 4rem; }
.ss-stack { position: relative; display: flex; justify-content: center; align-items: center; margin-top: 3rem; aspect-ratio: 3 / 2; }
.ss-img { position: absolute; width: 68%; max-width: 820px; height: auto; border-radius: 10px; border: 1px solid rgba(45,212,200,0.13); box-shadow: 0 8px 40px rgba(0,0,0,0.5); display: block; }
.ss-back  { transform: rotate(-4deg) translate(-60px, 30px); z-index: 1; opacity: 0.7; }
.ss-mid   { transform: rotate(2deg) translate(50px, 18px); z-index: 2; opacity: 0.85; }
.ss-front { transform: rotate(0deg) translate(0, 0); z-index: 3; }
@media (max-width: 768px) { .ss-stack { aspect-ratio: 6 / 5; } .ss-img { width: 85%; } }

/* CLAUDE MCP SECTION */
#mcp { }
.mcp-badge { height: 52px; width: auto; display: block; margin-bottom: 3rem; }
.mcp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mcp-pills { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.mcp-pill { background: var(--navy-card); border: 1px solid rgba(45,212,200,0.1); border-radius: 8px; padding: 1.1rem 1.4rem; transition: border-color 0.2s; }
.mcp-pill:hover { border-color: rgba(45,212,200,0.3); }
.mcp-pill-head { font-size: 0.78rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.4rem; }
.mcp-pill-body { font-size: 0.83rem; line-height: 1.7; color: var(--text); }
.mcp-right { position: relative; display: flex; justify-content: center; align-items: center; height: 400px; }
.mcp-screen { position: absolute; width: 75%; max-width: 340px; height: auto; border-radius: 14px; box-shadow: 0 16px 56px rgba(0,0,0,0.55); }
.mcp-screen-back  { transform: rotate(-5deg) translate(-40px, 28px); z-index: 1; opacity: 0.82; }
.mcp-screen-front { transform: rotate(3deg) translate(36px, -22px); z-index: 2; }
.mcp-input-img { width: 100%; max-width: 480px; height: auto; border-radius: 12px; display: block; margin: 1.5rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
@media (max-width: 900px) { .mcp-inner { grid-template-columns: 1fr; } .mcp-right { height: 300px; margin-top: 2rem; } }

/* ═══════════════════════════════════════════
   FEATURE TABS — LIGHT SECTIONS
   ═══════════════════════════════════════════ */

/* Section shells */
.feat-section {
  padding: 5rem;
  color: #0a1628;
  position: relative;
  overflow: visible;
}
.feat-light { background: #edf1f7; }
.feat-warm  { background: #f2ece0; }

.feat-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro */
.feat-intro { margin-bottom: 2.5rem; }
.feat-kicker {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #0b7a74;
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.feat-kicker::before {
  content: ''; display: block; width: 22px; height: 2px; background: #0b7a74;
}
.feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800; color: #0a1628; line-height: 1.18;
  letter-spacing: -0.02em; max-width: 640px;
}

/* Tab navigation */
.feat-tab-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid rgba(10,22,40,0.14);
  margin-bottom: 3rem;
  overflow-x: auto; scrollbar-width: none;
}
.feat-tab-nav::-webkit-scrollbar { display: none; }
.feat-tab {
  background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 600;
  color: rgba(10,22,40,0.4); padding: 0.8rem 1.5rem;
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  white-space: nowrap; transition: color 0.18s, border-color 0.18s;
  letter-spacing: 0.01em;
}
.feat-tab:hover { color: rgba(10,22,40,0.75); }
.feat-tab.active { color: #0a1628; border-bottom-color: #0a1628; }

/* Panel — hidden by default */
.feat-panel {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.feat-panel.active { display: grid; }

/* Text column */
.feat-panel-text {
  display: flex; flex-direction: column; gap: 1.35rem;
}
.feat-h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800; color: #0a1628; line-height: 1.15;
  letter-spacing: -0.025em; margin: 0;
}
.feat-body {
  font-size: 0.95rem; line-height: 1.82;
  color: #4a5568; margin: 0;
}
.feat-elim {
  font-size: 0.78rem; color: rgba(10,22,40,0.48);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(10,22,40,0.1);
  letter-spacing: 0.01em;
}
.btn-feat {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #0a1628; color: #ffffff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border-radius: 40px;
  text-decoration: none; width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.btn-feat:hover { background: #162845; transform: translateY(-1px); }

/* Image column */
.feat-panel-img {
  display: flex; align-items: center; justify-content: center;
}
.feat-panel-img img {
  width: 100%; max-width: 640px; height: auto;
  border-radius: 10px; display: block;
  box-shadow: 0 10px 48px rgba(10,22,40,0.16), 0 2px 8px rgba(10,22,40,0.08);
  border: 1px solid rgba(10,22,40,0.06);
}

/* Warm section — image on LEFT, text on RIGHT */
.feat-warm .feat-panel { grid-template-columns: 1.15fr 1fr; }
.feat-warm .feat-panel-text { order: 2; }
.feat-warm .feat-panel-img  { order: 1; }

/* CTA strip between sections */
.feat-cta-strip {
  background: #ffffff;
  border-top: 1px solid rgba(10,22,40,0.08);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  padding: 2.25rem 5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.feat-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700; color: #0a1628;
  display: flex; align-items: center; gap: 0.5rem;
}
.feat-cta-arrow { color: #2dd4c8; }
.feat-cta-acts { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-feat-demo {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #2dd4c8; color: #0a1628;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem; border-radius: 40px;
  text-decoration: none; transition: opacity 0.18s, transform 0.15s;
}
.btn-feat-demo:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-feat-contact {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #0a1628; color: #ffffff;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem; border-radius: 40px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-feat-contact:hover { background: #162845; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1060px) {
  .feat-panel,
  .feat-warm .feat-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feat-warm .feat-panel-text { order: 0; }
  .feat-warm .feat-panel-img  { order: 0; }
}
@media (max-width: 768px) {
  .feat-section     { padding: 3rem 1.5rem; }
  .feat-cta-strip   { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .feat-tab         { font-size: 0.76rem; padding: 0.7rem 0.9rem; }
  .feat-panel-img img { border-radius: 8px; }
}

/* VECTORAI MCP BLOCK */
.ai-mcp-block { margin-top: 2rem; border: 1px solid rgba(107,164,245,0.2); border-radius: 12px; padding: 1.5rem; background: rgba(24,99,220,0.05); }
.ai-mcp-header { margin-bottom: 1rem; }
.ai-mcp-badge { height: 40px; width: auto; display: block; }
.ai-mcp-lead { font-size: 0.85rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.ai-mcp-lead strong { color: var(--white); }
.ai-mcp-pills { display: flex; flex-direction: column; gap: 0.85rem; }
.ai-mcp-pill { display: flex; gap: 0.9rem; align-items: flex-start; background: rgba(255,255,255,0.03); border: 1px solid rgba(107,164,245,0.12); border-radius: 8px; padding: 1rem 1.1rem; }
.ai-mcp-pill-icon { flex-shrink: 0; color: #6ba4f5; margin-top: 0.1rem; }
.ai-mcp-pill-head { font-size: 0.76rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.ai-mcp-pill-body { font-size: 0.81rem; line-height: 1.65; color: var(--text); }

/* ── PRICING (two-tier rebuild) ──────────────────────────────────────────── */
.ptier-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
@media (max-width: 900px) { .ptier-grid { grid-template-columns: 1fr; } }

.ptier {
  background: var(--navy-card);
  border: 1px solid rgba(45,212,200,0.12);
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.ptier-pro {
  border-color: rgba(45,212,200,0.4);
  box-shadow: 0 12px 40px rgba(45,212,200,0.08);
}

.ptier-head { margin-bottom: 1.5rem; }
.ptier-badge {
  display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.05); padding: 0.3rem 0.65rem; border-radius: 4px;
  margin-bottom: 0.85rem;
}
.ptier-badge-pro { background: rgba(45,212,200,0.12); color: var(--teal); }

.ptier-title {
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.01em; color: var(--white); margin: 0 0 0.5rem;
}
.ptier-tag { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0; }

.ptier-price {
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.5rem;
}
.ptier-price-row { display: flex; align-items: baseline; gap: 0.25rem; color: var(--white); }
.ptier-curr { font-size: 1rem; font-weight: 700; color: var(--muted); }
.ptier-num  { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; }
.ptier-per  { font-size: 0.85rem; color: var(--muted); margin-left: 0.4rem; }
.ptier-billing { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }

.ptier-price-custom .ptier-num { font-size: 2rem; color: var(--teal); }
.ptier-price-custom .ptier-billing { color: var(--muted); }

.ptier-toggle {
  display: inline-flex; padding: 3px; border: 1px solid rgba(45,212,200,0.18);
  border-radius: 8px; background: rgba(0,0,0,0.25); margin-top: 1rem;
}
.ptier-toggle-btn {
  appearance: none; background: transparent; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--muted); padding: 0.5rem 0.95rem; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.ptier-toggle-btn:hover  { color: var(--white); }
.ptier-toggle-btn.active { background: rgba(45,212,200,0.12); color: var(--teal); }
.ptier-save {
  display: inline-block; margin-left: 0.35rem; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.05em; color: var(--yellow); background: rgba(247,197,42,0.12);
  padding: 0.1rem 0.35rem; border-radius: 3px;
}

.ptier-section { margin-bottom: 1.5rem; }
.ptier-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.85rem;
}

.ptier-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.ptier-features li {
  display: grid; grid-template-columns: minmax(140px, 0.4fr) 1fr; gap: 0.85rem;
  font-size: 0.82rem; line-height: 1.55;
}
.ptier-features li strong { color: var(--white); font-weight: 700; }
.ptier-features li span   { color: var(--muted); }
.ptier-features-compact li { grid-template-columns: minmax(160px, 0.4fr) 1fr; }
.ptier-features-compact li span:only-child,
.ptier-features-compact li span {
  font-size: 0.75rem;
}

.ptier-addon-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(45,212,200,0.05); border: 1px solid rgba(45,212,200,0.15);
  padding: 0.8rem 1rem; border-radius: 8px;
}
.ptier-addon-name  { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.ptier-addon-price { font-size: 0.85rem; font-weight: 700; color: var(--teal); }

.ptier-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ptier-chip {
  display: inline-block; font-size: 0.74rem; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,0.06); padding: 0.4rem 0.75rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.04);
}
.ptier-chip-bundle {
  background: rgba(247,197,42,0.08);
  border-color: rgba(247,197,42,0.25);
  color: var(--yellow);
}

.ptier-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: auto; padding: 0.95rem 1.5rem;
  font-size: 0.82rem;
}
.ptier-cta-pro { background: var(--teal); }
