
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("assets/fonts/3AF2BA_1_0.woff2") format("woff2");
  font-weight: 300 400; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Pro";
  src: url("assets/fonts/DINNextLTPro-Regular.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Pro";
  src: url("assets/fonts/3AF2BA_2_0.woff2") format("woff2");
  font-weight: 600 800; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "Affect";
  src: url("assets/fonts/3AF2BA_0_0.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* =========================================================
   ENCODA — DNA Script landing page
   Design tokens
   ========================================================= */
:root {
  --navy-900: #0e1235;
  --navy-800: #121740;
  --navy-700: #1a2050;
  --ink: #1b2145;
  --coral: #ff5843;
  --coral-bright: #ff6f52;
  --coral-soft: #fbe9e4;
  --coral-tint: #fdf2ef;
  --text: var(--navy-900);
  --text-muted: #6a6d79;
  --white: #ffffff;
  --paper: #f4f5f8;
  --paper-2: #eceef3;
  --line: #e2e5ee;
  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 30px 70px -30px rgba(10, 15, 44, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "DIN Next LT Pro", "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Affect", "DIN Next LT Pro", "Barlow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.bl-wrap { width: 100%; max-width: 1350px; margin: 0 auto; padding: 0 32px; }
.bl-center { text-align: center; }
.bl-accent { color: var(--coral); }

/* =========================================================
   Buttons
   ========================================================= */
.bl-btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .5s ease, box-shadow .25s var(--ease), color .5s ease;
  will-change: transform;
  text-decoration: none;
}
.bl-btn:hover { transform: translateY(-2px); }
.bl-btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: 11px; }
.bl-btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -10px rgba(255, 88, 67, 0.8); }
.bl-btn-primary:hover { background: #fff; color: var(--navy-900); }
.bl-btn-ghost { color: #fff; background: rgba(255,255,255,0.08); }
.bl-btn-ghost:hover { color: var(--coral); background: rgba(255,255,255,0.14); }
.bl-btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.bl-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.bl-btn-block-sm { align-self: flex-start; }
.bl-arrow-down { display: inline-block; transition: transform .3s var(--ease); }
.bl-btn-ghost:hover .bl-arrow-down { transform: translateY(3px); }

/* =========================================================
   Section kickers / shared type
   ========================================================= */
.bl-section-kicker {
  color: var(--coral); font-size: 16px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 14px;
}
.bl-eyebrow {
  color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 20px;
}

/* =========================================================
   Header
   ========================================================= */
.bl-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0; transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.bl-site-header.bl-scrolled {
  background: rgba(10, 15, 44, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.bl-header-inner { display: flex; align-items: center; justify-content: space-between; }
.bl-brand { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.bl-brand-logo { height: 15px; width: auto; display: block; }
.bl-brand-name { color: var(--coral); font-size: 22px; font-weight: 800; letter-spacing: 0.12em; }
.bl-main-nav { display: flex; align-items: center; gap: 30px; }
.bl-nav-link {
  color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  position: relative; padding: 4px 0; transition: color .2s;
}
.bl-nav-link:not(.bl-btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.bl-nav-link:hover:not(.bl-btn), .bl-nav-link.bl-is-active { color: var(--coral); }
.bl-nav-link.bl-is-active::after, .bl-nav-link:hover:not(.bl-btn)::after { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.bl-hero-pin {
  position: relative; height: calc(100vh + 60vh);
  --cover-hold: 0vh; --cover-reveal: 60vh;
}
.bl-hero {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden; background: var(--navy-900);
  --glow-x: 68%; --glow-y: 40%;
}
.bl-hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-key-noglow.jpg") no-repeat top / cover;
  opacity: 0;
  animation: heroFadeIn 1.8s ease .2s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; } }

.bl-hero-glow {
  position: absolute; z-index: 1; pointer-events: none;
  left: var(--glow-x); top: var(--glow-y);
  width: clamp(220px, 26vw, 460px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: heroGlowIn 1.6s ease 1.3s forwards;
}
@keyframes heroGlowIn { to { opacity: 1; } }
.bl-hero-glow-core {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,140,100,0.8) 0%,
    rgba(255,88,67,0.5) 26%,
    rgba(255,88,67,0.22) 48%,
    rgba(255,88,67,0.07) 70%,
    transparent 100%);
  filter: blur(clamp(18px, 3.2vw, 46px));
  animation: heroGlowPulse 4.5s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.bl-hero-particles {
  position: absolute; z-index: 1; pointer-events: none;
  left: 48%; top: 4%; width: 48%; height: 92%;
  opacity: 0; animation: heroGlowIn 2s ease 1.6s forwards;
}
.bl-hero-particles span {
  position: absolute; display: block; border-radius: 50%;
  width: var(--s, 3px); height: var(--s, 3px);
  left: var(--x); top: var(--y);
  background: rgba(255, 176, 150, 0.9);
  box-shadow: 0 0 6px 1px rgba(255,140,100,0.6);
  animation: particleFloat var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
}
.bl-hero-particles span:nth-child(1)  { --x:12%;  --y:18%; --s:3px; --dur:6.5s; --delay:.2s; }
.bl-hero-particles span:nth-child(2)  { --x:34%;  --y:8%;  --s:2px; --dur:8s;   --delay:1.1s; }
.bl-hero-particles span:nth-child(3)  { --x:52%;  --y:24%; --s:4px; --dur:7.2s; --delay:.6s; }
.bl-hero-particles span:nth-child(4)  { --x:68%;  --y:12%; --s:2px; --dur:9s;   --delay:2s; }
.bl-hero-particles span:nth-child(5)  { --x:8%;   --y:46%; --s:3px; --dur:6s;   --delay:1.6s; }
.bl-hero-particles span:nth-child(6)  { --x:44%;  --y:52%; --s:2px; --dur:7.8s; --delay:.4s; }
.bl-hero-particles span:nth-child(7)  { --x:76%;  --y:40%; --s:3px; --dur:8.4s; --delay:1.3s; }
.bl-hero-particles span:nth-child(8)  { --x:26%;  --y:64%; --s:2px; --dur:6.8s; --delay:2.4s; }
.bl-hero-particles span:nth-child(9)  { --x:58%;  --y:70%; --s:3px; --dur:7.6s; --delay:.9s; }
.bl-hero-particles span:nth-child(10) { --x:82%;  --y:62%; --s:2px; --dur:9.4s; --delay:1.8s; }
.bl-hero-particles span:nth-child(11) { --x:16%;  --y:82%; --s:2px; --dur:7s;   --delay:.1s; }
.bl-hero-particles span:nth-child(12) { --x:64%;  --y:86%; --s:3px; --dur:8.8s; --delay:2.6s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: .25; }
  50%      { transform: translateY(-16px) translateX(4px); opacity: .9; }
}


@media (max-width: 1100px) {
  .bl-hero { --glow-x: 76%; --glow-y: 35%; }
}

@media (max-width: 900px) {
  .bl-hero { --glow-x: 56%; --glow-y: 35%; }
}
@media (prefers-reduced-motion: reduce) {
  .bl-hero-glow-core, .bl-hero-particles span { animation: none; }
  .bl-hero-glow, .bl-hero-particles { opacity: 1; }
}
.bl-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr; align-items: center;
  gap: 40px; min-height: 100vh; padding-top: 120px; padding-bottom: 80px;
}
.bl-hero-title {
  color: var(--coral);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.bl-hero-lead { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 430px; margin: 0 0 22px; }
.bl-hero-note { color: #fff; font-weight: 700; font-size: 16px; margin: 0 0 28px; }
.bl-hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.bl-hero-visual { position: relative; height: 620px; display: flex; align-items: center; justify-content: flex-end; overflow: hidden; }

/* =========================================================
   Challenge — clean break below the pinned hero
   ========================================================= */
.bl-challenge {
  position: relative; z-index: 5;
  background: var(--paper);
  margin-top: -100vh;
  padding: 90px 0 75px;
  transform: translateY(100vh);
  will-change: transform;
}

.bl-challenge::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.85), rgba(255,255,255,0) 72%);
  pointer-events: none;
}
.bl-challenge .bl-wrap { max-width: 1240px; }
.bl-challenge-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 500; line-height: 1.28;
  margin: 0 0 44px; max-width: none; letter-spacing: -1px;
}
.bl-challenge-title .bl-accent { display: block; margin-top: 4px; }

.bl-compare-card {
  background: #fff; border-radius: 22px; padding: 30px;
  box-shadow:
    0 1px 2px rgba(14, 18, 53, 0.05),
    0 12px 24px -16px rgba(14, 18, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 2px 3px rgba(255, 255, 255, 0.6),
    inset 0 -3px 8px rgba(14, 18, 53, 0.12),
    inset -2px 0 6px -3px rgba(14, 18, 53, 0.08),
    inset 2px 0 6px -3px rgba(255, 255, 255, 0.4);
}
.bl-compare { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }

.bl-compare-head, .bl-compare-row { display: grid; grid-template-columns: 1.1fr 1.3fr 1.3fr; }
.bl-compare-head > div, .bl-compare-row > div { display: flex; align-items: center; }

.bl-compare-row > div:has(.bl-mini-bar) {
  align-items: flex-start; flex-direction: column; gap: 4px;
}
.bl-compare-row .bl-mini-bar { width: 100%; }
.bl-compare-head {
  background: var(--navy-900); color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.bl-compare-head > div { padding: 14px 24px; }
.bl-compare-head > div:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.14); }

.bl-compare-head .bl-col-encoda { color: var(--coral); }
.bl-compare-row { border-top: 1px solid var(--line); font-size: 16px; font-weight: 500; }
.bl-compare-row > div { padding: 12px 24px; }
.bl-compare-row > div:not(:last-child) { border-right: 1px solid var(--line); }

.bl-compare-row > div:nth-child(2) { background: var(--paper); }
.bl-compare-row .bl-dim {
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 16px;
  gap: 14px; color: var(--navy-900);
}
.bl-dim-ico {
  display: inline-flex; width: 40px; height: 40px; flex: 0 0 48px;
  color: var(--navy-900);
}
.bl-dim-ico svg { width: 100%; height: 100%; }
.bl-col-encoda { color: var(--navy-900); position: relative; }
.bl-compare-row .bl-col-encoda { background: var(--coral-tint); }
.bl-compare-row .bl-col-encoda strong { color: var(--coral); font-size: 17px; }
.bl-mini-bar { display: block; height: 4px; margin-top: 8px; background: #f0d4cc; border-radius: 3px; overflow: hidden; }
.bl-mini-bar span { display: block; height: 100%; width: var(--w, 20%); background: var(--coral); border-radius: 3px; }
.bl-mini-bar-muted { background: var(--line); }
.bl-mini-bar-muted span { background: #9aa1b8; }

/* =========================================================
   Solution
   ========================================================= */
.bl-solution {
  position: relative; overflow: hidden;
  padding: 90px 0 84px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.bl-solution-bg {
  position: absolute; inset: 0;
  --bg-pos-x: 50%;
  --bg-pos-y: 10%;
  background: url("assets/fasta-bg.jpg") no-repeat var(--bg-pos-x) var(--bg-pos-y) / cover;
}
.bl-solution-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 34px 34px; opacity: 0.06;
}
.bl-solution-particles { position: absolute; inset: 0; pointer-events: none; }
.bl-solution-particles span {
  position: absolute; display: block; border-radius: 50%;
  width: var(--s, 3px); height: var(--s, 3px);
  left: var(--x); top: var(--y);
  background: rgba(255, 176, 150, 0.9);
  box-shadow: 0 0 6px 1px rgba(255,140,100,0.6);
  animation: particleFloat var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
}
.bl-solution-particles span:nth-child(1)  { --x:6%;  --y:20%; --s:3px; --dur:7.5s; --delay:.2s; }
.bl-solution-particles span:nth-child(2)  { --x:16%; --y:70%; --s:2px; --dur:6.4s; --delay:1.4s; }
.bl-solution-particles span:nth-child(3)  { --x:28%; --y:35%; --s:3px; --dur:8.2s; --delay:.7s; }
.bl-solution-particles span:nth-child(4)  { --x:40%; --y:85%; --s:2px; --dur:7s;   --delay:2.1s; }
.bl-solution-particles span:nth-child(5)  { --x:52%; --y:15%; --s:3px; --dur:6.8s; --delay:.3s; }
.bl-solution-particles span:nth-child(6)  { --x:64%; --y:60%; --s:2px; --dur:9s;   --delay:1.7s; }
.bl-solution-particles span:nth-child(7)  { --x:74%; --y:25%; --s:3px; --dur:7.3s; --delay:.9s; }
.bl-solution-particles span:nth-child(8)  { --x:84%; --y:75%; --s:2px; --dur:6.6s; --delay:2.4s; }
.bl-solution-particles span:nth-child(9)  { --x:92%; --y:40%; --s:3px; --dur:8.6s; --delay:.5s; }
.bl-solution-particles span:nth-child(10) { --x:48%; --y:50%; --s:2px; --dur:7.8s; --delay:1.1s; }

.bl-solution .bl-wrap { position: relative; z-index: 2; }
.bl-solution .bl-section-kicker { color: var(--coral); }
.bl-solution-copy { max-width: none; margin: 0 0 23px; text-align: center; }
.bl-solution-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 500; line-height: 1.28;
  letter-spacing: -1px; color: #fff; margin: 0 0 18px; max-width: none;
}
.bl-solution-cta { position: relative; z-index: 2; text-align: center; margin-top: 40px; }

.bl-stat-widget-row-outer {
  position: relative; z-index: 2;
  width: 100%; padding: 0 32px;
}
.bl-stat-widget-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px 32px;
  width: 100%;
}


.bl-stat-widget {
  position: relative;
  width: 315px; height: 99px;
  flex: 0 0 auto;
}
.bl-stat-shape {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; pointer-events: none;
}

.bl-stat-icon {
  position: absolute; left: 12.6px; top: 10.8px;
  width: 75.6px; height: 75.6px;
  display: flex; justify-content: center; align-items: center;
  z-index: 1;
}
.bl-stat-icon svg { width: 49.5px; height: 50.4px; }

.bl-stat-label {
  position: absolute; left: 93.6px; top: 0;
  width: 64.8px; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  color: #161a29; font-weight: 500; font-size: 17.1px; line-height: 1.25;
  z-index: 1;
}
.bl-stat-value {
  position: absolute; left: 189px; top: 0;
  width: 109.8px; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--coral); font-weight: 500; font-size: 24.3px; letter-spacing: -0.2px;
  z-index: 1;
}
.bl-stat-value-multiline { font-size: 20.7px; font-weight: 500; line-height: 1.2; }

@media (max-width: 768px) {
  .bl-stat-widget-row { gap: 20px; justify-content: center; }
}

/* =========================================================
   Platform
   ========================================================= */
.bl-platform {
  background: var(--paper);
  padding: 80px 10px 90px;
}

.bl-platform-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 500; line-height: 1.28;
  letter-spacing: -1px; margin: 0 0 28px;
}

