* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --card: rgba(15, 23, 42, 0.72);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --green: #34d399;
  --pink: #ec4899;
  --purple: #8b5cf6;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

/* BACKGROUND */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.20), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(236, 72, 153, 0.14), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    #020617;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.22;
  z-index: -1;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb.one {
  top: 80px;
  right: -180px;
  background: var(--cyan);
}

.orb.two {
  bottom: -220px;
  left: -160px;
  background: var(--purple);
  animation-delay: 2s;
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-50px, 40px, 0) scale(1.1);
  }
}

/* NAVBAR */
.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.brand {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 145px;
  height: auto;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 12px rgba(34, 211, 238, 0.18))
    drop-shadow(0 0 20px rgba(139, 92, 246, 0.12));
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.logo-image:hover {
  transform: scale(1.02);
  filter:
    drop-shadow(0 0 16px rgba(34, 211, 238, 0.24))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #cbd5e1;
  font-size: 18px;
  font-weight: 500;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #a5f3fc;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.06);
  transition: 0.25s ease;
}

.nav-cta:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.42);
}

/* HERO */
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
  font-size: 14px;
  margin-bottom: 26px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(52, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 760px;
}

.gradient-text {
  background: linear-gradient(90deg, #67e8f9, #e879f9, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin-top: 26px;
  max-width: 650px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 750;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  color: #020617;
  box-shadow: 0 16px 42px rgba(34, 211, 238, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.68);
  color: white;
}

.hero-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.metric strong {
  display: block;
  font-size: 24px;
}

.metric span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

/* HERO VISUAL */
.visual-wrap {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.signal-ring {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.16);
  animation: rotate 22s linear infinite;
}

.signal-ring.two {
  width: 360px;
  height: 360px;
  border-color: rgba(236, 72, 153, 0.18);
  animation-direction: reverse;
  animation-duration: 16s;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 24px rgba(103, 232, 249, 0.88);
}

.node.n1 {
  top: 32px;
  left: 50%;
}

.node.n2 {
  right: 46px;
  top: 48%;
  background: #f472b6;
}

.node.n3 {
  bottom: 38px;
  left: 30%;
  background: #a78bfa;
}

.core-card {
  width: min(470px, 100%);
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.88),
    rgba(2, 6, 23, 0.88)
  );
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
  animation: floatCard 5s ease-in-out infinite alternate;
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px);
  }
}

.core-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(34, 211, 238, 0.16),
    transparent
  );
  transform: translateX(-100%);
  animation: scan 4.5s ease-in-out infinite;
}

@keyframes scan {
  0%, 35% {
    transform: translateX(-100%);
  }

  70%, 100% {
    transform: translateX(100%);
  }
}

.core-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status {
  padding: 7px 11px;
  border-radius: 999px;
  color: #bbf7d0;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.09);
  font-size: 13px;
}

.feed-title span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 5px;
}

.feed-title strong {
  font-size: 22px;
}

.price-box {
  margin-top: 22px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.18),
    rgba(139, 92, 246, 0.10)
  );
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.price-box span {
  display: block;
  color: #bae6fd;
  font-size: 13px;
  margin-bottom: 4px;
}

.price-box strong {
  font-size: 38px;
  letter-spacing: -0.04em;
}

.mini-chart {
  height: 72px;
  margin-top: 18px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.bar {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(
    180deg,
    #67e8f9,
    rgba(34, 211, 238, 0.18)
  );
  animation: bars 1.9s ease-in-out infinite alternate;
}

.h-48 { height: 48%; }
.h-72 { height: 72%; }
.h-60 { height: 60%; }
.h-86 { height: 86%; }
.h-67 { height: 67%; }
.h-92 { height: 92%; }
.h-78 { height: 78%; }

@keyframes bars {
  from {
    transform: scaleY(0.65);
    opacity: 0.65;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.source-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.11);
  color: #cbd5e1;
  font-size: 14px;
}

.source-row small {
  color: var(--green);
  font-weight: 700;
}

/* COMMON SECTIONS */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-label {
  color: #67e8f9;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section p {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 17px;
}

/* INFRASTRUCTURE CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.58);
  min-height: 230px;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(34, 211, 238, 0.11);
  border: 1px solid rgba(34, 211, 238, 0.20);
  color: #67e8f9;
  font-weight: 900;
}

.card h3,
.education-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* PIPELINE */
.pipeline-panel {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.68),
    rgba(2, 6, 23, 0.68)
  );
  border-radius: 34px;
  padding: 28px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.step {
  min-height: 150px;
  border-radius: 24px;
  padding: 18px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.14);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #8b5cf6, #ec4899);
}

