*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --white: #f5f0e8;
  --black: #0a0a0a;
  --red: #f09020;
  --red-dim: #d07818;
  --mid: #888070;
  --border: #2a2520;
  --border-dark: #1c1c18;
  --f-display: "Fraunces", serif;
  --f-body: "Syne", sans-serif;
  --f-mono: "Syne Mono", monospace;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #0a0a0a;
  color: #f0ebe0;
  font-family: var(--f-body);
  overflow-x: hidden;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: none;
  border: none;
  background: none;
  font-family: var(--f-body);
}

/* CURSOR */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
#cur2 {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 144, 32, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body:has(a:hover) #cur,
body:has(button:hover) #cur {
  width: 6px;
  height: 6px;
  background: #f0ebe0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  border-bottom: 1px solid rgba(240, 144, 32, 0.15);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nlm-cell {
  background: #f0ebe0;
}
.nlm-cell:nth-child(1) {
  background: var(--red);
}
.nlm-cell:nth-child(4) {
  background: var(--red);
}
.nav-wordmark {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f0ebe0;
}
.nav-wordmark span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(240, 235, 224, 0.4);
  transition: color 0.25s;
}
.nav-links a:hover {
  color: #f0ebe0;
}
.nav-pill {
  background: var(--red);
  color: #fff;
  padding: 0.45rem 1.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s;
  display: inline-block;
}
.nav-pill:hover {
  background: var(--red-dim);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
/* LEFT — dark */
.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 3rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  opacity: 0.06;
  pointer-events: none;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--red);
}
.crosshair::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}
.crosshair::after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2.5rem;
}
.hero-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
}
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 100;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f0ebe0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-h1 .hero-h1-line2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-rule {
  width: 2.5rem;
  height: 1px;
  background: #f0ebe0;
  display: inline-block;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
}
.hero-body {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(240, 235, 224, 0.45);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-red {
  background: var(--red);
  color: #0a0a0a;
  padding: 0.8rem 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s;
  display: inline-block;
}
.btn-red:hover {
  background: var(--red-dim);
}
.btn-ghost {
  background: transparent;
  color: #f0ebe0;
  padding: 0.8rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 235, 224, 0.2);
  transition: border-color 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: #f0ebe0;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(240, 144, 32, 0.15);
}
.kpi {
  padding: 1.5rem 0 0;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
}
.kpi:last-child {
  border-right: none;
}
.kpi-n {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 100;
  color: #f0ebe0;
  line-height: 1;
}
.kpi-n b {
  color: var(--red);
  font-style: italic;
  font-weight: 100;
}
.kpi-l {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.4);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* RIGHT — black with halftone */
.hero-r {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-r-top {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* DATA VIZ GRID */
.data-canvas {
  position: relative;
  width: 88%;
  aspect-ratio: 1.3;
}
/* Halftone dot pattern overlay */
.data-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(240, 144, 32, 0.55) 1.5px,
    transparent 1.5px
  );
  background-size: 10px 10px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 60% 40%,
    black 30%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 60% 40%,
    black 30%,
    transparent 80%
  );
  pointer-events: none;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 144, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 144, 32, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.scan-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 144, 32, 0.8) 50%,
    transparent 100%
  );
  animation: scanH 3.5s ease-in-out infinite;
}
@keyframes scanH {
  0% {
    top: 5%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 95%;
    opacity: 0;
  }
}
/* Bounding boxes */
.bbox {
  position: absolute;
  border: 1px solid var(--red);
  z-index: 2;
}
.bbox::before {
  content: attr(data-label);
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  color: var(--red);
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: rgba(10, 10, 10, 0.92);
  padding: 1px 5px;
}
.bbox-conf {
  position: absolute;
  bottom: -18px;
  right: 0;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  color: #6be86a;
  background: rgba(10, 10, 10, 0.92);
  padding: 1px 5px;
  letter-spacing: 0.06em;
}
.bbox-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Corner ticks */
.ct {
  position: absolute;
  width: 10px;
  height: 10px;
}
.ct.tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.ct.tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.ct.bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.ct.br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