.bl-platform-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%; max-width: 1920px; margin: 0 auto 44px; padding: 0 32px;
  color: var(--coral);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "affect";
}
.bl-platform-brand::before, .bl-platform-brand::after {
  content: ""; flex: 1 1 auto; height: 1px;
  background: var(--line);
}

.bl-flow-outer { width: 100%; padding: 0 32px; max-width: 1920px; margin: 0 auto; }
.bl-flow { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: nowrap; position: relative; }

.bl-flow-node {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 160px; padding: 8px; position: relative; z-index: 1;
}
.bl-flow-node-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.bl-flow-node-text { position: absolute; left: 50%; width: 100%; transform: translateX(-50%); }
.bl-flow-input .bl-flow-node-text { top: calc(50% + 57px); }
.bl-flow-end .bl-flow-node-text { top: calc(50% + 61px); }
.bl-flow-icon {
  position: relative;
  width: 90px; height: 90px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #f4f4f4 0%, #e8e8e8 100%);
  border: 2px solid #fff;
  box-shadow:
    0 10px 22px -14px rgba(10,15,44,0.4),
    inset 0 2px 3px rgba(255, 255, 255, 0.8),
    inset 0 -4px 7px rgba(14, 18, 53, 0.10);
}

.bl-flow-vial { width: 34px; max-width: none; height: auto; display: block; }
.bl-flow-laptop { width: 152px; max-width: none; height: auto; display: block; }
.bl-flow-name { font-size: 20px; font-weight: 700; margin: 0 0 6px; line-height: 1.2; }
.bl-flow-sub { font-size: 16px; color: var(--text); margin: 0; max-width: 160px; line-height: 1.35; }

