/* Snare — design tokens & base.
   Palette pulled from `assets/snare_final_assets/SNARE_DESIGN_LANGUAGE.md`. Cool-grey
   surfaces with saturated signal-orange as the only accent. Orange used as a *signal*,
   never a theme wash — see the design doc's color discipline. */
:root {
  --bg: #0B0D10;             /* primary app/page surface */
  --bg-2: #111419;           /* card / panel */
  --fg: #D7D9DC;             /* primary text */
  --fg-dim: #8D939A;         /* secondary text */
  --fg-faint: #5A5750;       /* deep background hints */
  --rule: rgba(160, 166, 173, 0.14);
  --rule-strong: rgba(160, 166, 173, 0.28);

  /* Snare ring colour family (used inside the brand mark — exposed as tokens so future
     ring-coded UI elements can share the same scale). */
  --ring-hi: #A0A6AD;
  --ring: #6E737A;
  --ring-lo: #555A61;

  /* Accent system. Three semantic roles — keep CTAs distinct from signal so orange stays
     surgical, per the design doc's "orange = signal, not theme wash" rule:
       --accent          → signal-orange, primary brand (logo accents, italic emphasis,
                           active status, high-signal badges, detection chart line)
       --accent-cta      → ember, call-to-action surfaces (buttons, hover states)
       --accent-incident → oxblood, incident / alert UI only */
  --accent: #FF6A00;
  --accent-cta: #D4622A;
  --accent-hot: #E87A3E;
  --accent-incident: #B8412A;
  --danger: #B8412A;         /* legacy alias — points at incident */

  --serif: 'Newsreader', 'GT Sectra', 'Tiempos Headline', Georgia, serif;
  --sans: 'Inter', 'Söhne', 'Suisse Int\'l', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Berkeley Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  line-height: 1.55;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }

.serif { font-family: var(--serif); letter-spacing: -0.02em; font-weight: 400; }
.mono { font-family: var(--mono); letter-spacing: 0; font-feature-settings: normal; }
.dim { color: var(--fg-dim); }
.faint { color: var(--fg-faint); }
.accent { color: var(--accent); }

.page {
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.prose {
  max-width: 680px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 11, 13, 0.72);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-mark {
  display: inline-block;
  color: var(--fg);
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--fg);
  font-weight: 400;
  line-height: 1;
}
.brand-word em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.nav-links {
  display: flex; gap: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  transition: filter 120ms, border-color 120ms, background 120ms;
  cursor: pointer;
  background: transparent;
}
.nav-cta:hover { border-color: var(--accent); }
.nav-cta-primary,
.nav-cta-primary:hover,
.nav-cta-primary:focus,
.nav-cta-primary:active {
  background-color: var(--accent) !important;
  background-image: none !important;
  border-color: var(--accent) !important;
  color: #0A0B0D !important;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-cta-primary:hover {
  filter: brightness(1.12);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Section scaffolding */
section { position: relative; }
.section-rule {
  border-top: 1px solid var(--rule);
}
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px; background: var(--fg-faint);
  display: inline-block;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Full-bleed video bg */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.85) brightness(0.78);
  opacity: 0.85;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(10,11,13,0.10) 0%, rgba(10,11,13,0.55) 40%, rgba(10,11,13,0.92) 80%),
    linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.35) 30%, rgba(10,11,13,0.85) 100%);
  pointer-events: none;
}
.hero-video-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEgICAwIDAgMCAwIDEgICAwIDAgMCAwIDEgICAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCUyM24pJy8+PC9zdmc+");
}