/* Side data panel */
.side-data {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(240, 144, 32, 0.1);
  overflow: hidden;
}
.sd-row {
  flex: 1;
  border-bottom: 1px solid rgba(240, 144, 32, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: rgba(240, 144, 32, 0.3);
  letter-spacing: 0.06em;
  transition: all 0.4s;
}
.sd-row.hot {
  color: rgba(240, 144, 32, 0.95);
  background: rgba(240, 144, 32, 0.07);
}
.sd-row.warm {
  color: rgba(240, 144, 32, 0.6);
}

.hero-r-bottom {
  border-top: 1px solid rgba(240, 144, 32, 0.12);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s ease-in-out infinite;
  margin-right: 0.5rem;
  display: inline-block;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.rec-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: rgba(240, 144, 32, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-time {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: rgba(240, 144, 32, 0.4);
  letter-spacing: 0.1em;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  display: flex;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.7rem 2.5rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.45);
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  white-space: nowrap;
}
.marquee-item span {
  color: var(--red);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── PRODUCT SECTION ── */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  min-height: 90vh;
}
.product-l {
  padding: 5rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0a0a0a;
}
.sec-num {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
}
.product-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #f0ebe0;
}
.product-h2 em {
  font-style: italic;
  color: var(--red);
}
.product-body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(240, 235, 224, 0.45);
  max-width: 420px;
  margin-bottom: 3rem;
}
/* Feature list */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(240, 144, 32, 0.12);
}
.feat-row:last-child {
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
.feat-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240, 144, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}
.feat-title {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #f0ebe0;
}
.feat-desc {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(240, 235, 224, 0.45);
}

.product-r {
  background: var(--black);
  display: flex;
  flex-direction: column;
}
/* Big quote */
.product-quote {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border-dark);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pq-text {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 100;
  line-height: 1.35;
  color: #f0ebe0;
  margin-bottom: 2rem;
}
.pq-text em {
  font-style: italic;
  color: var(--red);
}
.pq-source {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(240, 144, 32, 0.35);
  text-transform: uppercase;
}
/* Metrics strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dark);
}
.metric-cell {
  background: var(--black);
  padding: 2rem;
}
.mc-val {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 100;
  color: var(--white);
  line-height: 1;
}
.mc-val em {
  font-style: italic;
  color: var(--red);
}
.mc-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 144, 32, 0.35);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ── VERTICALS ── */
.verticals {
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  overflow: hidden;
}
.vert-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
.vh-l {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
}
.vh-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 100;
  line-height: 1.1;
}
.vh-h2 em {
  font-style: italic;
  color: var(--red);
}
.vh-r {
  padding: 4rem 3rem;
  display: flex;
  align-items: flex-end;
}
.vh-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(240, 235, 224, 0.45);
  max-width: 400px;
}

.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.vert-card {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.vert-card:nth-child(3n) {
  border-right: none;
}
.vert-card:nth-last-child(-n + 3) {
  border-bottom: none;
}
.vert-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vert-card:hover::after {
  width: 3px;
}
.vert-card:hover {
  background: #1a1508;
}
.vc-idx {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.vc-name {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 100;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.vc-desc {
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(240, 235, 224, 0.45);
}
.vc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.vc-tag {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(240, 144, 32, 0.25);
  padding: 0.2rem 0.6rem;
}

/* ── DARK STRIP ── */
.dark-strip {
  background: var(--black);
  color: #f0ebe0;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}
.ds-left {
}
.ds-kicker {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ds-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--red);
}
.ds-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 100;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.ds-h2 em {
  font-style: italic;
  color: var(--red);
}
.ds-body {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(240, 235, 224, 0.45);
  margin-bottom: 2.5rem;
}
.ds-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  align-content: start;
}
.ds-item {
  background: var(--black);
  padding: 2rem;
  border-bottom: 1px solid var(--border-dark);
}
.ds-item-n {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.ds-item-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 100;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.ds-item-desc {
  font-size: 0.76rem;
  line-height: 1.75;
  color: rgba(240, 144, 32, 0.4);
}

/* ── APPROACH ── */
.approach {
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
.approach-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
.ah-l {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
}
.ah-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 100;
  line-height: 1.1;
}
.ah-h2 em {
  font-style: italic;
  color: var(--red);
}
.ah-r {
  padding: 4rem 3rem;
  display: flex;
  align-items: flex-end;
}
.ah-r p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(240, 235, 224, 0.45);
  max-width: 400px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step-card {
  padding: 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  position: relative;
}
.step-card:last-child {
  border-right: none;
}
.step-bg-num {
  font-family: var(--f-display);
  font-size: 8rem;
  font-weight: 100;
  color: rgba(240, 144, 32, 0.06);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.step-num {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.step-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.step-desc {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(240, 235, 224, 0.45);
}

/* ── INSIGHTS ── */
.insights {
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
}
.insights-head {
  padding: 3rem 3rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  padding-bottom: 2rem;
}
.ih-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 100;
}
.ih-h2 em {
  font-style: italic;
  color: var(--red);
}
.ih-link {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
}
.ins-card {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
  transition: background 0.3s;
}
.ins-card:last-child {
  border-right: none;
}
.ins-card:hover {
  background: #1a1508;
}
.ins-type {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ins-type::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--red);
}
.ins-h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 100;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.ins-card.featured .ins-h3 {
  font-size: 1.8rem;
}
.ins-desc {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(240, 235, 224, 0.45);
}
.ins-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 144, 32, 0.12);
  font-family: var(--f-mono);
  font-size: 0.56rem;
  color: rgba(240, 235, 224, 0.45);
  letter-spacing: 0.1em;
}

/* ── CTA ── */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.cta-l {
  background: var(--red);
  color: #0a0a0a;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 100;
  line-height: 1.1;
  color: #0a0a0a;
}
.cta-h2 em {
  font-style: italic;
  color: rgba(10, 10, 10, 0.5);
}
.cta-sub {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.65);
  max-width: 360px;
  margin-top: 2rem;
}
.cta-bullets {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cta-bullet {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: rgba(10, 10, 10, 0.75);
}
.cta-bullet::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.4);
  flex-shrink: 0;
}
.cta-r {
  background: #0a0a0a;
  color: #f0ebe0;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(240, 144, 32, 0.12);
}
.cta-form-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(240, 144, 32, 0.4);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240, 144, 32, 0.18);
  color: #f0ebe0;
  padding: 1rem 0;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  margin-bottom: 1rem;
}
.cta-field::placeholder {
  color: rgba(240, 235, 224, 0.28);
}
.cta-field:focus {
  border-bottom-color: var(--red);
}
.cta-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240, 144, 32, 0.18);
  color: rgba(240, 235, 224, 0.45);
  padding: 1rem 0;
  font-family: var(--f-body);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 1.5rem;
  -webkit-appearance: none;
}
.cta-select option {
  background: #111008;
}
.btn-submit {
  background: var(--red);
  color: #0a0a0a;
  padding: 0.9rem 2.2rem;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: background 0.25s;
}
.btn-submit:hover {
  background: var(--red-dim);
}