.bl-flow-track {
  position: absolute; left: 0; top: 50.8%; transform: translateY(-50%);
  width: 0; height: 4px; background: var(--line); z-index: 0;
}

.bl-flow-pulse {
  position: absolute; top: 50%; right: 0; transform: translate(50%, -50%);
  width: 14px; height: 14px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,88,67,0.22), 0 0 18px 4px rgba(255,88,67,0.55);
  opacity: 0;
}
.bl-flow.bl-flow-play > .bl-flow-track > .bl-flow-pulse {
  animation: flowPulseTravel 2.5s linear forwards;
}
@keyframes flowPulseTravel {
  0% { opacity: 0; transform: translate(50%, -50%) scale(0.6); }
  3% { opacity: 1; transform: translate(50%, -50%) scale(1); }
  92% { opacity: 1; transform: translate(50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(50%, -50%) scale(2.2); }
}

.bl-flow-arrow {
  align-self: center; flex: 0 0 auto; position: relative; top: 3px; z-index: 1;
  opacity: 0; transform: scale(.4);
  padding: 6px 14px;
  display: flex; align-items: center; justify-content: center;
}
.bl-flow-arrow svg { width: 45px; height: 45px; overflow: visible; display: block; }

.bl-flow-arrow-outline {
  fill: none; stroke: var(--paper); stroke-width: 6;
  stroke-linecap: round; stroke-linejoin: round;
}
.bl-flow-arrow-path {
  fill: none; stroke: var(--navy-900); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.bl-flow-node, .bl-flow-card { opacity: 0; transform: translateY(16px); }
@keyframes flowBlockIn { to { opacity: 1; transform: translateY(0); } }
@keyframes flowArrowPop { to { opacity: 1; transform: scale(1); } }

@keyframes flowTrackGrow { to { width: calc(100% - 140px); } }

.bl-flow.bl-flow-play > .bl-flow-track {
  animation: flowTrackGrow 2.5s linear forwards;
}

.bl-flow-input .bl-flow-node-icon::after,
.bl-flow-end .bl-flow-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 116px; height: 116px; margin: 0; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  border: 2px solid var(--coral); opacity: 0;
  pointer-events: none;
}
.bl-flow-input .bl-flow-node-icon::after { width: 176px; height: 176px; }
.bl-flow.bl-flow-play .bl-flow-input .bl-flow-node-icon::after {
  animation: flowPingRing 1s var(--ease) 0.3s;
}
.bl-flow.bl-flow-play .bl-flow-end .bl-flow-icon::after {
  animation: flowPingRing 1.1s var(--ease) 2.458s;
}
.bl-flow.bl-flow-play .bl-flow-end .bl-flow-icon {
  animation: flowEndBounce 0.6s var(--ease) 2.479s;
}
@keyframes flowPingRing {
  0% { opacity: 0.85; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
}
@keyframes flowEndBounce {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

@keyframes flowCardPing {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(255,88,67,0),
      0 16px 34px -22px rgba(99, 99, 99, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 2px 3px rgba(255, 255, 255, 0.6),
      inset 0 -3px 8px rgba(14, 18, 53, 0.10),
      inset -2px 0 6px -3px rgba(14, 18, 53, 0.06),
      inset 2px 0 6px -3px rgba(255, 255, 255, 0.4);
  }
  35% {
    box-shadow:
      0 0 0 9px rgba(255,88,67,0.22),
      0 16px 34px -22px rgba(99, 99, 99, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 2px 3px rgba(255, 255, 255, 0.6),
      inset 0 -3px 8px rgba(14, 18, 53, 0.10),
      inset -2px 0 6px -3px rgba(14, 18, 53, 0.06),
      inset 2px 0 6px -3px rgba(255, 255, 255, 0.4);
  }
}
.bl-flow.bl-flow-play > *:nth-child(2),
.bl-flow.bl-flow-play > *:nth-child(4),
.bl-flow.bl-flow-play > *:nth-child(6),
.bl-flow.bl-flow-play > *:nth-child(8),
.bl-flow.bl-flow-play > *:nth-child(10) {
  animation-name: flowBlockIn;
  animation-duration: .5s;
  animation-timing-function: var(--ease);
  animation-fill-mode: forwards;
}
.bl-flow.bl-flow-play > *:nth-child(3),
.bl-flow.bl-flow-play > *:nth-child(5),
.bl-flow.bl-flow-play > *:nth-child(7),
.bl-flow.bl-flow-play > *:nth-child(9) {
  animation-name: flowArrowPop;
  animation-duration: .3s;
  animation-timing-function: var(--ease);
  animation-fill-mode: forwards;
}
.bl-flow.bl-flow-play > *:nth-child(4),
.bl-flow.bl-flow-play > *:nth-child(6),
.bl-flow.bl-flow-play > *:nth-child(8) {
  animation-name: flowBlockIn, flowCardPing;
  animation-duration: .5s, .9s;
  animation-timing-function: var(--ease), var(--ease);
  animation-fill-mode: forwards, forwards;
}

.bl-flow.bl-flow-play > *:nth-child(2) { animation-delay: 0s; }
.bl-flow.bl-flow-play > *:nth-child(3) { animation-delay: .331s; }
.bl-flow.bl-flow-play > *:nth-child(4) { animation-delay: .416s; }
.bl-flow.bl-flow-play > *:nth-child(5) { animation-delay: 1.014s; }
.bl-flow.bl-flow-play > *:nth-child(6) { animation-delay: 1.098s; }
.bl-flow.bl-flow-play > *:nth-child(7) { animation-delay: 1.697s; }
.bl-flow.bl-flow-play > *:nth-child(8) { animation-delay: 1.781s; }
.bl-flow.bl-flow-play > *:nth-child(9) { animation-delay: 2.380s; }
.bl-flow.bl-flow-play > *:nth-child(10) { animation-delay: 2.5s; }

.bl-flow-card {
  container-type: inline-size;
  background: #f9f9f9; border-radius: 14px; text-align: center;
  flex: 1 1 0; min-width: 150px; max-width: 325px; overflow: hidden;
  box-shadow:
    0 16px 34px -22px rgba(99, 99, 99, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 2px 3px rgba(255, 255, 255, 0.6),
    inset 0 -3px 8px rgba(14, 18, 53, 0.10),
    inset -2px 0 6px -3px rgba(14, 18, 53, 0.06),
    inset 2px 0 6px -3px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(226,229,238,0.8);
  position: relative; z-index: 1;
}

.bl-flow-card-header {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(10px, 4.9cqw, 16px);
}
.bl-flow-card-body { padding: clamp(6px, 2.8cqw, 9px) clamp(10px, 6.2cqw, 20px) clamp(16px, 12.3cqw, 40px); }
.bl-flow-card-title { font-size: clamp(12px, 4.6cqw, 15px); font-weight: 800; color: var(--coral); margin: 0; letter-spacing: 0.02em; }
.bl-flow-card-title span { color: var(--text); font-weight: 700; font-size: clamp(9px, 3.4cqw, 11px); letter-spacing: 0.08em; }
.bl-flow-wordmark { height: clamp(10px, 4cqw, 13px); width: auto; display: inline-block; vertical-align: middle; margin-left: 2px; }

.bl-flow-module { position: relative; margin-bottom: clamp(8px, 4.3cqw, 14px); }
.bl-flow-module-shape { display: block; width: 100%; height: auto; }
.bl-flow-module-text {
  position: absolute; left: 53%; right: 6%; top: 50%; transform: translateY(-50%);
  margin: 0; text-align: left; font-size: clamp(11px, 5.5cqw, 18px); font-weight: 600; line-height: 1.15; color: var(--text);
}

.bl-flow-output {
  position: relative; border: 4px solid var(--line); border-radius: 10px;
  padding: clamp(14px, 6.8cqw, 22px) clamp(8px, 4.3cqw, 14px) clamp(8px, 4.3cqw, 14px);
  margin-bottom: clamp(10px, 4.9cqw, 16px);
}
.bl-flow-output-label {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: #f9f9f9; padding: 0 clamp(6px, 3.1cqw, 10px);
  font-size: clamp(11px, 4.6cqw, 15px); letter-spacing: 0.1em; color: var(--coral); font-weight: 700; margin: 0;
}

.bl-flow-out {
  font-size: clamp(12px, 4.9cqw, 16px); text-align: left;
  display: flex; align-items: center; justify-content: center; gap: clamp(8px, 4.3cqw, 14px);
  width: fit-content; margin: 0 auto; color: var(--text);
}

.bl-flow-out-text { max-width: 49cqw; line-height: 1.25; font-size: clamp(14px, 6.15cqw, 20px); }

.bl-flow-out-icon {
  width: clamp(40px, 18.5cqw, 60px); height: clamp(40px, 18.5cqw, 60px); border-radius: 12px; flex: 0 0 auto;
  background: radial-gradient(circle at 30% 30%, #f4f4f4 0%, #e8e8e8 100%);
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(14, 18, 53, 0.10);
}
.bl-flow-out-icon img { width: clamp(20px, 9.85cqw, 32px); max-width: none; height: clamp(20px, 9.85cqw, 32px); display: block; }
.bl-flow-foot { font-size: clamp(13px, 5.5cqw, 16px); color: var(--text); margin: 0; line-height: 1.4; }

/* =========================================================
   Applications
   ========================================================= */
.bl-applications {
  position: relative;
  background: #e7e7e7;
  padding: 80px 0;
}

.bl-applications-title {
  font-size: clamp(24px, 3vw, 33px); font-weight: 500; line-height: 1.28;
  letter-spacing: -1px; color: var(--text); margin: 0 0 30px;
}

.bl-app-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: stretch;
}

.bl-app-col {
  flex: 1 1 320px; max-width: 434px;
  display: flex; flex-direction: column;
  background: #f9f9f9; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(226,229,238,0.8);
  box-shadow:
    0 16px 34px -22px rgba(99, 99, 99, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 2px 3px rgba(255, 255, 255, 0.6),
    inset 0 -3px 8px rgba(14, 18, 53, 0.10),
    inset -2px 0 6px -3px rgba(14, 18, 53, 0.06),
    inset 2px 0 6px -3px rgba(255, 255, 255, 0.4);
}

.bl-app-col-img {
  width: 100%; height: 250px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--paper-2), #dde1ec);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.bl-app-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 0% 17%;
}

.bl-app-col-body { padding: 28px 30px 34px; }
.bl-app-col-title { font-size: 22px; font-weight: 700; color: var(--text); margin: 0 0 10px; text-align: left; text-wrap: balance; }
.bl-app-col-lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--coral);
  margin: -1px 0 12px 0;
  text-align: left;
  line-height: 1.25;
	letter-spacing: -0.3px; 
}

.bl-app-col-lead.smaller {
  font-size: 16px;
}



.bl-app-col-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.bl-app-col-list li {
  font-size: 16px; color: #373a43; line-height: 1.55;
  position: relative; padding-left: 18px;
}
.bl-app-col-list li::before {
  content: "" !important; position: absolute; left: 0; top: 8px;
  width: 6px !important; height: 6px; border-radius: 50%; background: var(--coral);
  display: block !important; margin-left: 0 !important; color: transparent !important; font-weight: normal !important;
}

/* =========================================================
   Early Access
   ========================================================= */
.bl-early-access { position: relative; padding: 100px 0; overflow: hidden; background: var(--navy-900); }
.bl-early-access-bg {
  position: absolute; inset: 0;
  background: url("assets/early-access-bg.jpg") no-repeat center / cover;
}
.bl-early-access .bl-wrap { position: relative; z-index: 2; }

.bl-early-access-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 500; line-height: 1.28;
  letter-spacing: -1px; color: #fff; margin: 8px 0 52px;
}

.bl-ea-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; max-width: 1350px; margin: 0 auto;
}
.bl-ea-item {
  position: relative;
  flex: 1 1 320px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #00000036;
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 12px 28px -16px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 50px 60px -45px rgba(255,255,255,0.35);
  backdrop-filter: blur(16px) saturate(150%);
}

.bl-ea-number {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #f4f4f4 0%, #e8e8e8 100%);
  border: 2px solid #fff;
  box-shadow: 0 10px 22px -14px rgba(10,15,44,0.4), inset 0 2px 3px rgba(255, 255, 255, 0.8), inset 0 -4px 7px rgba(14, 18, 53, 0.10);
  margin-bottom: 12px;
}

.bl-ea-number-digit {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--coral);
  transform: translateY(-4px);
}
.bl-ea-copy h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 11px;
  line-height: 1.35;
	letter-spacing: -0.3px; 
}
.bl-ea-copy p {
  font-size: 16px;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}