.hero-inner-v2 {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}
.hero-copy-v2 {
  max-width: 640px;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 28px 0 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.86;
  max-width: 520px;
  margin: 0 0 40px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero feed (small CRM live panel — sits on top of video) */
.hero-feed {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border: 1px solid var(--rule-strong);
  background: rgba(10, 11, 13, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.04) inset;
}
.hero-feed .hero-anim {
  border: none;
  background: transparent;
  height: 100%;
  width: 100%;
  aspect-ratio: auto;
}

/* Inner CRM panel */
.hero-anim {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero-anim-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  z-index: 3;
  background: rgba(10, 11, 13, 0.65);
  backdrop-filter: blur(6px);
}
.hero-anim-header .live-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  display: inline-block;
  margin-right: 8px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 140ms ease;
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #0A0B0D;
  border-color: var(--accent);
}
.btn-primary:hover {
  filter: brightness(1.12);
}
.btn-ghost {
  border-color: var(--rule-strong);
  color: var(--fg);
  background: rgba(10,11,13,0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--fg); }
.btn .arr { transition: transform 140ms; }
.btn:hover .arr { transform: translateX(3px); }

/* Hero stats foot */
.hero-foot {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-strong);
}
.hero-foot-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
}
.hero-foot-item .val {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
}

@media (max-width: 960px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner-v2 { grid-template-columns: 1fr; gap: 40px; }
  .hero-feed { aspect-ratio: 4 / 3.4; }
  .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
}

/* SECTION — number */
.stat-section {
  padding: 160px 0;
  text-align: center;
}
.stat-big {
  font-family: var(--serif);
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 32px 0 24px;
}
.stat-big .unit { color: var(--fg-faint); font-style: italic; }
.stat-caption {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}
.stat-source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  margin-top: 16px;
}
.stat-source a { border-bottom: 1px solid var(--fg-faint); padding-bottom: 1px; }
.stat-source a:hover { color: var(--fg); border-color: var(--fg); }
.stat-counter {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: inline-block;
  padding: 32px 56px 0;
}
.stat-counter .small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 12px;
}
.stat-counter .val {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat-counter .val .unit { color: var(--accent); opacity: 0.6; font-style: italic; font-size: 32px; }

/* SECTION — How it works */
.how-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.how-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 88px;
  align-items: end;
}
.how-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
}
.how-header h2 em { font-style: italic; color: var(--accent); }
.how-header p { color: var(--fg-dim); font-size: 17px; max-width: 480px; margin: 0; }
.frame {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}
.frame:last-child { border-bottom: 1px solid var(--rule); }
.frame-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.frame-num strong {
  color: var(--accent);
  font-weight: 400;
}
.frame-title {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
}
.frame-desc {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
}
.frame-vis {
  min-height: 260px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.frame-example {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--fg-dim);
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  margin-top: 16px;
  white-space: pre-wrap;
  overflow-x: auto;
}
.frame-example .hl { color: var(--accent); }
.frame-example .key { color: var(--fg); }
.frame-example .com { color: var(--fg-faint); }

@media (max-width: 960px) {
  .how-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .frame { grid-template-columns: 1fr; gap: 24px; }
  .frame-vis { min-height: 220px; }
}

/* SECTION — Proof */
.proof-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.proof-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 48px 0 80px;
  font-weight: 300;
}
.proof-quote .mark { color: var(--accent); font-style: italic; }
.proof-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 16px;
  display: block;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.proof-card {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
}
.proof-card:last-child { border-right: none; padding-right: 0; }
.proof-card:not(:first-child) { padding-left: 32px; }
.proof-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 32px;
}
.proof-outcome {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  min-height: 86px;
}
.proof-metric {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex; align-items: baseline; gap: 12px;
}
.proof-metric .num {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.proof-metric .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .proof-card:not(:first-child) { padding-left: 0; }
  .proof-card:last-child { border-bottom: none; }
  .proof-outcome { min-height: auto; }
}

/* SECTION — Trusted by */
.trusted-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}