.step span {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 800;
}

.step strong {
  display: block;
  margin: 10px 0;
  font-size: 18px;
}

.step p {
  font-size: 13px;
  color: #94a3b8;
}

/* EDUCATION */
.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.education-card {
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.58);
  min-height: 280px;
  transition: 0.25s ease;
}

.education-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
}

.education-card p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.75;
}

/* FLARE DATA LAYER */
.flare-layer-panel {
  margin-top: 24px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.58);
}

.flare-layer-panel h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.flare-layer-panel p {
  color: #cbd5e1;
  line-height: 1.75;
}

.flare-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.18);
}

.flare-badge img {
  height: 28px;
  width: auto;
  display: block;
}

.flare-badge span {
  color: #fbcfe8;
  font-size: 14px;
  font-weight: 700;
}

.flare-layer-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.flare-layer-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

.flare-layer-card h4,
.virelithx-fit h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: white;
}

.education-image {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: white;
  padding: 12px;
  display: block;
}

.virelithx-fit {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.10), rgba(139, 92, 246, 0.10));
  border: 1px solid rgba(34, 211, 238, 0.18);
}

/* DELEGATE VS STAKE TABLE */
.comparison-panel {
  margin-top: 22px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.58);
}

.comparison-panel h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.delegate-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > div {
  padding: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 15px;
}

.table-row > div:first-child {
  color: #67e8f9;
  font-weight: 800;
  background: rgba(34, 211, 238, 0.06);
}

.table-head > div {
  color: white;
  font-weight: 900;
  background: rgba(236, 72, 153, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

/* DELEGATION FLOW */
.delegation-flow {
  margin-top: 24px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.12), transparent 32%),
    rgba(15, 23, 42, 0.58);
}

.flow-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.flow-content h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.flow-content p {
  color: #cbd5e1;
  line-height: 1.75;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-step {
  padding: 20px;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

.flow-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: #020617;
  background: linear-gradient(135deg, #22d3ee, #ec4899);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.flow-step strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.disclaimer {
  margin-top: 22px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

/* FLARE ECOSYSTEM BANNER */
.flare-ecosystem-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.flare-ecosystem-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  z-index: 1;
  transform: scale(1.01);
  filter:
    saturate(1.25)
    contrast(1.08)
    brightness(1.08);
}

.flare-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.25),
      rgba(2, 6, 23, 0.12),
      rgba(2, 6, 23, 0.35)
    );
  z-index: 2;
}

.flare-banner-content {
  width: min(1180px, calc(100% - 40px));
  position: relative;
  z-index: 3;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
}

.flare-banner-content .section-label {
  margin-bottom: 250px;
  font-size: 40px;
  letter-spacing: 0.28em;
}

.flare-banner-content h2 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: white;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.flare-banner-content p {
  max-width: 900px;
  margin-top: auto;
  margin-bottom: 40px;
  color: #f8fafc;
  font-size: 20px;
  line-height: 1.75;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

/* EVIDENCE / SAMPLE DATASET */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.evidence-card {
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.68),
      rgba(2, 6, 23, 0.68)
    );
  min-height: 250px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.evidence-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.08);
}

.evidence-card .icon {
  margin-bottom: 22px;
}

.evidence-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: white;
}

.evidence-card p {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 16px;
}

.evidence-visuals {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.evidence-visual-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.68),
      rgba(2, 6, 23, 0.68)
    );
}

