@charset "UTF-8";
/**
 *  analytics.scss — page styles for analytics.html (the software page,
 *  renamed under the Analytics nav label).
 *  Compiled by CodeKit to build/css/analytics.css.
 *  Ported from the v3 prototype (victor.html), Round 102.
 */
/* The ambient backdrop rides _component.ambient.scss (promoted at the
   third consumer, Round 104). */
/* The hero — the ledger behind a two-column stage: copy left, the
   reconstruction instrument right. The scaffold and dark ground come from
   _template.hero.scss; the stage grid and the instrument card are this
   page's designed structure. */
body.analytics section.hero div.content {
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  align-items: center;
  gap: 48px;
}

body.analytics section.hero h1 span.accent {
  color: rgb(127, 202, 219);
}

body.analytics section.hero div.instrument {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  padding: 22px 24px 20px;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}

body.analytics section.hero div.instrument div.heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.analytics section.hero div.instrument div.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(0, 145, 179);
  box-shadow: 0 0 10px rgb(0, 145, 179);
  animation: pulse 2.4s ease infinite;
}

body.analytics section.hero div.instrument p.title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgb(127, 202, 219);
  line-height: 1.5;
}

body.analytics section.hero div.instrument div.body {
  padding-top: 16px;
}

body.analytics section.hero div.instrument canvas {
  position: static;
  cursor: default;
  display: block;
  width: 100%;
  height: 380px;
}

body.analytics section.hero div.instrument canvas.live {
  cursor: crosshair;
}

body.analytics section.hero div.instrument div.states {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: rgba(234, 243, 248, 0.62);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 0.75, 0.25, 1);
}

body.analytics section.hero div.instrument div.states.active {
  opacity: 1;
}

body.analytics section.hero div.instrument div.states span {
  display: flex;
  align-items: center;
  gap: 6px;
}

body.analytics section.hero div.instrument div.states i {
  display: block;
  width: 13px;
  height: 5px;
  border-radius: 2px;
}

body.analytics section.hero div.instrument div.states i.ready {
  background: rgba(140, 158, 174, 0.55);
}

body.analytics section.hero div.instrument div.states i.assigned {
  background: rgba(64, 196, 226, 0.95);
}

body.analytics section.hero div.instrument div.states i.excess {
  background: rgb(255, 108, 14);
}

body.analytics section.hero div.instrument div.footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.analytics section.hero div.instrument div.footer p.note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(234, 243, 248, 0.45);
}

/* The AI announcement bar — deliberately reads as news pinned under the
   hero, not as another page section. Orange per Josh 2026-07-28 ("needs
   more attention"); navy-on-orange = 5.2:1, passes AA. Cyan fails AA both
   directions. Gray fallback if orange proves too loud: background
   #e8edf1, text $navy, the badge stays orange. */
body.analytics section.announcement {
  background: rgb(255, 108, 14);
}

body.analytics section.announcement a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 13px 40px;
  text-decoration: none;
}

body.analytics section.announcement span.badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  background: rgb(0, 43, 73);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  flex: none;
}

body.analytics section.announcement p {
  font-size: 14.5px;
  color: rgb(0, 43, 73);
  margin: 0;
}

body.analytics section.announcement p b {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

body.analytics section.announcement span.go {
  font-size: 13.5px;
  font-weight: 700;
  color: rgb(0, 43, 73);
  white-space: nowrap;
  transition: transform 0.15s cubic-bezier(0.22, 0.75, 0.25, 1);
}

body.analytics section.announcement a:hover span.go {
  transform: translateX(3px);
}

/* The fleet — VR, VX, and VO. */
body.analytics section.fleet {
  padding: 76px 0 0;
}

body.analytics section.fleet div.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.analytics section.fleet div.card {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px -24px rgba(0, 43, 73, 0.3);
  display: flex;
  flex-direction: column;
}

body.analytics section.fleet div.card svg.wordmark {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  color: rgb(0, 43, 73);
}

body.analytics section.fleet div.card p.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  line-height: 1.3;
}

body.analytics section.fleet div.card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: rgb(0, 43, 73);
  margin: 0 0 8px;
  line-height: 1.2;
}

body.analytics section.fleet div.card p {
  font-size: 14.5px;
  color: rgb(91, 107, 122);
}

/* Re-asserted at card-child specificity so the sized paragraph rule above
   cannot inflate the eyebrow (the Round-97 lesson). */
body.analytics section.fleet div.card p.eyebrow {
  font-size: 11px;
}

body.analytics section.fleet p.note {
  text-align: center;
  font-size: 13.5px;
  color: rgb(91, 107, 122);
  max-width: 72ch;
  margin: 26px auto 0;
}

/* The panel — the seven instruments. Same cards as the door pages'
   feature strip, but static (not links) on the page they would link to;
   the shared partial carries anchors, so the styles are scoped here. */
body.analytics section.instruments {
  padding: 64px 0 96px;
}

body.analytics section.instruments div.section-heading {
  margin-bottom: 34px;
}

body.analytics section.instruments div.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

body.analytics section.instruments div.feature {
  flex: 1 1 126px;
  min-width: 118px;
  max-width: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 14px;
  padding: 22px 14px 18px;
  box-shadow: 0 8px 30px -26px rgba(0, 43, 73, 0.3);
}

body.analytics section.instruments div.feature svg {
  width: 30px;
  height: 30px;
  color: rgb(0, 124, 153);
}

body.analytics section.instruments div.feature b {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: rgb(0, 43, 73);
  line-height: 1.25;
}

body.analytics section.instruments div.feature span {
  font-size: 12.5px;
  color: rgb(91, 107, 122);
  line-height: 1.45;
}

/* How Victor thinks — the four pillars (and the operations trio below). */
body.analytics section.method {
  padding: 60px 0 96px;
}

body.analytics div.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

body.analytics div.pillars.triple {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1060px;
  margin: 34px auto 0;
}

body.analytics div.pillar {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 8px 30px -26px rgba(0, 43, 73, 0.3);
}

body.analytics div.pillar p.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

body.analytics div.pillar b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: rgb(0, 43, 73);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body.analytics div.pillar p {
  font-size: 14px;
  color: rgb(91, 107, 122);
}

/* Re-asserted at pillar-child specificity (the Round-97 lesson). */
body.analytics div.pillar p.eyebrow {
  font-size: 11px;
}

/* The navy strips ride _template.strip.scss (promoted at the second
   consumer, Round 103). */
/* The operations screen — the window rides the shared chrome. */
body.analytics section.operations {
  padding: 40px 0 96px;
}

@media (max-width: 980px) {
  body.analytics section.hero div.content {
    grid-template-columns: 1fr;
  }
  body.analytics section.hero div.instrument {
    justify-self: start;
  }
}
@media (max-width: 880px) {
  body.analytics section.announcement a {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 14px 24px;
  }
  body.analytics section.fleet div.cards {
    grid-template-columns: 1fr;
  }
  body.analytics div.pillars {
    grid-template-columns: 1fr;
  }
  body.analytics div.pillars.triple {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.analytics section.hero div.instrument div.states {
    transition: none;
  }
}