/* Anonymized sector lockup */
.exemplar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 64px;
}
.exemplar-card {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.exemplar-card:last-child { border-right: none; }
.exemplar-glyph {
  font-style: italic;
  color: var(--accent);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.8;
  letter-spacing: -0.02em;
}
.exemplar-sector {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.exemplar-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Quantitative stamp */
.exemplar-stamp {
  margin-top: 56px;
  padding: 32px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: center;
}
.exemplar-stamp-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.exemplar-stamp-row strong {
  font-style: italic;
  font-size: 38px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.exemplar-stamp-row span {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--fg-dim);
  max-width: 220px;
  line-height: 1.4;
}

/* Redacted case studies */
.exemplar-cases {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-card {
  padding: 44px 36px;
  border-right: 1px solid var(--rule);
}
.case-card:last-child { border-right: none; }
.case-meta { margin-bottom: 18px; }
.case-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 10px;
  display: inline-block;
}
.case-card h3 {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--fg);
  font-weight: 400;
}
.case-card h3 em { color: var(--accent); font-style: italic; }
.case-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.case-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.case-meta-item {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.case-meta-item strong {
  color: var(--fg);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .exemplar-grid { grid-template-columns: repeat(2, 1fr); }
  .exemplar-card:nth-child(odd) { border-right: 1px solid var(--rule); }
  .exemplar-card:nth-child(even) { border-right: none; }
  .exemplar-card:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .exemplar-cases { grid-template-columns: 1fr; }
  .case-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .case-card:last-child { border-bottom: none; }
  .exemplar-stamp { gap: 24px; }
}
.compare-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 56px;
  font-size: 14px;
}
.cmp-table th, .cmp-table td {
  text-align: left;
  padding: 22px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.cmp-table th {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 400;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 16px;
}
.cmp-table th.snare-col { color: var(--accent); }
.cmp-table td.cap { color: var(--fg); font-size: 15px; padding-left: 0; max-width: 360px; line-height: 1.4; }
.cmp-table th:first-child, .cmp-table td:first-child { padding-left: 0; }
.cmp-table .check, .cmp-table .dash, .cmp-table .partial {
  font-family: var(--mono);
  font-size: 14px;
  text-align: center;
  width: 120px;
}
.cmp-table .check { color: var(--fg); }
.cmp-table .check.hot { color: var(--accent); }
.cmp-table .dash { color: var(--fg-faint); }
.cmp-table .partial { color: var(--fg-dim); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.cmp-table tr:hover td { background: rgba(255,255,255,0.012); }

@media (max-width: 760px) {
  .cmp-table { font-size: 13px; }
  .cmp-table th, .cmp-table td { padding: 16px 8px; }
  .cmp-table td.cap { font-size: 13px; max-width: none; }
  .cmp-table .check, .cmp-table .dash, .cmp-table .partial { width: auto; }
}

/* Trapdoor brand mark — hover-revealed spider.
   The default state shows the segmented ring + burrow + faint eyes inside the hatch.
   On hover/focus, the spider slides up from below and the bright eyes on its head fade in,
   while the idle in-burrow eyes fade out. Easing comes from the Snare design language doc. */
.snare-mark {
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
.snare-mark .snare-spider {
  opacity: 0;
  transform: translateY(28px);
  transform-origin: 50% 100%;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), opacity 160ms ease-out;
}
.snare-mark .snare-eyes-idle {
  transition: opacity 160ms ease-out;
}
.snare-mark .snare-eyes-hover {
  transition: opacity 160ms ease-out 80ms;
}
/* Hover applies to the mark itself OR to its containing brand pill — that way both the
   svg AND the wordmark next to it can be the hover surface. */
.snare-mark:hover .snare-spider,
.snare-mark:focus-visible .snare-spider,
.brand:hover .snare-mark .snare-spider {
  opacity: 0.92;
  transform: translateY(0);
}
.snare-mark:hover .snare-eyes-idle,
.snare-mark:focus-visible .snare-eyes-idle,
.brand:hover .snare-mark .snare-eyes-idle {
  opacity: 0;
}
.snare-mark:hover .snare-eyes-hover,
.snare-mark:focus-visible .snare-eyes-hover,
.brand:hover .snare-mark .snare-eyes-hover {
  opacity: 1;
}
/* Honor reduced-motion preferences — no slide, just opacity swap */
@media (prefers-reduced-motion: reduce) {
  .snare-mark .snare-spider {
    transform: none;
    transition: opacity 100ms linear;
  }
}

/* SECTION — Field Reports (threat-actor intel) */
.field-reports-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.report-card {
  padding: 28px 24px 24px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.012);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.report-card:hover {
  border-color: var(--rule-strong);
  background: rgba(255, 255, 255, 0.022);
}
.report-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.report-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-dim);
}
.report-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-faint);
  display: inline-block;
}
.report-status.status-active {
  color: var(--accent);
}
.report-status.status-active .report-status-dot {
  background: var(--accent);
  /* CSS @keyframes can't read CSS custom properties — RGB is hard-coded here to match
     --accent (#FF6A00 = rgb(255,106,0)). If --accent is ever swapped via the tweaks
     panel, the dot color tracks but this pulse aura stays orange. Acceptable for now;
     promote into the dynamic accent-override stylesheet if accent ever needs to be
     truly dynamic in production. */
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5);
  animation: report-pulse 2.4s ease-in-out infinite;
}
.report-status.status-monitoring {
  color: var(--accent-cta);
}
.report-status.status-monitoring .report-status-dot {
  background: var(--accent-cta);
}
.report-status.status-resolved {
  color: var(--fg-faint);
}
.report-date {
  color: var(--fg-faint);
}
.report-title {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--fg);
  margin: 4px 0 0;
}
.report-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.report-tags {
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.report-tags > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: baseline;
}
.report-tags dt {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.report-tags dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  line-height: 1.4;
}
.report-tags dd strong {
  color: var(--accent);
  font-weight: 500;
}
.report-tags dd .dim { color: var(--fg-faint); }
.reports-foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  gap: 16px;
}
.reports-foot-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.reports-foot-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.18s ease;
}
.reports-foot-cta:hover { opacity: 0.7; }
@keyframes report-pulse {
  /* RGB hard-coded to match --accent #FF6A00 — see note above on .report-status-dot. */
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(255, 106, 0, 0); }
}
@media (max-width: 880px) {
  .reports-grid { grid-template-columns: 1fr; }
}