.evidence-visual-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.evidence-info {
  padding: 22px;
}

.evidence-info h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.evidence-info p {
  color: #cbd5e1;
  line-height: 1.75;
}

.builder-panel {
  margin-top: 24px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(
      circle at top left,
      rgba(34, 211, 238, 0.12),
      transparent 32%
    ),
    rgba(15, 23, 42, 0.58);
}

.builder-panel h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.builder-panel p {
  color: #cbd5e1;
  line-height: 1.8;
}

.sample-access-panel {
  margin-top: 30px;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(34, 211, 238, 0.20);
  background:
    radial-gradient(
      circle at top right,
      rgba(34, 211, 238, 0.16),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.76),
      rgba(2, 6, 23, 0.76)
    );
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
  overflow: hidden;
  position: relative;
}

.sample-access-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(34, 211, 238, 0.08),
      transparent
    );
  transform: translateX(-100%);
  animation: sampleScan 5s ease-in-out infinite;
}

@keyframes sampleScan {
  0%, 35% {
    transform: translateX(-100%);
  }

  70%, 100% {
    transform: translateX(100%);
  }
}

.sample-access-panel > div,
.sample-form {
  position: relative;
  z-index: 2;
}

.sample-access-panel .section-label {
  margin-bottom: 14px;
}

.sample-access-panel h3 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  color: white;
}

.sample-access-panel p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 17px;
}

.sample-form {
  display: grid;
  gap: 14px;
}

.sample-form input,
.sample-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  outline: none;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.76);
  color: white;
  padding: 0 16px;
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.sample-form input:focus,
.sample-form select:focus {
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.sample-form select {
  cursor: pointer;
}

.sample-form option {
  background: #020617;
  color: white;
}

.sample-form button {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  color: #020617;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.sample-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.22);
}

#sample-message {
  min-height: 22px;
  color: #67e8f9;
  font-size: 14px;
  padding-left: 2px;
}

/* ROADMAP */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.roadmap-item {
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.58);
}

.roadmap-item .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a5f3fc;
  border: 1px solid rgba(34, 211, 238, 0.35);
  margin-bottom: 20px;
  font-weight: 900;
}

.roadmap-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

/* JOIN */
.join {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 90px;
  border-radius: 34px;
  padding: 46px;
  border: 1px solid rgba(34, 211, 238, 0.20);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 35%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.92),
      rgba(2, 6, 23, 0.92)
    );
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.join h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.join p {
  color: #cbd5e1;
  line-height: 1.75;
}

.email-form {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.email-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  padding: 0 12px;
  font-size: 15px;
}

.email-form button {
  border: 0;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  color: #020617;
  font-weight: 850;
  cursor: pointer;
}

#form-message {
  margin-top: 14px;
  min-height: 24px;
  color: #67e8f9;
  font-size: 14px;
}

/* FOOTER */
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* UPDATED V1 POLISH / EVIDENCE EXPANSION / RESPONSIVE HARDENING */

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover,
.email-form button:hover,
.roadmap-item:hover {
  transform: translateY(-2px);
}

.card,
.education-card,
.evidence-card,
.roadmap-item,
.step,
.flow-step,
.flare-layer-card,
.evidence-feature-card {
  will-change: transform;
}

/* EVIDENCE STATS */
.evidence-section .section-header {
  max-width: 860px;
}

.evidence-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 10px 0 26px;
}

.evidence-stat {
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.72));
  border: 1px solid rgba(34, 211, 238, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.evidence-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 8px;
}

.evidence-stat span {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

/* NEW EVIDENCE GALLERY */
.evidence-gallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.evidence-feature-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(2, 6, 23, 0.82));
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.evidence-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.08);
}

.evidence-feature-card img {
  width: 100%;
  min-height: 260px;
  max-height: 390px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.evidence-feature-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.08) contrast(1.04);
}

.evidence-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.evidence-placeholder {
  min-height: 100%;
}