/* ── FOOTER ── */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(240, 144, 32, 0.12);
}
.foot-col {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(240, 144, 32, 0.12);
}
.foot-col:last-child {
  border-right: none;
}
.foot-brand {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.foot-brand span {
  color: var(--red);
}
.foot-tagline {
  font-size: 0.72rem;
  color: rgba(240, 235, 224, 0.45);
  line-height: 1.6;
}
.foot-head {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.45);
  margin-bottom: 1rem;
}
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.foot-links a {
  font-size: 0.78rem;
  color: rgba(240, 235, 224, 0.6);
  transition: color 0.25s;
}
.foot-links a:hover {
  color: var(--red);
}
.foot-copy {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  color: rgba(240, 235, 224, 0.45);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* SCROLL FADE */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* HALFTONE BG — decorative, sits behind hero-r content */
.hero-r-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-r-halftone::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -60px;
  right: -60px;
  background-image: radial-gradient(
    circle,
    rgba(240, 144, 32, 0.6) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  border-radius: 50%;
  mask-image: radial-gradient(
    ellipse 80% 80% at 60% 40%,
    black 35%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 60% 40%,
    black 35%,
    transparent 75%
  );
}
.hero-r-halftone::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -30px;
  background-image: radial-gradient(
    circle,
    rgba(240, 144, 32, 0.4) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 70%
  );
}

/* Square marker dots (like reference image corners) */
.sq-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sq-markers span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(240, 235, 224, 0.5);
}