/* SECTION — Contact */
.contact-section {
  padding: 120px 0 80px;
  border-top: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.deploy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 24px 0 28px;
}
.deploy h2 em { font-style: italic; color: var(--accent); }
.deploy-text {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}
.deploy-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.deploy-meta .row {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.deploy-meta .row .k { color: var(--fg-faint); display: block; margin-bottom: 4px; }
.deploy-meta .row .v { color: var(--fg); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.contact-form .h-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 32px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.01em;
  outline: none;
  transition: border-color 140ms, box-shadow 140ms;
}
/* Keyboard focus needs more than a 1px bottom-border color shift on a near-black
   surface — adding a soft accent ring as a focus affordance. */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--accent);
}
.field select option { background: var(--bg); color: var(--fg); }
.field textarea { resize: vertical; min-height: 60px; font-family: var(--sans); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-submit {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}
.contact-success {
  border: 1px solid var(--accent);
  padding: 24px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(212, 98, 42, 0.06);
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 28px; }
}

/* Footer */
.footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer a:hover { color: var(--fg); }
.footer .links { display: flex; gap: 24px; }

/* Section labels & headers */
.sec-head {
  display: flex; flex-direction: column; gap: 10px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.sec-head h2 em { font-style: italic; color: var(--accent); }
.sec-head p {
  color: var(--fg-dim);
  font-size: 17px;
  max-width: 580px;
  margin: 12px 0 0;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Toast / scrub */
.demo-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 32px;
}
.demo-modal-inner {
  width: min(960px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--rule-strong);
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.demo-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: transparent; border: 1px solid var(--rule-strong);
  color: var(--fg);
  width: 32px; height: 32px;
  font-family: var(--mono);
  cursor: pointer;
  z-index: 5;
}