.placeholder-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.10),
      rgba(139, 92, 246, 0.10),
      rgba(236, 72, 153, 0.08)
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
}

.placeholder-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(103, 232, 249, 0.28);
  border-radius: 24px;
}

.placeholder-visual span {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #020617;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  box-shadow: 0 18px 45px rgba(34, 211, 238, 0.18);
}

/* FORM MESSAGE LINKS */
#sample-message a,
#form-message a {
  color: #67e8f9;
}

#sample-message a:hover,
#form-message a:hover {
  color: white;
}

.social-follow {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-follow span {
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.x-follow-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(103, 232, 249, 0.18);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.x-follow-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 232, 249, 0.45);
  box-shadow: 0 14px 35px rgba(34, 211, 238, 0.14);
}

@media (max-width: 768px) {
  .x-follow-btn {
    width: 100%;
  }
}

.x-follow-btn svg {
  flex-shrink: 0;
}

.x-follow-btn {
  gap: 10px;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roadmap-status.completed {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.roadmap-status.active {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.roadmap-status.upcoming {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.26);
}

.roadmap-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-status.completed {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.roadmap-status.active {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.roadmap-status.upcoming {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.26);
}

/* MOBILE / RESPONSIVE HARDENING */
@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 70px);
  }
}

@media (max-width: 1020px) {
  .evidence-stats,
  .evidence-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 48px;
  }

  .visual-wrap {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 70px;
    gap: 32px;
  }

  .hero-copy,
  .section p,
  .sample-access-panel p,
  .builder-panel p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .evidence-stats,
  .evidence-gallery {
    grid-template-columns: 1fr;
  }

  .evidence-feature-card img,
  .placeholder-visual {
    min-height: 220px;
  }

  .flare-banner-content .section-label {
    font-size: 26px;
    margin-bottom: 210px;
  }

  .comparison-panel,
  .delegation-flow,
  .flare-layer-panel,
  .sample-access-panel,
  .builder-panel {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .navbar,
  .hero,
  .section,
  .join,
  footer,
  .flare-banner-content {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -0.055em;
  }

  .hero-copy {
    line-height: 1.65;
  }

  .visual-wrap {
    min-height: 430px;
  }

  .core-card {
    border-radius: 26px;
    padding: 18px;
  }

  .price-box strong {
    font-size: 30px;
  }

  .signal-ring {
    width: 300px;
    height: 300px;
  }

  .signal-ring.two {
    width: 230px;
    height: 230px;
  }

  .section h2,
  .join h2 {
    letter-spacing: -0.04em;
  }

  .evidence-stat {
    padding: 18px;
  }

  .sample-access-panel h3 {
    font-size: 30px;
  }

  .flare-banner-content .section-label {
    font-size: 21px;
    letter-spacing: 0.16em;
    margin-bottom: 220px;
  }

  .flare-banner-content p {
    font-size: 15px;
  }

  footer {
    font-size: 13px;
  }
}

