/* Vidette brand theme — applied to marketing site */

:root {
  --navy-deep: #0a1f3d;
  --navy: #0f2a52;
  --navy-mid: #163a72;
  --navy-glow: #1f5aa8;
  --cyan: #2bb8ff;
  --cyan-bright: #5ed4ff;
  --cyan-pale: #cfeeff;
  --lime: #7dd957;
  --lime-bright: #a7eb7c;
  --paper: #f6f9fc;
  --ink: #0a1f3d;
  --ink-soft: #3b4a63;
  --ink-faint: #7a8699;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --max: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-deep);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }

/* === Page wrappers === */
.page { max-width: var(--max); margin: 0 auto; }

/* === Top nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  gap: 24px;
}
.nav .wm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav .wm svg { width: 28px; height: 28px; }
.nav .wm span {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.7px;
  color: #fff;
}
.nav .links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
}
.nav .links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s;
}
.nav .links a:hover { color: rgba(255,255,255,0.95); text-decoration: none; }
.nav .links a.active { color: #fff; }
.nav .links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.nav .cta { display: flex; gap: 10px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.1px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: transform 0.1s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); filter: brightness(1.05); }
.btn.primary { background: var(--lime); color: var(--navy-deep); box-shadow: 0 0 28px rgba(125,217,87,0.55), 0 0 1px rgba(167,235,124,0.6) inset; }
.btn.secondary { background: var(--cyan); color: var(--navy-deep); box-shadow: 0 0 24px rgba(43,184,255,0.35); }
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn.outline-cyan { background: transparent; color: var(--cyan-bright); border: 1px solid rgba(43,184,255,0.5); }
.btn.lg { padding: 14px 26px; font-size: 14px; }
.btn.sm { padding: 8px 14px; font-size: 12px; }

/* === Sections === */
/* Full-width band; content centered via responsive horizontal padding so that
   content column matches the 1280px artboard while backgrounds (hero glow,
   particles, trust strip) bleed edge-to-edge on wide monitors. */
.sec {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(56px, calc((100% - var(--max)) / 2 + 56px));
  padding-right: max(56px, calc((100% - var(--max)) / 2 + 56px));
  position: relative;
}
.sec.tight { padding-top: 56px; padding-bottom: 56px; }
.sec.tighter { padding-top: 40px; padding-bottom: 40px; }
.dark2-band {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #060e20 50%, var(--navy-deep) 100%);
  position: relative;
}
.dark2-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(56px, calc((100% - var(--max)) / 2 + 56px));
  padding-right: max(56px, calc((100% - var(--max)) / 2 + 56px));
  position: relative;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow.lime { color: var(--lime-bright); }

h1.h1, .h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.h1 b { font-weight: 700; }
.h1 .accent { color: var(--cyan-bright); font-weight: 700; }
.h1 .accent.lime { color: var(--lime-bright); }

h2.h2, .h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
h3.h3, .h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
  color: #fff;
}
.lede {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

/* === Cards === */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.card.glow {
  background: linear-gradient(160deg, rgba(43,184,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(43,184,255,0.25);
}
.card.lime-glow {
  background: linear-gradient(160deg, rgba(125,217,87,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(125,217,87,0.25);
}

.icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(43,184,255,0.12);
  border: 1px solid rgba(43,184,255,0.3);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.icon-tile.lime { background: rgba(125,217,87,0.12); border-color: rgba(125,217,87,0.3); color: var(--lime-bright); }
.icon-tile.sm { width: 28px; height: 28px; border-radius: 8px; font-size: 11px; font-family: 'JetBrains Mono', monospace; margin-bottom: 0; flex-shrink: 0; }

/* === Chips === */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  background: rgba(43,184,255,0.10);
  color: var(--cyan-bright);
  border: 1px solid rgba(43,184,255,0.25);
  cursor: pointer;
  user-select: none;
}
.chip.lime { background: rgba(125,217,87,0.10); color: var(--lime-bright); border-color: rgba(125,217,87,0.3); }
.chip.ghost { background: transparent; color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }

/* === Inputs === */
.input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #fff;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input::placeholder { color: rgba(255,255,255,0.35); }
.input:focus, .input.focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(43,184,255,0.18); color: #fff; }
textarea.input { min-height: 90px; padding-top: 12px; resize: vertical; font-family: inherit; line-height: 1.5; }
.field-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* === Footer === */
.foot {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy-deep) 0%, #050b18 100%);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 56px 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin: 0 0 14px;
}
.foot a, .foot .link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.foot a:hover { color: rgba(255,255,255,0.95); text-decoration: none; }
.foot-bar {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* hero glow background — symmetric base gradient so hero meets nav above and
   the next band below at the same color (--navy-deep), no harsh bands. */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 35%, rgba(43,184,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 30% 70%, rgba(125,217,87,0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

/* BulbSignal — dashed pulses travel outward along each signal arc so the
   bulb broadcasts data rightward into the network. */
@keyframes bulb-signal-flow {
  to { stroke-dashoffset: -32; }
}
.signal-arcs path {
  stroke-dasharray: 2 30;
  animation: bulb-signal-flow 2s linear infinite;
}
.signal-arcs path:nth-child(3n) {
  animation-duration: 2.6s;
  animation-delay: -0.6s;
}
.signal-arcs path:nth-child(3n+1) {
  animation-duration: 1.7s;
  animation-delay: -0.3s;
}

/* particles overlay (decorative) */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particles svg { width: 100%; height: 100%; }

/* segmented control */
.seg {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px;
  flex-wrap: wrap;
}
.seg .opt {
  padding: 7px 16px;
  font-size: 12px;
  border-radius: 99px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}
.seg .opt:hover { color: rgba(255,255,255,0.9); }
.seg .opt.on {
  background: var(--cyan);
  color: var(--navy-deep);
  font-weight: 600;
}

/* divider rule */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* gradient connector (used in flow steps) */
.connector {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

/* utility grids and rows */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.row { display: flex; }
.row-gap { display: flex; gap: 12px; flex-wrap: wrap; }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* trust strip — full-width band, content centered via responsive padding */
.trust-strip {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: max(56px, calc((100% - var(--max)) / 2 + 56px));
  padding-right: max(56px, calc((100% - var(--max)) / 2 + 56px));
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-strip .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.trust-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  white-space: nowrap;
}

/* Two-up flow step */
.flow-step {
  position: relative;
  padding: 0 16px;
}
.flow-step .step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--cyan-bright);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.flow-step .step-tile {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(43,184,255,0.12);
  border: 1px solid rgba(43,184,255,0.4);
  color: var(--cyan-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 14px;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-inner { padding: 14px 28px; }
  .sec, .dark2-inner { padding: 56px 28px; }
  .sec.tight { padding: 40px 28px; }
  .foot-inner { padding: 40px 28px 24px; grid-template-columns: 1fr 1fr 1fr; }
  .trust-strip { padding: 18px 28px; }
  .h1 { font-size: 48px; letter-spacing: -1.4px; }
  .h2 { font-size: 28px; }
}
@media (max-width: 760px) {
  .nav .links { display: none; }
  .nav-inner { padding: 14px 20px; }
  .sec, .dark2-inner { padding: 48px 20px; }
  .foot-inner { padding: 32px 20px 20px; grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-strip { padding: 14px 20px; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .grid-6.compact { grid-template-columns: 1fr 1fr; }
  .h1 { font-size: 38px; letter-spacing: -1px; }
  .h2 { font-size: 24px; }
  .lede { font-size: 15px; }
  .foot-bar { flex-direction: column; gap: 6px; }
  .stack-on-mobile { grid-template-columns: 1fr !important; }
  .hide-on-mobile { display: none; }
}
@media (max-width: 480px) {
  .nav .cta { display: none; }
}