/* ============================================================
   PREDICTERA — RESPONSIVE ADDITIONS
   Paste this block just before </style> in the existing code
   ============================================================ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 1.5rem;
    height: 56px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-l {
    padding: 3rem 1.5rem 2.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
    min-height: 80vh;
  }

  .hero-r {
    min-height: 50vh;
  }

  .hero-r-top {
    padding: 2rem 1.5rem;
  }

  .data-canvas {
    width: 95%;
  }

  .product {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-l {
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
    padding: 3rem 1.5rem;
  }

  .product-r {
    border-bottom: none;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .vert-header {
    grid-template-columns: 1fr;
  }

  .vh-l {
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
    padding: 3rem 1.5rem 2rem;
  }

  .vh-r {
    padding: 2rem 1.5rem 3rem;
  }

  .vert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vert-card:nth-child(3n) {
    border-right: 1px solid rgba(240, 144, 32, 0.12);
  }

  .vert-card:nth-child(2n) {
    border-right: none;
  }

  .vert-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .dark-strip {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .ds-right {
    grid-template-columns: 1fr 1fr;
  }

  .approach-head {
    grid-template-columns: 1fr;
  }

  .ah-l {
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
    padding: 3rem 1.5rem 2rem;
  }

  .ah-r {
    padding: 2rem 1.5rem 3rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:nth-child(2) {
    border-right: none;
  }

  .step-card:nth-child(3) {
    border-right: 1px solid rgba(240, 144, 32, 0.12);
    border-top: 1px solid rgba(240, 144, 32, 0.12);
  }

  .step-card:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(240, 144, 32, 0.12);
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .ins-card {
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  }

  .ins-card:last-child {
    border-bottom: none;
  }

  .cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-l {
    padding: 4rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(240, 144, 32, 0.12);
  }

  .cta-r {
    padding: 3rem 1.5rem;
    border-left: none;
  }

  footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-col:nth-child(2) {
    border-right: none;
  }

  .foot-col:nth-child(3) {
    border-top: 1px solid rgba(240, 144, 32, 0.12);
  }

  .foot-col:nth-child(4) {
    border-top: 1px solid rgba(240, 144, 32, 0.12);
  }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  nav {
    padding: 0 1.2rem;
    height: 54px;
  }

  .nav-pill {
    padding: 0.38rem 1rem;
    font-size: 0.62rem;
  }

  .hero-l {
    padding: 2.5rem 1.2rem 2rem;
    min-height: auto;
  }

  .hero-tag {
    font-size: 0.56rem;
  }

  .hero-body {
    font-size: 0.8rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .btn-red,
  .btn-ghost {
    padding: 0.7rem 1.5rem;
    font-size: 0.65rem;
  }

  .hero-kpis {
    grid-template-columns: repeat(3, 1fr);
  }

  .kpi-n {
    font-size: 1.8rem;
  }

  .kpi-l {
    font-size: 0.55rem;
  }

  .hero-r {
    min-height: 360px;
  }

  .hero-r-top {
    padding: 1.5rem 1rem;
  }

  .data-canvas {
    width: 100%;
    aspect-ratio: 1.1;
  }

  .hero-r-bottom {
    padding: 1rem 1.2rem;
  }

  .vert-grid {
    grid-template-columns: 1fr;
  }

  .vert-card {
    border-right: none !important;
  }

  .vert-card:nth-last-child(-n + 1) {
    border-bottom: none;
  }

  .dark-strip {
    padding: 3rem 1.2rem;
  }

  .ds-right {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    border-right: none !important;
    border-top: 1px solid rgba(240, 144, 32, 0.12);
  }

  .step-card:first-child {
    border-top: none;
  }

  .insights-head {
    padding: 2rem 1.2rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .ins-card {
    padding: 2rem 1.2rem;
  }

  .product-l {
    padding: 2.5rem 1.2rem;
  }

  .product-quote {
    padding: 2.5rem 1.2rem;
  }

  .metric-cell {
    padding: 1.5rem 1.2rem;
  }

  .cta-l,
  .cta-r {
    padding: 3rem 1.2rem;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .foot-col {
    border-right: none !important;
    border-top: 1px solid rgba(240, 144, 32, 0.12);
    padding: 2rem 1.2rem;
  }

  .foot-col:first-child {
    border-top: none;
  }

  .vh-l {
    padding: 2.5rem 1.2rem 2rem;
  }

  .vh-r {
    padding: 1.5rem 1.2rem 2.5rem;
  }

  .ah-l {
    padding: 2.5rem 1.2rem 2rem;
  }

  .ah-r {
    padding: 1.5rem 1.2rem 2.5rem;
  }

  .step-card {
    padding: 2rem 1.2rem;
  }

  .vert-card {
    padding: 2rem 1.2rem;
  }

  .marquee-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.56rem;
  }

  /* Hamburger menu button (visible on mobile) */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: none;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .nav-hamburger span {
    width: 20px;
    height: 1.5px;
    background: rgba(240, 235, 224, 0.6);
    display: block;
    transition: background 0.2s;
  }

  .nav-hamburger:hover span {
    background: #f0ebe0;
  }
}

/* ── MOBILE NAV OVERLAY ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: none;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 20px;
  height: 1.5px;
  background: rgba(240, 235, 224, 0.6);
  display: block;
  transition: background 0.2s;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-size: 1.4rem;
  font-family: var(--f-display);
  font-weight: 100;
  color: rgba(240, 235, 224, 0.6);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.mobile-nav-overlay a:hover {
  color: #f0ebe0;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: rgba(240, 235, 224, 0.4);
  background: none;
  border: none;
  cursor: none;
  text-transform: uppercase;
}

.mobile-nav-close:hover {
  color: var(--red);
}

@media (max-width: 1024px) {
  .nav-hamburger {
    display: flex;
  }
}