/* REDUCED MOTION ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  .hero,
  .join,
  .flow-content {
    grid-template-columns: 1fr;
  }

  .cards,
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .pipeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .education-grid,
  .flow-steps,
  .flare-layer-grid,
  .evidence-grid,
  .evidence-visuals,
  .sample-access-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .table-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .flare-ecosystem-banner {
    min-height: 420px;
  }

  .flare-banner-content {
    min-height: 420px;
    padding-top: 55px;
  }

  .flare-banner-content h2 {
    font-size: clamp(34px, 8vw, 52px);
  }

  .flare-banner-content p {
    font-size: 16px;
    margin-bottom: 42px;
  }

  .sample-access-panel {
    padding: 28px;
  }

  .builder-panel {
    padding: 26px;
  }
}

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

  .hero,
  .cards,
  .roadmap,
  .pipeline,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .visual-wrap {
    min-height: 520px;
  }

  .signal-ring {
    width: 360px;
    height: 360px;
  }

  .signal-ring.two {
    width: 280px;
    height: 280px;
  }

  .join {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input {
    min-height: 44px;
  }

  .logo-image {
    width: 125px;
  }
}


/* =========================================================
   PRODUCTION MOBILE FIX â€” appended after all previous CSS
   Purpose: preserve desktop layout while fixing mobile layout,
   hero collapse, image/table overflow, and oversized spacing.
   ========================================================= */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  .navbar,
  .hero,
  .section,
  .join,
  footer,
  .flare-banner-content {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    padding: 10px 0;
    min-height: 72px;
  }

  .logo-image {
    width: 108px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 58px;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    align-items: start;
  }

  .hero > * {
    min-width: 0;
  }

  .hero-content {
    order: 1;
  }

  .visual-wrap {
    order: 2;
    min-height: 360px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    max-width: 100%;
  }

  .hero-copy {
    margin-top: 18px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-metrics {
    margin-top: 24px;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .signal-ring {
    width: 270px;
    height: 270px;
  }

  .signal-ring.two {
    width: 210px;
    height: 210px;
  }

  .core-card {
    width: 100%;
    max-width: 360px;
    border-radius: 26px;
    padding: 18px;
  }

  .price-box strong {
    font-size: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .section-header {
    max-width: 100%;
    margin-bottom: 26px;
  }

  .section h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .section p {
    font-size: 16px;
    line-height: 1.65;
  }

  .cards,
  .pipeline,
  .education-grid,
  .flare-layer-grid,
  .flow-content,
  .flow-steps,
  .evidence-grid,
  .evidence-visuals,
  .evidence-stats,
  .evidence-gallery,
  .sample-access-panel,
  .roadmap,
  .join {
    grid-template-columns: 1fr !important;
  }

  .pipeline-panel,
  .comparison-panel,
  .delegation-flow,
  .flare-layer-panel,
  .builder-panel,
  .sample-access-panel,
  .join {
    padding: 22px;
    border-radius: 26px;
  }

  .table-row {
    grid-template-columns: 1fr !important;
  }

  .delegate-table,
  .comparison-panel,
  .pipeline-panel,
  .builder-panel,
  .sample-access-panel,
  .evidence-feature-card,
  .evidence-visual-card {
    max-width: 100%;
    overflow-x: hidden;
  }

  .flare-ecosystem-banner {
    min-height: 390px;
    margin: 24px 0 10px;
  }

  .flare-banner-content {
    min-height: 390px;
    padding-top: 44px;
  }

  .flare-banner-content .section-label {
    font-size: clamp(18px, 6vw, 24px);
    letter-spacing: 0.14em;
    margin-bottom: auto;
  }

  .flare-banner-content h2 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .flare-banner-content p {
    margin-top: auto;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
  }

  .education-image,
  .evidence-feature-card img,
  .evidence-visual-card img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }

  .evidence-feature-card:hover img {
    transform: none;
    filter: brightness(1.03);
  }

  .evidence-info {
    padding: 18px;
  }

  .evidence-info h3 {
    font-size: 21px;
    line-height: 1.18;
  }

  .evidence-stat strong {
    font-size: 24px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input {
    min-height: 46px;
  }

  .sample-form input,
  .sample-form select,
  .sample-form button {
    min-height: 50px;
  }

  footer {
    padding: 28px 0;
    font-size: 13px;
  }

  table,
  pre,
  code,
  .table,
  .events-table,
  .consensus-table,
  .evidence-table,
  .dashboard-table,
  .recent-events,
  .event-log,
  .log-table {
    max-width: 100%;
  }

  .table-wrap,
  .events-wrap,
  .evidence-table-wrap,
  .dashboard-table-wrap,
  .recent-events-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 420px) {
  .navbar,
  .hero,
  .section,
  .join,
  footer,
  .flare-banner-content {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .visual-wrap {
    min-height: 330px;
  }

  .core-card {
    max-width: 330px;
  }

  .signal-ring {
    width: 240px;
    height: 240px;
  }

  .signal-ring.two {
    width: 190px;
    height: 190px;
  }

  .pipeline-panel,
  .comparison-panel,
  .delegation-flow,
  .flare-layer-panel,
  .builder-panel,
  .sample-access-panel,
  .join {
    padding: 18px;
  }
}

/* FINAL MOBILE FIX */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    position: relative;
    padding: 18px 0;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 28px 0 52px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .visual-wrap {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .cards,
  .pipeline,
  .education-grid,
  .flare-layer-grid,
  .flow-content,
  .flow-steps,
  .evidence-grid,
  .evidence-visuals,
  .evidence-gallery,
  .roadmap,
  .join,
  .sample-access-panel {
    grid-template-columns: 1fr !important;
  }

  .evidence-feature-card img,
  .evidence-visual-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .delegate-table,
  .comparison-panel,
  .builder-panel,
  .sample-access-panel,
  .delegation-flow,
  .flare-layer-panel {
    overflow-x: hidden;
  }

  .table-row {
    grid-template-columns: 1fr !important;
  }

  .join {
    padding: 26px;
  }
}

/* FINAL MOBILE COMPACT PATCH */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .logo-image {
    width: 96px;
  }

  .hero {
    padding: 18px 0 38px;
  }

  .eyebrow {
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .section {
    padding: 42px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .card,
  .education-card,
  .evidence-card,
  .roadmap-item,
  .step,
  .flow-step,
  .flare-layer-card {
    min-height: auto;
    padding: 22px;
  }

  .pipeline-panel,
  .comparison-panel,
  .delegation-flow,
  .flare-layer-panel,
  .sample-access-panel,
  .builder-panel {
    padding: 22px;
  }

  .pipeline,
  .cards,
  .roadmap,
  .education-grid,
  .evidence-grid,
  .evidence-gallery {
    gap: 14px;
  }

  .step {
    min-height: auto;
  }

  .flare-ecosystem-banner {
    min-height: 330px;
    margin: 24px 0 10px;
  }

  .flare-banner-content {
    min-height: 330px;
    padding-top: 34px;
  }

  .flare-banner-content .section-label {
    font-size: 18px;
    letter-spacing: 0.14em;
    margin-bottom: 145px;
  }

  .flare-banner-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .evidence-feature-card:hover,
  .card:hover,
  .education-card:hover,
  .evidence-card:hover {
    transform: none;
  }

  .evidence-feature-card:hover img {
    transform: none;
    filter: none;
  }
}

/* FINAL MOBILE SIZE FIX */
@media (max-width: 768px) {
  .navbar,
  .hero,
  .section,
  .join,
  footer,
  .flare-banner-content {
    width: min(100% - 32px, 1180px);
  }

  .hero h1,
  .section h2 {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em;
  }

  .hero-copy,
  .section p,
  .card p,
  .step p,
  .education-card p,
  .evidence-card p,
  .roadmap-item p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .card,
  .education-card,
  .evidence-card,
  .roadmap-item,
  .step,
  .flow-step,
  .flare-layer-card {
    padding: 18px !important;
    border-radius: 22px;
    min-height: auto !important;
  }

  .pipeline-panel,
  .comparison-panel,
  .delegation-flow,
  .flare-layer-panel,
  .sample-access-panel,
  .builder-panel {
    padding: 18px !important;
    border-radius: 24px;
  }

  .pipeline,
  .cards,
  .roadmap,
  .education-grid,
  .evidence-grid,
  .evidence-gallery,
  .flow-steps {
    gap: 12px !important;
  }

  .step strong,
  .card h3,
  .education-card h3,
  .evidence-card h3,
  .roadmap-item h3,
  .flow-step strong {
    font-size: 19px !important;
  }

  .section {
    padding: 36px 0 !important;
  }

  .hero {
    padding: 18px 0 32px !important;
  }

  .hero-metrics .metric {
    padding: 16px;
    border-radius: 20px;
  }

  .metric strong {
    font-size: 22px;
  }

  .eyebrow {
    font-size: 13px;
    line-height: 1.35;
  }
}