.bl-ea-cta { text-align: center; margin-top: 52px; }

/* =========================================================
   Footer
   ========================================================= */
.bl-site-footer { background: var(--navy-900); padding: 40px 0; text-align: center; }
.bl-footer-logo { height: 22px; width: auto; margin: 0 auto; display: block; }
.bl-footer-copy { color: rgba(255,255,255,0.4); font-size: 11px; margin: 8px 0 0; }

/* =========================================================
   Scroll reveal
   -----------------------------------------------------------------

   ========================================================================= */
.bl-reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.bl-reveal.bl-in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .bl-reveal { opacity: 1; transform: none; }
  .bl-flow-node, .bl-flow-card { opacity: 1; transform: none; }
  .bl-flow-arrow { opacity: 1; transform: none; }
  .bl-flow-track { width: calc(100% - 140px); }
  .bl-flow-pulse, .bl-flow-input .bl-flow-node-icon::after, .bl-flow-end .bl-flow-icon::after { display: none; }

  .bl-hero-pin { height: auto; }
  .bl-hero { position: relative; height: auto; }
  .bl-challenge { margin-top: 0; transform: none; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 1100px) {
  .bl-flow-track { width: 4px; height: calc(100% - 90px); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .bl-flow { flex-direction: column; align-items: center; flex-wrap: nowrap; gap: 16px; }
  .bl-flow-node { width: 220px; }
  .bl-flow-card { flex: 0 0 auto; width: 100%; max-width: 325px; }

  .bl-flow-node-icon { position: relative; top: auto; left: auto; transform: none; margin: 0 auto 12px; }

  .bl-flow-node-text {
    position: relative; top: auto; left: auto; width: auto; transform: none;
    background: var(--paper); z-index: 2;
  }
  .bl-flow-arrow svg { transform: rotate(90deg); }
  .bl-flow-track {
    left: 50%; top: 0; width: 4px; height: 0;
    transform: translateX(-50%);
  }
  .bl-flow-pulse { top: auto; left: 50%; right: auto; bottom: 0; transform: translate(-50%, 50%); }
  .bl-flow.bl-flow-play > .bl-flow-track { animation-name: flowTrackGrowVertical; }
  .bl-flow.bl-flow-play > .bl-flow-track > .bl-flow-pulse { animation-name: flowPulseTravelVertical; }
}
@keyframes flowTrackGrowVertical { to { height: calc(100% - 90px); } }
@keyframes flowPulseTravelVertical {
  0% { opacity: 0; transform: translate(-50%, 50%) scale(0.6); }
  3% { opacity: 1; transform: translate(-50%, 50%) scale(1); }
  92% { opacity: 1; transform: translate(-50%, 50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, 50%) scale(2.2); }
}
@media (max-width: 900px) {
  .bl-hero-pin { height: auto; }
  .bl-hero { position: relative; height: auto; }
  .bl-challenge { margin-top: 0; transform: none; }
  .bl-hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; text-align: left; }
  .bl-hero-visual { height: 340px; order: -1; }

  .bl-hero-bg {
    bottom: auto; height: 480px;
    background-image: linear-gradient(to bottom, transparent 60%, var(--navy-900) 100%), url("assets/hero-key-noglow.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: 100%, 91%;
    background-size: 100% 100%, cover;
  }
  .bl-app-panel.bl-is-active { grid-template-columns: 1fr; }
  .bl-app-image { order: -1; }

  .bl-applications .bl-section-kicker, .bl-applications-title { text-align: center; }
}

@media (max-width: 900px) {
  .bl-early-access-bg {
    position: absolute;
    inset: 0;
    background: url("assets/ENCODEX-DNA-5-reasons-mobile.jpg") no-repeat center / cover;
  }
}


@media (max-width: 640px) {
  .bl-wrap { padding: 0 20px; }
  .bl-stat-widget-row-outer { padding: 0 20px; }
  .bl-flow-outer { padding: 0 20px; }
  .bl-main-nav { gap: 14px; }
  .bl-main-nav .bl-nav-link:not(.bl-btn) { display: none; }
  .bl-compare-card { padding: 8px; border-radius: 16px; }
  .bl-compare-head, .bl-compare-row { grid-template-columns: 1fr; }
  .bl-compare-head > div, .bl-compare-row > div { padding: 12px 16px; }

  .bl-compare { overflow: visible; }
  .bl-compare-head { position: sticky; top: 64px; z-index: 5; border-radius: 14px 14px 0 0; overflow: hidden; }
  .bl-compare-head.bl-is-released { position: static; }
  .bl-compare-row:last-child { border-radius: 0 0 14px 14px; overflow: hidden; }
  .bl-app-foot { flex-direction: column; align-items: flex-start; }

  .bl-hero-inner { gap: 16px; padding-bottom: 56px; }
  .bl-platform-brand { font-size: 21px; letter-spacing: 1.5px; gap: 10px; margin-bottom: 28px; }
}