/* ===================== style.css ===================== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0f14;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */

/* ================= HEADER (NEW) ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 200;

  backdrop-filter: blur(12px) saturate(95%);
  -webkit-backdrop-filter: blur(12px) saturate(95%);

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.32) 65%,
    rgba(0, 0, 0, 0.25) 100%
  );

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
/* Logo */
.logo img {
  height: 66px;   /* was 28px */
  width: auto;
  display: block;
}

@media (min-width: 980px) {
  .logo img {
    height: 56px; /* was 32px */
  }
}



/* Desktop Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  appearance: none;
  border: none;
  background: transparent;
  color: #c7cbd6;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  color: #e0ff5b;
  background: rgba(255, 255, 255, 0.04);
}

.chev {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons (small variant) */
.btn.sm {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

/* ===== Mega Menu ===== */
.mega {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  min-width: 880px;
   background: rgba(0, 0, 0, 0.99);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  padding: 14px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.18s ease;
}

.mega.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.9fr;
  gap: 12px;
  align-items: start;
}

.mega-col {
  padding: 10px;
  border-radius: 14px;
}

.mega-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
  margin-bottom: 10px;
}

.mega-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #e7e9ef;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  margin-bottom: 10px;
  transition: 0.2s ease;
}

.mega-link:hover {
  border-color: rgba(224,255,91,0.25);
  box-shadow: 0 0 0 1px rgba(224,255,91,0.08);
  transform: translateY(-1px);
}

.mega-sub {
  display: block;
  margin-top: 6px;
  color: #9aa0ad;
  font-size: 12px;
  font-weight: 500;
}

.mega-side {
  padding: 10px;
}

.mega-card {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(224,255,91,0.18);
  background: radial-gradient(
      700px 260px at 20% 10%,
      rgba(224,255,91,0.12),
      transparent 60%
    ),
    rgba(255,255,255,0.02);
}

.mega-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
}

.mega-big {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  color: #eaeaf0;
}

.mega-muted {
  margin-top: 10px;
  font-size: 12px;
  color: #a0a3ad;
  line-height: 1.5;
}

.mega-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

/* ===== Dropdown ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
   background: rgba(0, 0, 0, 0.99);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
  padding: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.18s ease;
}

.dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dd-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #e7e9ef;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: 0.2s ease;
  margin-bottom: 8px;
}

.dd-link:hover {
  border-color: rgba(224,255,91,0.25);
  transform: translateY(-1px);
}

.dd-note {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: #a0a3ad;
  line-height: 1.5;
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

/* ===== Hamburger + Mobile Menu ===== */
.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.hamburger:hover {
  border-color: rgba(224,255,91,0.25);
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: #cfd3de;
  border-radius: 999px;
}

.mobile {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 12, 16, 0.92);
}

.mobile.is-open {
  display: block;
}

.mobile-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0 20px;
}

.mobile-link {
  display: block;
  padding: 14px 10px;
  color: #e7e9ef;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  margin-bottom: 10px;
}

.mobile-acc {
  width: 100%;
  text-align: left;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: #e7e9ef;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel {
  display: none;
  padding: 6px 6px 14px;
  margin-top: -6px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.mobile-panel a {
  display: block;
  padding: 10px 10px;
  color: #cfd3de;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.2s ease;
}

.mobile-panel a:hover {
  color: #e0ff5b;
  background: rgba(255,255,255,0.03);
}

.mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .mega {
    min-width: unset;
  }
}


/* ================= BUTTONS ================= */

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: #e0ff5b;
  color: black;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #e0ff5b66;
}

.ghost {
  background: transparent;
  border: 1px solid #555;
  color: white;
}

.ghost:hover {
  border-color: #e0ff5b;
  color: #e0ff5b;
}

.dark {
  background: black;
  color: white;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: 140px 20px 120px;
  text-align: center;
  background: #0b0f14;
  overflow: hidden;
}

/* Grid + Glow background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      85% 75% at 50% 45%,
      rgba(180, 185, 195, 0.18) 0%,
      rgba(160, 165, 175, 0.12) 25%,
      rgba(130, 135, 145, 0.06) 45%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      180deg,
      #0b0d12 0%,
      #0a0c10 35%,
      #080a0e 65%,
      #07080c 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 40px
    );

  background-size: 100% 100%;
}

/* Content wrapper */
.hero-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

/* Heading */
.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: #eaeaf0;
  font-family: 'Inter', sans-serif;
}

.hero h1 span {
  color: #e0ff5b;
}

/* Subtext */
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #a0a3ad;
  line-height: 1.6;
}

/* Badges */
.hero-badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  color: #bfc3d4;
  font-size: 15px;
}

.badge {
  opacity: 0.9;
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Primary */
.btn-primary {
  background: #e0ff5b;
  color: #0b0f14;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(140,160,255,0.4);
}

/* Secondary */
.btn-secondary {
  background: #e5e7eb;
  color: #111;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: white;
}

/* ================= HERO STATS ================= */
.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  position: relative;
}

/* Divider line above stats */
.hero-stats::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

.stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #9aa0ad;
}

/* ================= Enrichment ================= */

/* ===================== ENRICHMENT SECTION ===================== */

.enrich {
  padding: 120px 0;
  position: relative;
  background: #0b0f14;
}

/* ✅ Make enrichment section wider than the global container */
.enrich .container{
  max-width: 1400px;
}

/* ✅ Give the RIGHT side more space (visual-led layout) */
.enrich-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr; /* LEFT / RIGHT */
  gap: 80px;
  align-items: start;
}

/* LEFT */
.enrich-left { max-width: 560px; position: relative; z-index: 2; }

.enrich-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #eaeaf0;
}

.enrich-title span {
  color: #e0ff5b; /* hero green */
}

.enrich-sub {
  margin-top: 18px;
  color: #a0a3ad;
  line-height: 1.7;
  font-size: 14px;
  max-width: 520px;
}

.enrich-steps {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.enrich-step {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 12, 16, 0.55);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.enrich-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 180px at 20% 50%,
    rgba(224,255,91,0.14),
    transparent 60%
  );
  opacity: 0;
  transition: 0.25s ease;
}

.enrich-step:hover {
  transform: translateY(-2px);
  border-color: rgba(224,255,91,0.25);
}

.enrich-step:hover::before { opacity: 1; }

.enrich-step.is-active {
  border-color: rgba(224,255,91,0.45);
  box-shadow: 0 0 0 1px rgba(224,255,91,0.10), 0 18px 40px rgba(0,0,0,0.35);
}

.step-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  color: #e0ff5b;
  border: 1px solid rgba(255,255,255,0.06);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-name {
  font-weight: 700;
  color: #e7e9ef;
  font-size: 14px;
}

.step-pill {
  font-size: 11px;
  color: #cfd3de;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.step-desc {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa0ad;
}

/* CTA */
.enrich-cta {
  margin-top: 20px;
}

.enrich-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eaeaf0;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.enrich-btn .arrow { color: #e0ff5b; }

.enrich-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(224,255,91,0.35);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.enrich-note {
  margin-top: 10px;
  font-size: 11px;
  color: #778093;
}

/* RIGHT */
.enrich-right {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 740px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
}

.enrich-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 55% 45%,
    rgba(224,255,91,0.10),
    rgba(224,255,91,0.05) 28%,
    transparent 62%
  );
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ✅ Bigger panels */
.panel {
  width: min(560px, 100%);
  padding: 28px 32px;
  min-height: 360px;

  border-radius: 20px;
  background: rgba(12, 14, 19, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  overflow: hidden;
  position: relative;

  /* track tuning (laser train) */
  --trackInset: 8px;
  --trackRadius: 20px;

  /* TRAIN SIZE */
  --beamLen: 380px;
  --beamThick: 3px;

  /* LASER GLOW */
  --beamGlow: 36px;
}

.panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: radial-gradient(
    520px 160px at 70% 10%,
    rgba(224,255,91,0.18),
    transparent 55%
  );
  opacity: 0.55;
  pointer-events: none;
}

/* ✅ Make the before/after stack feel larger & less cramped */
.panel-before { transform: translateY(-56px) scale(1); opacity: 0.94; }
.panel-after  { transform: translateY(56px); border-color: rgba(224,255,91,0.22); }

/* card header */
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px; /* ✅ was 14px 16px, now panel has padding */
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.panel-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #9aa0ad;
  font-weight: 800;
}

.panel-status {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #cfd3de;
}

.panel-badges { display: flex; gap: 8px; align-items: center; }

.pill-verified {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(224,255,91,0.16);
  border: 1px solid rgba(224,255,91,0.32);
  color: #dfff73;
  font-weight: 800;
}

.pill-acc {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #cfd3de;
  font-weight: 700;
}

/* person row */
.panel-person {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 0 0 10px; /* ✅ align to panel padding */
  position: relative;
  z-index: 1;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.2));
}

.avatar-dim { filter: grayscale(1) contrast(0.95) brightness(0.95); opacity: 0.9; }

.avatar-bright {
  border-color: rgba(224,255,91,0.25);
  box-shadow: 0 0 0 3px rgba(224,255,91,0.08);
}

.who .name {
  font-weight: 800;
  color: #e7e9ef;
  font-size: 14px;
}

.who .meta {
  margin-top: 2px;
  color: #a0a3ad;
  font-size: 12px;
}

.who .link {
  margin-top: 6px;
  color: #7f8798;
  font-size: 11px;
}

/* lines */
.panel-lines {
  padding: 6px 0 0; /* ✅ align to panel padding */
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.lbl { color: #aab0be; font-weight: 700; }
.val { color: #e7e9ef; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.dash { color: #5f677a; font-weight: 800; }

/* footer chips */
.panel-footer {
  padding: 14px 0 0; /* ✅ align to panel padding */
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #9aa0ad;
  font-weight: 900;
}

.chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cfd3de;
}

/* arrow bubble */
.enrich-drop {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.drop-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #e0ff5b;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  transform: translateY(6px);
}

/* responsive */
@media (max-width: 980px) {
  .enrich .container{ max-width: 1200px; }
  .enrich-grid { grid-template-columns: 1fr; gap: 50px; }
  .enrich-right { min-height: auto; }

  /* Stack cards normally on mobile */
  .panel {
    width: min(520px, 92vw);
    transform: none !important;
    margin: 0 auto 24px;
  }

  /* Remove center arrow on mobile */
  .enrich-drop {
    display: none;
  }
}

/* ================= LOGOS ================= */

.logos {
  padding: 60px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.logos-row {
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
  font-weight: 500;
}

/* ================= FEATURES ================= */

.features {
  padding: 120px 0;
}

.features h2 {
  text-align: center;
  font-size: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: #111;
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #e0ff5b44;
}

/* ================= WORKFLOW ================= */

.workflow {
  padding: 120px 0;
  background: #0e131a;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workflow-visual {
  height: 300px;
  border-radius: 20px;
  background: linear-gradient(135deg,#e0ff5b33,#000);
}

/* ================= CTA ================= */

.cta {
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  padding: 60px;
  border-radius: 20px;
  background: #e0ff5b;
  color: black;
}

.cta-box h2 {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */

.footer {
  padding: 80px 0 30px;
  background: black;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer a {
  display: block;
  color: #aaa;
  margin: 6px 0;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #e0ff5b;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #666;
}

/* ================= ANIMATIONS ================= */

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .hero-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats::before {
    width: 100%;
  }
}

/* ============================================================
   ICP DATA MAPPING SECTION (GREEN THEME, MATCHES SCREENSHOT)
   ============================================================ */

.icp {
  padding: 120px 0;
  position: relative;
  background: #0b0f14;
  overflow: hidden;
}

.icp::before {
  content: "";
  position: absolute;
  inset: -200px -120px auto -120px;
  height: 520px;
  background: radial-gradient(
    700px 260px at 25% 35%,
    rgba(224,255,91,0.12),
    transparent 60%
  );
  pointer-events: none;
  filter: blur(6px);
  opacity: 0.9;
}

.icp-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  z-index: 1;
}

/* ---------- LEFT: Console ---------- */
.icp-console {
  width: min(440px, 100%);
  border-radius: 18px;
  background: rgba(12, 14, 19, 0.76);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 70px rgba(0,0,0,0.6);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  overflow: hidden;
  position: relative;
}

.icp-console::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: radial-gradient(
    560px 180px at 60% 10%,
    rgba(224,255,91,0.18),
    transparent 60%
  );
  opacity: 0.45;
  pointer-events: none;
}

.icp-console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.icp-console-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfd3de;
  font-weight: 900;
}

.icp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(224,255,91,0.25);
  border: 1px solid rgba(224,255,91,0.45);
  box-shadow: 0 0 0 3px rgba(224,255,91,0.08);
}

.icp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #e7e9ef;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.icp-spinner {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(224,255,91,0.25);
  border-top-color: rgba(224,255,91,0.95);
  display: inline-block;
  animation: icpSpin 0.9s linear infinite;
}

@keyframes icpSpin {
  to { transform: rotate(360deg); }
}

.icp-console-sub {
  padding: 12px 16px 0;
  color: #8f96a6;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.icp-block {
  padding: 14px 16px;
  position: relative;
  z-index: 1;
}

.icp-block-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
  margin-bottom: 10px;
}

.icp-criteria {
  display: grid;
  gap: 10px;
}

.icp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.icp-row-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cfd3de;
  font-size: 12px;
  font-weight: 700;
}

.icp-ic { opacity: 0.9; }

.icp-row-right {
  color: #e7e9ef;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Matching + progress */
.icp-matching {
  margin: 2px 16px 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(560px 180px at 20% 20%, rgba(224,255,91,0.12), transparent 60%),
    rgba(255,255,255,0.02);
  position: relative;
  z-index: 1;
}

.icp-match-title {
  font-weight: 900;
  color: #eaeaf0;
  font-size: 13px;
}

.icp-match-sub {
  margin-top: 4px;
  color: #9aa0ad;
  font-size: 11px;
}

.icp-progress {
  margin-top: 10px;
}

.icp-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.icp-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224,255,91,0.75), rgba(224,255,91,0.22));
  box-shadow: 0 0 20px rgba(224,255,91,0.18);
}

.icp-progress-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: #9aa0ad;
  font-size: 11px;
  gap: 10px;
}

.icp-progress-pct {
  color: #cfd3de;
  font-weight: 800;
}

.icp-big {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: right;
}

.icp-big-sub {
  margin-top: 2px;
  font-size: 11px;
  color: #9aa0ad;
  text-align: right;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Preview list */
.icp-cards {
  display: grid;
  gap: 10px;
}

.icp-person {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.icp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.2));
}

.icp-avatar.a1 { box-shadow: 0 0 0 3px rgba(224,255,91,0.06); }
.icp-avatar.a2 { opacity: 0.95; }
.icp-avatar.a3 { opacity: 0.92; }

.icp-person-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.icp-person-name {
  font-weight: 900;
  color: #eaeaf0;
  font-size: 13px;
}

.icp-verified {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(224,255,91,0.14);
  border: 1px solid rgba(224,255,91,0.28);
  color: #dfff73;
  font-weight: 900;
}

.icp-person-meta {
  margin-top: 4px;
  font-size: 11px;
  color: #9aa0ad;
}

.icp-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icp-tag {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cfd3de;
  font-weight: 700;
}

/* Bottom mini stats */
.icp-console-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.icp-mini {
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.icp-mini-val {
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.icp-mini-lbl {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
}

/* ---------- RIGHT: Copy + Feature Cards ---------- */
.icp-right {
  max-width: 620px;
}

.icp-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #eaeaf0;
}

.icp-title span {
  color: #e0ff5b;
}

.icp-sub {
  margin-top: 18px;
  color: #a0a3ad;
  line-height: 1.7;
  font-size: 14px;
  max-width: 560px;
}

.icp-features {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.icp-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 12, 16, 0.55);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.icp-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    720px 210px at 20% 40%,
    rgba(224,255,91,0.14),
    transparent 60%
  );
  opacity: 0;
  transition: 0.25s ease;
}

.icp-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(224,255,91,0.25);
}

.icp-feature:hover::before { opacity: 1; }

.icp-feature-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e0ff5b;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.icp-feature-txt { position: relative; z-index: 1; }

.icp-feature-name {
  font-weight: 900;
  color: #eaeaf0;
  font-size: 14px;
}

.icp-feature-desc {
  margin-top: 6px;
  color: #9aa0ad;
  font-size: 12px;
  line-height: 1.6;
}

/* CTA button */
.icp-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(224,255,91,0.12);
  border: 1px solid rgba(224,255,91,0.22);
  color: #eaeaf0;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.icp-cta-arrow { color: #e0ff5b; }

.icp-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(224,255,91,0.40);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .icp-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .icp-console {
    margin: 0 auto;
  }
  .icp-title {
    font-size: 44px;
  }
}

/* ============================================================
   New Lasers (TRAIN ON TRACK)
   ============================================================ */

.laser-train{
  position: absolute;
  z-index: 5;
  pointer-events: none;

  width: var(--beamLen);
  height: var(--beamThick);
  border-radius: 999px;

  /* FADE TAIL → SOLID HEAD */
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.45) 60%,
    currentColor 80%,
    currentColor 100%
  );

  /* laser glow */
  filter:
    drop-shadow(0 0 calc(var(--beamGlow) * 0.6) currentColor)
    drop-shadow(0 0 var(--beamGlow) currentColor)
    drop-shadow(0 0 calc(var(--beamGlow) * 1.6) currentColor);

  /* closed loop rail around the card */
  offset-path: inset(var(--trackInset) round var(--trackRadius));
  offset-rotate: auto;
  offset-anchor: 50% 50%;

  /* move along the track */
  animation: railLoop 4.4s linear infinite;
  will-change: offset-distance, transform;
}

/* The loop movement */
@keyframes railLoop{
  to { offset-distance: 100%; }
}

/* Color per card */
.panel-before .laser-train{ color: #ff2b2b; } /* red */
.panel-after  .laser-train{ color: #caff3d; } /* green */

/* ============================================================
   HOW IT WORKS (CLONE) – GREEN THEME (matches site accent)
   ============================================================ */

.hiw {
  position: relative;
  padding: 120px 0;
  background: #0b0f14;
  overflow: hidden;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 28%,
      rgba(224,255,91,0.12),
      rgba(224,255,91,0.04) 30%,
      transparent 65%
    ),
    radial-gradient(900px 520px at 50% 65%,
      rgba(255,255,255,0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #0b0f14 0%, #080a0e 100%);
  pointer-events: none;
}

.hiw-wrap {
  position: relative;
  text-align: center;
}

.hiw-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  color: rgba(231,233,239,0.92);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hiw-title {
  margin: 18px 0 0;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #eaeaf0;
}

.hiw-title span {
  background: linear-gradient(180deg,
    rgba(224,255,91,0.95),
    rgba(224,255,91,0.55)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiw-sub {
  margin: 14px auto 0;
  max-width: 760px;
  color: #a0a3ad;
  line-height: 1.7;
  font-size: 15px;
}

/* Flow row */
.hiw-flow {
  margin-top: 46px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.hiw-connector {
  align-self: center;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  opacity: 0.85;
  margin-top: 58px;
}

/* Cards */
.hiw-card {
  position: relative;
  width: 330px;
  padding: 42px 22px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hiw-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: radial-gradient(520px 220px at 35% 25%,
    rgba(224,255,91,0.10),
    transparent 55%
  );
  opacity: 0.55;
  pointer-events: none;
}

.hiw-card.is-featured {
  border-color: rgba(224,255,91,0.18);
  box-shadow: 0 30px 92px rgba(0,0,0,0.62);
}

.hiw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,255,91,0.25);
  box-shadow: 0 34px 110px rgba(0,0,0,0.65);
}

/* Number */
.hiw-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(224,255,91,0.18);
  border: 1px solid rgba(224,255,91,0.35);
  box-shadow: 0 18px 60px rgba(224,255,91,0.18);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #f3ffd0;
}

/* Icon */
.hiw-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: rgba(224,255,91,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.hiw-icon svg { width: 28px; height: 28px; }

.hiw-icon-ring { position: relative; }
.hiw-icon-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px dashed rgba(224,255,91,0.35);
  opacity: 0.7;
}

/* Text */
.hiw-card-title {
  margin-top: 6px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #eaeaf0;
}

.hiw-card-sub {
  margin-top: 10px;
  color: rgba(160,163,173,0.95);
  font-size: 13px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1020px) {
  .hiw-flow {
    flex-direction: column;
    align-items: center;
  }

  .hiw-connector {
    width: 2px;
    height: 44px;
    margin: 10px 0;
    background: linear-gradient(180deg,
      transparent,
      rgba(255,255,255,0.12),
      transparent
    );
  }

  .hiw-title { font-size: 44px; }
  .hiw-card { width: min(420px, 92vw); }
}

/* ============================================================
   SCIENCE / ACCURACY SECTION
   ============================================================ */

.science {
  position: relative;
  padding: 120px 0;
  background: #0b0f14;
  overflow: hidden;
}

.science-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 20%,
      rgba(224,255,91,0.12),
      rgba(224,255,91,0.04) 30%,
      transparent 65%
    ),
    linear-gradient(180deg, #0b0f14 0%, #080a0e 100%);
  pointer-events: none;
}

.science-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Header */
.science-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #eaeaf0;
}

.science-title span {
  background: linear-gradient(180deg,
    rgba(224,255,91,0.95),
    rgba(224,255,91,0.55)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.science-sub {
  margin: 16px auto 0;
  max-width: 760px;
  color: #a0a3ad;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid */
.science-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cards */
.science-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.science-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: radial-gradient(
    520px 220px at 20% 20%,
    rgba(224,255,91,0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.science-card:hover {
  border-color: rgba(224,255,91,0.35);
  box-shadow: 0 40px 120px rgba(0,0,0,0.75);
}

.science-card:hover::before {
  opacity: 1;
}

/* Icon */
.science-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #e0ff5b;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

/* Text */
.science-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #eaeaf0;
}

.science-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #9aa0ad;
}

/* Stats */
.science-stats {
  margin-top: 60px;
  padding: 28px 30px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
}

.science-stat {
  text-align: center;
}

.science-stat-val {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.science-stat-lbl {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
  .science-title {
    font-size: 44px;
  }
  .science-stats {
    grid-template-columns: 1fr 1fr;
  }
}

:root{
  --bg:#070b10;
  --card:#0c1117;
  --border: rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.10);
  --text:#eef1f6;
  --muted:#9aa3ad;
  --muted2:#7e8793;
  --green:#e0ff5b;
}




/* center like screenshot */
/* Contact section should behave like a normal section on the page */
.contact-wrap{
  padding: 120px 0;
  background: #0b0f14;
}

.contact-wrap .container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Center the card without forcing full-page grid */
.contact-card{
  margin: 0 auto;
}


.contact-card{
  width:min(900px, 96vw);
  border-radius: 22px;
  padding: 22px 22px 18px;
  position:relative;
  overflow:hidden;

  /* glass */
  background:
    radial-gradient(1200px 520px at 28% 36%, rgba(224,255,91,.13), transparent 58%),
    radial-gradient(900px 420px at 72% 18%, rgba(255,255,255,.06), transparent 55%),
    rgba(8,12,16,.84);

  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 90px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
}

/* subtle inner vignette like screenshot */
.contact-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 22px;
  background:
    radial-gradient(900px 360px at 50% 18%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 320px at 30% 50%, rgba(224,255,91,.08), transparent 62%);
  opacity:.55;
  pointer-events:none;
}

.contact-title{
  margin:0;
  font-size: 22px;
  font-weight: 850;
  letter-spacing:-0.01em;
  position:relative;
  z-index:1;
}

.contact-sub{
  margin:10px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 780px;
  position:relative;
  z-index:1;
}

.contact-form{
  position:relative;
  z-index:1;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}

.field{ margin-top: 14px; }

.label{
  display:block;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(210,217,226,.75);
  margin: 0 0 10px;
}

.control{
  position:relative;
  border-radius: 14px;
}

/* input shell */
input, textarea{
  width:100%;
  border:none;
  outline:none;
  color: rgba(238,241,246,.90);
  font-size: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 0 1px rgba(0,0,0,.15);
  border-radius: 14px;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

textarea{
  padding: 14px 14px;
  min-height: 96px;
  resize: none;
}

/* placeholder like screenshot */
input::placeholder,
textarea::placeholder{
  color: rgba(160,167,176,.62);
}

/* focus ring (soft green) */
input:focus,
textarea:focus{
  border-color: rgba(224,255,91,.25);
  box-shadow:
    0 0 0 4px rgba(224,255,91,.07),
    inset 0 1px 0 rgba(255,255,255,.05);
}

/* big button pill */
.submit{
  width:100%;
  margin-top: 16px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(224,255,91,.22);
  background:
    radial-gradient(900px 200px at 50% 10%, rgba(224,255,91,.14), transparent 60%),
    rgba(255,255,255,.02);
  color: rgba(238,241,246,.92);
  font-weight: 800;
  font-size: 14px;
  cursor:pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  box-shadow:
    0 18px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.submit:hover{
  transform: translateY(-1px);
  border-color: rgba(224,255,91,.32);
  box-shadow:
    0 22px 75px rgba(0,0,0,.55),
    0 0 0 1px rgba(224,255,91,.06),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.submit:active{
  transform: translateY(0px);
}

.contact-foot{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(154,163,173,.78);
  padding-left: 2px;
}

/* toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: rgba(10,12,16,.88);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(238,241,246,.92);
  font-size: 13px;
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* responsive like screenshot */
@media (max-width: 760px){
  .grid-2{ grid-template-columns: 1fr; gap: 14px; }
  .contact-card{ padding: 18px 16px 16px; }
}





/* ============================================================
   ENRICHMENT SECTION – REMOVE ARROW + STOP CARD MOVEMENT
   ============================================================ */

/* Remove the center arrow entirely */
.enrich-drop {
  display: none !important;
}

/* Stop BEFORE/AFTER cards from shifting up/down */
.enrich-right .panel-before,
.enrich-right .panel-after {
  transform: none !important;
}

/* If your tilt/scroll script applies transforms via data-tilt, kill them too */
.enrich-right .panel[data-tilt] {
  transform: none !important;
}

/* Optional: keep nice spacing now that they no longer overlap */
.enrich-right .panel-before {
  margin-bottom: 18px;
}

/* Optional: reduce min-height so there isn’t a big empty gap */
.enrich-right {
  min-height: auto !important;
}
/* ============================================================
   ENRICHMENT – COLOR CODE BEFORE/AFTER HEADINGS
   ============================================================ */

/* BEFORE ENRICHMENT = red */
.panel-before .panel-kicker{
  color: #ff3b3b !important;
}

/* AFTER ENRICHMENT = green */
.panel-after .panel-kicker{
  color: #55ff6a !important;
}
/* ============================================================
   ENRICHMENT – BIGGER + COLOR MATCH
   ============================================================ */

/* Make both labels a bit bigger */
.panel-kicker{
  font-size: 12.5px !important;   /* was 11px */
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

/* BEFORE = red */
.panel-before .panel-kicker{
  color: #ff3b3b !important;
}

/* AFTER = theme green */
.panel-after .panel-kicker{
  color: #e0ff5b !important;
}
/* ============================================================
   ENRICHMENT – STATUS PILL STYLES (INCOMPLETE / VERIFIED)
   ============================================================ */

/* Base size match (same for both pills) */
.panel-status,
.pill-verified{
  font-size: 11.5px !important;
  font-weight: 800 !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  letter-spacing: 0.02em;
}

/* INCOMPLETE – reddish (matches BEFORE card) */
.panel-before .panel-status{
  background: rgba(255, 59, 59, 0.14) !important;
  border: 1px solid rgba(255, 59, 59, 0.35) !important;
  color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.08);
}

/* VERIFIED – theme green (AFTER card) */
.panel-after .pill-verified{
  background: rgba(224, 255, 91, 0.18) !important;
  border: 1px solid rgba(224, 255, 91, 0.38) !important;
  color: #e0ff5b !important;
  box-shadow: 0 0 0 3px rgba(224, 255, 91, 0.10);
}
/* ============================================================
   ENRICHMENT – PROFILE AVATAR (FORMAL LADY)
   ============================================================ */

/* Base avatar image (royalty-free style portrait) */
.avatar{
  background-image: url("https://images.unsplash.com/photo-1607746882042-944635dfe10e?q=80&w=400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* BEFORE enrichment – muted / incomplete */
.panel-before .avatar{
  filter: grayscale(1) contrast(0.9) brightness(0.85);
  box-shadow: none;
}

/* AFTER enrichment – verified / enhanced */
.panel-after .avatar{
  filter: none;
  border-color: rgba(224,255,91,0.35);
  box-shadow:
    0 0 0 3px rgba(224,255,91,0.10),
    0 0 22px rgba(224,255,91,0.35);
}
/* ============================================================
   ENRICHMENT – ADDITIONAL INSIGHTS = VERIFIED STYLE
   ============================================================ */

/* Make AFTER enrichment chips match VERIFIED pill */
.panel-after .chip{
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(224,255,91,0.18);
  border: 1px solid rgba(224,255,91,0.38);
  color: #e0ff5b;

  box-shadow:
    0 0 0 3px rgba(224,255,91,0.10),
    0 8px 24px rgba(0,0,0,0.35);
}

/* Optional: subtle hover polish */
.panel-after .chip:hover{
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px rgba(224,255,91,0.14),
    0 12px 30px rgba(0,0,0,0.45);
}
/* ============================================================
   ENRICHMENT – RED GLOWING DASHES (INCOMPLETE)
   ============================================================ */

/* BEFORE enrichment dashes = glowing red */
.panel-before .dash{
  color: #ff3b3b !important;

  text-shadow:
    0 0 6px rgba(255, 59, 59, 0.55),
    0 0 14px rgba(255, 59, 59, 0.45),
    0 0 26px rgba(255, 59, 59, 0.35);
}
/* ============================================================
   PRICING / TESTIMONIALS / FAQ — RESTORE "SCREENSHOT" STYLING
   Paste at END of style.css
   ============================================================ */

/* ---------- Shared helpers ---------- */
.pricing, .proof, .faq{
  position: relative;
  background: #0b0f14;
  overflow: hidden;
  padding: 120px 0;
}

/* subtle vignette/glow like screenshot */
.pricing-bg, .proof-bg, .faq-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1000px 480px at 50% 18%,
      rgba(224,255,91,0.10),
      rgba(255,255,255,0.05) 28%,
      transparent 65%
    ),
    linear-gradient(180deg, #0b0f14 0%, #080a0e 100%);
}

.pricing-wrap, .proof-wrap, .faq-wrap{ position:relative; z-index:1; }

.pricing-top, .proof-top, .faq-top{ text-align:center; }

.pricing-pill, .faq-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  color: rgba(231,233,239,0.92);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-title, .proof-title, .faq-title{
  margin: 18px 0 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #eaeaf0;
}

.pricing-title span,
.proof-title span,
.faq-title span{
  color: #e0ff5b;
}

.pricing-sub, .faq-sub{
  margin: 14px auto 0;
  max-width: 760px;
  color: #a0a3ad;
  line-height: 1.7;
  font-size: 14px;
}

/* ============================================================
   PRICING — cards like screenshot
   ============================================================ */

.pricing-grid{
  margin-top: 44px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  text-align:left;
}

/* Card shell */
.price-card{
  position: relative;
  border-radius: 18px;
  padding: 22px 22px 18px;
  overflow:hidden;

  background:
    radial-gradient(900px 420px at 30% 22%, rgba(224,255,91,0.10), transparent 58%),
    radial-gradient(700px 320px at 72% 18%, rgba(255,255,255,0.06), transparent 58%),
    rgba(10,12,16,0.78);

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.70);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 18px;
  background:
    radial-gradient(900px 360px at 50% 18%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 320px at 30% 50%, rgba(224,255,91,.08), transparent 62%);
  opacity:.55;
  pointer-events:none;
}

.price-card:hover{
  transform: translateY(-4px);
  border-color: rgba(224,255,91,0.22);
  box-shadow: 0 40px 120px rgba(0,0,0,0.78);
}

.price-card.is-featured{
  border-color: rgba(224,255,91,0.30);
  box-shadow: 0 40px 120px rgba(0,0,0,0.82);
}

/* Top text */
.price-kicker{
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
  position:relative;
  z-index:1;
}

.price-name{
  margin-top: 8px;
  font-size: 16px;
  font-weight: 900;
  color: #eaeaf0;
  position:relative;
  z-index:1;
}

.price-desc{
  margin-top: 6px;
  color: #8f96a6;
  font-size: 12px;
  line-height: 1.55;
  position:relative;
  z-index:1;
}

/* Big "Request pricing" bar */
.price-tag{
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 14px 14px;
  position:relative;
  z-index:1;
}

.price-value{
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Feature list styled like rows w/ green dots */
.price-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display:grid;
  gap: 10px;
  position:relative;
  z-index:1;
}

.price-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #cfd3de;
  font-size: 11px;
  line-height: 1.4;
}

/* green dot */
.price-list li::before{
  content:"";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(224,255,91,0.35);
  box-shadow: 0 0 0 3px rgba(224,255,91,0.08);
  background: rgba(224,255,91,0.10);
  flex: 0 0 auto;
}

/* CTA button */
.price-btn{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.01em;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #eaeaf0;

  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.price-card.is-featured .price-btn{
  border-color: rgba(224,255,91,0.28);
  background: rgba(224,255,91,0.12);
}

.price-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(224,255,91,0.28);
  box-shadow: 0 22px 75px rgba(0,0,0,.55);
}

/* mobile */
@media (max-width: 980px){
  .pricing-title{ font-size: 44px; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-value{ font-size: 28px; }
}

/* ============================================================
   TESTIMONIALS — restore screenshot layout
   ============================================================ */

.proof-title{
  text-align:center;
}

.proof-grid{
  margin-top: 44px;
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: stretch;
}

.tcard{
  position: relative;
  border-radius: 18px;
  padding: 24px 22px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 30% 22%, rgba(224,255,91,0.08), transparent 58%),
    rgba(10,12,16,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.70);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
}

.tcard-big{ padding: 28px 26px; }

.tquote-mark{
  position:absolute;
  top: 18px;
  left: 18px;
  font-size: 28px;
  color: rgba(224,255,91,0.35);
  font-weight: 900;
}

.tquote{
  margin: 0;
  color: #d6dbe6;
  font-size: 13px;
  line-height: 1.75;
}

.tquote-sm{
  font-size: 12px;
  line-height: 1.7;
}

.tmeta{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}

.tavatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: #e0ff5b;
  color: #0b0f14;
  font-weight: 900;
  font-size: 11px;
}

.tname{
  font-weight: 900;
  color: #eaeaf0;
  font-size: 12px;
}
.trole{
  margin-top: 2px;
  color: #9aa0ad;
  font-size: 10px;
}

.proof-smalls{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

/* bottom stats row */
.proof-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.statbox{
  position:relative;
  border-radius: 14px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.statbox-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}

.statval{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #e0ff5b;
}

.statlbl{
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0ad;
  font-weight: 900;
}

/* mobile */
@media (max-width: 980px){
  .proof-title{ font-size: 44px; }
  .proof-grid{ grid-template-columns: 1fr; }
  .proof-stats{ grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ — pill rows like screenshot
   ============================================================ */

.faq-top{ text-align:center; }

.faq-list{
  margin: 44px auto 0;
  max-width: 720px;
  display:grid;
  gap: 12px;
  text-align:left;
}

.faq-item{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
}

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 14px;
  background: transparent;
  border: none;
  cursor:pointer;
  color: #eaeaf0;
  font-weight: 800;
  font-size: 12px;
}

.faq-ic{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #e0ff5b;
}

/* Answer reveal */
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a-inner{
  padding: 0 14px 14px;
  color: #a0a3ad;
  font-size: 12px;
  line-height: 1.7;
}

/* Your JS toggles .is-open */
.faq-item.is-open .faq-a{
  max-height: 260px;
}

/* mobile */
@media (max-width: 980px){
  .faq-title{ font-size: 44px; }
}
/* ============================================================
   TYPOGRAPHY SCALE UP — TESTIMONIALS + FAQ
   ============================================================ */

/* ---------- TESTIMONIALS ---------- */

/* main testimonial quote */
.tquote{
  font-size: 16.5px;
  line-height: 1.8;
}

/* smaller testimonial cards */
.tquote-sm{
  font-size: 14.5px;
  line-height: 1.75;
}

/* name + role */
.tname{
  font-size: 14px;
}
.trole{
  font-size: 12px;
}

/* stats */
.statval{
  font-size: 32px;
}
.statlbl{
  font-size: 10.5px;
}


/* ---------- FAQ ---------- */

/* question text */
.faq-q{
  font-size: 15.5px;
  padding: 18px 18px;
}

/* answer text */
.faq-a-inner{
  font-size: 14.5px;
  line-height: 1.8;
}

/* icon size */
.faq-ic{
  width: 34px;
  height: 34px;
  font-size: 14px;
}


/* ---------- MOBILE TWEAK ---------- */
@media (max-width: 980px){
  .tquote{ font-size: 15.5px; }
  .tquote-sm{ font-size: 14px; }

  .faq-q{ font-size: 15px; }
  .faq-a-inner{ font-size: 14px; }
}
/* ============================================================
   TYPOGRAPHY SCALE UP — PRICING
   ============================================================ */

/* plan name */
.price-name{
  font-size: 20px;
}

/* short description under plan name */
.price-desc{
  font-size: 14.5px;
  line-height: 1.65;
}

/* BIG "Request pricing" bar */
.price-value{
  font-size: 36px;
}

/* feature list rows */
.price-list li{
  font-size: 13.5px;
  line-height: 1.55;
}

/* CTA button text */
.price-btn{
  font-size: 14px;
  height: 52px;
}

/* kicker text (MOST POPULAR etc) */
.price-kicker{
  font-size: 11.5px;
}

/* ---------- MOBILE TUNING ---------- */
@media (max-width: 980px){
  .price-name{ font-size: 19px; }
  .price-desc{ font-size: 14px; }
  .price-value{ font-size: 32px; }
  .price-list li{ font-size: 13px; }
  .price-btn{ font-size: 14px; height: 50px; }
}

/* ============================================================
   TYPOGRAPHY SCALE UP — CANDIDATE ENRICHMENT (RIGHT CARD)
   ============================================================ */

/* target the right-hand pricing card */
.pricing-grid > .price-card:last-child .price-name{
  font-size: 21px;
}

.pricing-grid > .price-card:last-child .price-desc{
  font-size: 15px;
  line-height: 1.7;
}

.pricing-grid > .price-card:last-child .price-value{
  font-size: 38px;
}

.pricing-grid > .price-card:last-child .price-list li{
  font-size: 14.5px;
  line-height: 1.6;
}

.pricing-grid > .price-card:last-child .price-btn{
  font-size: 15px;
  height: 54px;
}

/* kicker (BEST VALUE PER CONTACT) */
.pricing-grid > .price-card:last-child .price-kicker{
  font-size: 12px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 980px){
  .pricing-grid > .price-card:last-child .price-name{
    font-size: 20px;
  }
  .pricing-grid > .price-card:last-child .price-desc{
    font-size: 14.5px;
  }
  .pricing-grid > .price-card:last-child .price-value{
    font-size: 34px;
  }
  .pricing-grid > .price-card:last-child .price-list li{
    font-size: 14px;
  }
}
/* ============================================================
   PRICING FEATURE ICONS — GREEN GRADIENT THEME
   ============================================================ */

/* icon container (left circle) */
.price-list li > .icon,
.price-list li .icon,
.price-list li svg,
.price-list li img{
  filter: grayscale(1) brightness(1.4);
}

/* if icons sit inside a circular wrapper */
.price-list li .icon-wrap,
.price-list li .icon,
.price-list li .feature-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background:
    radial-gradient(120% 120% at 30% 30%,
      rgba(224,255,91,0.35),
      rgba(224,255,91,0.12) 45%,
      rgba(224,255,91,0.05) 70%
    );

  border: 1px solid rgba(224,255,91,0.35);
  box-shadow:
    0 0 0 3px rgba(224,255,91,0.10),
    0 10px 30px rgba(224,255,91,0.15);
}

/* SVG icons inside */
.price-list li svg{
  width: 16px;
  height: 16px;
  fill: #e0ff5b !important;
  stroke: #e0ff5b !important;
}

/* IMG icons (png/webp/etc) */
.price-list li img{
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter:
    grayscale(1)
    brightness(1.4)
    sepia(1)
    hue-rotate(35deg)
    saturate(4);
}
.price-list li{
  color: #e0ff5b;
}
/* ============================================================
   ICP FEATURE ICONS — FORCE GREEN THEME (emoji-safe)
   ============================================================ */

/* Stronger green glass icon container */
.icp-feature-ic{
  background:
    radial-gradient(120% 120% at 30% 30%,
      rgba(224,255,91,0.35),
      rgba(224,255,91,0.14) 45%,
      rgba(224,255,91,0.06) 70%
    ) !important;

  border: 1px solid rgba(224,255,91,0.32) !important;

  box-shadow:
    0 0 0 3px rgba(224,255,91,0.10),
    0 12px 34px rgba(224,255,91,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;

  color: #e0ff5b !important; /* affects SVG/text, not emoji */
}

/* Dim emoji so it doesn't scream multicolor */
.icp-feature-ic{
  filter: saturate(0) brightness(1.25) contrast(1.1);
}
/* ============================================================
   HERO — "DATABASE SEARCH" ANIMATION LAYER
   ============================================================ */
/* ============================================================
   HERO SEARCH FX — DIMMED / SUBTLE VERSION (FULL REPLACEMENT)
   ============================================================ */

.hero { position: relative; overflow: hidden; }
.hero-content{ position: relative; z-index: 2; } /* ensure text above fx */

.hero-searchfx{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;

  /* MASTER DIMMER */
  opacity: .48;              /* try .22 – .35 */
  filter: blur(.6px);        /* softens harsh lines */

  /* keep effect mostly behind headline area */
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, #000 60%, transparent 82%);
          mask-image: radial-gradient(circle at 50% 42%, #000 0%, #000 60%, transparent 82%);
}

/* vignette fade (premium: keeps focus on hero text) */
.hero-searchfx::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at 50% 40%,
    transparent 0%,
    rgba(11,15,20,.55) 70%,
    rgba(11,15,20,.85) 100%
  );
  pointer-events:none;
}

/* faint database grid */
.searchfx-grid{
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 340px at 50% 35%, rgba(224,255,91,.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(224,255,91,.05) 0px, rgba(224,255,91,.05) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(224,255,91,.04) 0px, rgba(224,255,91,.04) 1px, transparent 1px, transparent 46px);
  opacity: .14;              /* was .22 */
  filter: blur(.2px);
}

/* scanning beam */
.searchfx-scan{
  position:absolute;
  left:-20%;
  top: 18%;
  width: 140%;
  height: 120px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(224,255,91,.05) 40%,
    rgba(224,255,91,.16) 50%,
    rgba(224,255,91,.05) 60%,
    transparent 100%
  );
  filter: blur(3px);         /* softer */
  opacity: .25;              /* was .45 */
  animation: searchScan 5.5s ease-in-out infinite;
}
@keyframes searchScan{
  0%   { transform: translateY(0px); opacity: .14; }
  40%  { opacity: .28; }
  50%  { transform: translateY(180px); opacity: .30; }
  100% { transform: translateY(320px); opacity: .14; }
}

/* query bar */
.searchfx-bar{
  position:absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  width: min(860px, 92vw);
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(224,255,91,.14); /* slightly softer */
  background:
    radial-gradient(900px 120px at 50% 10%, rgba(224,255,91,.10), transparent 65%),
    rgba(0,0,0,.32); /* darker glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 0 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  opacity: .78;              /* slightly dimmer */
}

.searchfx-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(224,255,91,.75); /* dimmer */
  box-shadow: 0 0 0 4px rgba(224,255,91,.10), 0 0 18px rgba(224,255,91,.18);
  flex: 0 0 auto;
}

.searchfx-text{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size: 13px;
  color: rgba(235,240,250,.80); /* slightly dimmer */
  letter-spacing: .01em;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.searchfx-label{
  color: rgba(224,255,91,.62); /* dimmer */
  font-weight: 700;
  margin-right: 8px;
}

.searchfx-caret{
  color: rgba(224,255,91,.70);
  animation: caretBlink 1s steps(1,end) infinite;
}
@keyframes caretBlink{ 50% { opacity: 0; } }

/* "results" stream */
.searchfx-stream{
  position:absolute;
  left: 50%;
  top: calc(18% + 76px);
  transform: translateX(-50%);
  width: min(860px, 92vw);
  height: 210px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.28); /* darker */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  opacity: .55;              /* was .75 */
}

.searchfx-lines{
  position:absolute;
  inset: 14px 16px;
  display:grid;
  gap: 10px;
  animation: streamScroll 6.5s linear infinite;
}

.searchfx-line{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size: 12px;
  color: rgba(200,210,225,.75);
  opacity: .7;               /* was .9 */
  filter: blur(.25px);       /* depth / “far away” */
}

.searchfx-line:nth-child(5),
.searchfx-line:nth-child(6),
.searchfx-line:nth-child(7){
  color: rgba(224,255,91,.60); /* was .78 */
}

@keyframes streamScroll{
  0%   { transform: translateY(0); }
  100% { transform: translateY(-120px); }
}

/* Responsive: reduce intensity further */
@media (max-width: 900px){
  .hero-searchfx{ opacity: .22; }
  .searchfx-stream{ height: 180px; }
  .searchfx-bar{ opacity: .70; }
}

/* ============================================================
   HERO SEARCH FX — ALIGN UNDER HEADER
   ============================================================ */

/* Push the entire search animation down to hero start */
.hero-searchfx{
  top: 90px;              /* ← adjust if header height changes */
  height: calc(100% - 90px);
}

/* Move individual elements slightly up so they sit near hero top */
.searchfx-bar{
  top: 6%;
}

.searchfx-stream{
  top: calc(6% + 76px);
}

.searchfx-scan{
  top: 8%;
}

/* ============================================================
   CONTACT FORM V2 — BLACK/WHITE + YELLOW-GREEN ACCENT
   Paste at END of style.css to override previous contact styles
   ============================================================ */

:root{
  --c-bg: #07090d;
  --c-card: rgba(10, 12, 16, 0.78);
  --c-border: rgba(255,255,255,0.10);
  --c-border2: rgba(255,255,255,0.16);
  --c-text: rgba(245, 247, 252, 0.92);
  --c-muted: rgba(165, 172, 184, 0.72);
  --c-muted2: rgba(165, 172, 184, 0.52);

  /* subtle yellow-green accent (not neon) */
  --c-accent: #e6ff6a;       /* slightly warmer than pure green */
  --c-accentSoft: rgba(230,255,106,0.16);
  --c-accentRing: rgba(230,255,106,0.22);
}

/* section spacing stays normal */
#request.contact-wrap{
  padding: 120px 0;
  background: #0b0f14;
}

/* card */
#request .contact-card--v2{
  width: min(920px, 96vw);
  margin: 0 auto;
  border-radius: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(1200px 520px at 28% 28%, rgba(230,255,106,.12), transparent 58%),
    radial-gradient(900px 420px at 72% 18%, rgba(255,255,255,.06), transparent 56%),
    var(--c-card);

  border: 1px solid var(--c-border);
  box-shadow:
    0 34px 110px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.06);

  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
}

#request .contact-card--v2::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 22px;
  pointer-events:none;
  background:
    radial-gradient(900px 360px at 50% 18%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 320px at 30% 52%, rgba(230,255,106,.08), transparent 64%);
  opacity: .55;
}

/* header */
#request .contact-head{ position: relative; z-index: 1; }
#request .contact-title{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
#request .contact-sub{
  margin: 10px 0 0;
  max-width: 780px;
  color: var(--c-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* layout */
#request .contact-form{ position: relative; z-index: 1; margin-top: 18px; }

#request .grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#request .field{ margin-top: 14px; }

#request .label{
  display:block;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(220, 226, 236, 0.78);
}

#request .label .opt{
  font-weight: 800;
  letter-spacing: .10em;
  color: rgba(220, 226, 236, 0.46);
  text-transform: none;
}

/* controls */
#request .control{ position: relative; }

#request input,
#request textarea,
#request select{
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  outline: none;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  color: var(--c-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(0,0,0,.18);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#request textarea{
  padding: 14px;
  min-height: 120px;
  resize: none;
}

#request input::placeholder,
#request textarea::placeholder{
  color: var(--c-muted2);
}

/* select arrow */
#request select{
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(230,255,106,.70) 50%),
    linear-gradient(135deg, rgba(230,255,106,.70) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* focus ring */
#request input:focus,
#request textarea:focus,
#request select:focus{
  border-color: var(--c-accentRing);
  box-shadow:
    0 0 0 5px rgba(230,255,106,.08),
    0 0 0 1px rgba(230,255,106,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* error state (set by JS) */
#request .is-error input,
#request .is-error textarea,
#request .is-error select{
  border-color: rgba(255, 70, 70, 0.45) !important;
  box-shadow:
    0 0 0 5px rgba(255, 70, 70, 0.08),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

/* inline help text */
#request .help{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 140, 140, 0.95);
  min-height: 14px;
}

/* submit button */
#request .submit--v2{
  width: 100%;
  margin-top: 16px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(230,255,106,0.22);
  cursor: pointer;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(900px 200px at 50% 0%,
      rgba(230,255,106,0.16),
      transparent 60%),
    rgba(255,255,255,0.02);

  color: rgba(245,247,252,0.92);
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  box-shadow:
    0 18px 64px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07);
}

#request .submit--v2:hover{
  transform: translateY(-1px);
  border-color: rgba(230,255,106,0.34);
  box-shadow:
    0 26px 86px rgba(0,0,0,.62),
    0 0 0 1px rgba(230,255,106,0.06),
    inset 0 1px 0 rgba(255,255,255,.07);
}

#request .submit--v2:active{ transform: translateY(0); }

#request .submit--v2 .submit-glow{
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 50% 40%, rgba(230,255,106,0.18), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
#request .submit--v2:hover .submit-glow{ opacity: 1; }

#request .contact-foot{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(170,178,192,.70);
}

/* toast */
#request .toast--v2{
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: rgba(10,12,16,.92);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(245,247,252,0.92);
  font-size: 13px;
  box-shadow: 0 22px 80px rgba(0,0,0,.70);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;
}

#request .toast--v2.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* responsive */
@media (max-width: 760px){
  #request .grid-2{ grid-template-columns: 1fr; gap: 14px; }
  #request .contact-card--v2{ padding: 18px 16px; }
}
/* ============================================================
   CONTACT FORM V2 — MONOCHROME OVERRIDES (NO GREEN IN FORM)
   Paste at END of style.css
   ============================================================ */

/* 1) Make sure sizing never causes overlap */
#request, 
#request *{
  box-sizing: border-box;
}

/* 2) Remove green accent from the CONTACT section entirely */
#request.contact-wrap{
  background: #0b0f14;      /* keep your site bg */
}

/* Card: black/grey glass, NO green glows */
#request .contact-card--v2{
  background:
    radial-gradient(900px 420px at 72% 18%, rgba(255,255,255,.05), transparent 56%),
    rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 34px 110px rgba(0,0,0,.78),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Kill the after overlay that had green */
#request .contact-card--v2::after{
  background:
    radial-gradient(900px 360px at 50% 18%, rgba(255,255,255,.06), transparent 60%);
  opacity: .55;
}

/* 3) Inputs/textarea/select: monochrome */
#request input,
#request textarea,
#request select{
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(245,247,252,0.92);
  background: rgba(0,0,0,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(0,0,0,.25);
}

/* Focus ring: grey/white (no green) */
#request input:focus,
#request textarea:focus,
#request select:focus{
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    0 0 0 5px rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* 4) Dropdowns: black with white options */
#request select{
  background-color: #0a0c10;     /* black dropdown */
  color: rgba(245,247,252,.92);
  appearance: none;
  -webkit-appearance: none;

  /* white arrow instead of green */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245,247,252,.80) 50%),
    linear-gradient(135deg, rgba(245,247,252,.80) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Options list styling (works in many browsers; some ignore it) */
#request select option{
  background: #0a0c10;
  color: #ffffff;
}

/* 5) Prevent “input tabs overlap” in grid:
      - enforce min-width
      - allow wrapping
      - avoid too-tight gap on some layouts */
#request .grid-2{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

#request .field,
#request .control{
  min-width: 0;
}

/* If some global CSS is forcing line-height/height weirdness, this helps */
#request input,
#request select{
  line-height: 1.2;
}

/* 6) Submit button: monochrome (no green) */
#request .submit--v2{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 18px 64px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07);
}

/* Remove green hover glow */
#request .submit--v2 .submit-glow{
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.14), transparent 55%);
}

/* 7) Keep error styles as-is (red), but slightly more consistent */
#request .is-error input,
#request .is-error textarea,
#request .is-error select{
  border-color: rgba(255, 70, 70, 0.50) !important;
}

/* Mobile stays same */
@media (max-width: 760px){
  #request .grid-2{ grid-template-columns: 1fr; gap: 14px; }
}
/* ============================================================
   PRICING — UPDATED TERMS (From £500 per project + terms block)
   Paste at END of style.css
   ============================================================ */

/* Make price tag support a 2-line amount */
.price-tag .price-main{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-unit{
  font-size: 12px;
  font-weight: 800;
  color: #9aa0ad;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pricing terms block under cards */
.pricing-terms{
  margin-top: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);

  padding: 16px 16px;
}

.terms-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: #cfd3de;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.terms-row + .terms-row{
  margin-top: 10px;
}

.terms-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(224,255,91,0.35);
  box-shadow: 0 0 0 3px rgba(224,255,91,0.08);
  background: rgba(224,255,91,0.10);
  margin-top: 4px;
  flex: 0 0 auto;
}

.pricing-terms strong{
  color: #eaeaf0;
}

/* Mobile spacing */
@media (max-width: 980px){
  .pricing-terms{ padding: 14px; }
  .terms-row{ font-size: 12.8px; }
}
/* ============================================================
   MOBILE RESPONSIVE FIX — REMOVE HORIZONTAL SCROLL
   Paste at END of style.css
   ============================================================ */

/* 1) Global safety */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* kills left/right scrollbar */
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* 2) Media should never exceed viewport */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* 3) Prevent any long text/links from forcing width */
a, p, h1, h2, h3, h4, h5, h6, .val, .searchfx-text {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 4) Make big hero heading responsive */
.hero h1 {
  font-size: clamp(34px, 8vw, 72px);
  line-height: 1.08;
  padding-inline: 10px; /* small breathing room */
}

/* 5) Common offenders: wide grids on small screens */
@media (max-width: 980px) {
  .hero { padding: 110px 16px 90px; }

  /* Your sections already switch, but enforce no "wide" gaps */
  .enrich-grid,
  .icp-grid,
  .pricing-grid,
  .science-grid {
    width: 100%;
    max-width: 100%;
  }

  /* If any card still pushes wider than viewport */
  .panel,
  .icp-console,
  .hiw-card,
  .price-card,
  .tcard,
  .contact-card {
    max-width: 100%;
  }
}

/* 6) If your hero search FX layer ever causes overflow, clip it */
.hero {
  overflow: hidden;
}

/* 7) Mobile nav: ensure panels don't exceed screen width */
@media (max-width: 980px) {
  .mobile-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }
}
/* ============================================================
   MOBILE HEADER CLEANUP — HIDE CTA BUTTONS
   ============================================================ */
@media (max-width: 980px) {

  /* Hide the two CTA buttons in header on mobile */
  .nav-actions a.btn {
    display: none !important;
  }

  /* Keep hamburger aligned nicely */
  .nav-actions {
    gap: 0;
  }

  /* Slightly reduce header padding so it feels tighter */
  .nav {
    padding: 12px 0;
  }

  /* Make logo smaller on mobile so it fits cleanly */
  .logo img {
    height: 44px;
  }
}
/* ============================================================
   MOBILE HERO CLEANUP — HIDE HERO BUTTONS
   ============================================================ */
@media (max-width: 980px) {
  .hero-buttons {
    display: none !important;
  }
}


/* ===================== Footer Documents + Modal ===================== */

/* Make the docs column behave nicely inside your existing footer grid */
.footer-docs a {
  display: block;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 10px;
}

.footer-docs a:hover {
  opacity: 1;
  transform: translateX(2px);
}

/* Modal wrapper (hidden by default) */
.doc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.doc-modal.is-open {
  display: block;
}

/* Dark transparent overlay */
.doc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

/* The fixed-size “square” panel (responsive) */
.doc-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: clamp(280px, 90vw, 560px);
  aspect-ratio: 1 / 1;
  max-height: 80vh;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 20px 70px rgba(0,0,0,0.55);
}

/* Header row */
.doc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.doc-modal__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Close button */
.doc-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.doc-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 1);
}

/* Scrollable body (panel stays fixed size) */
.doc-modal__body {
  height: calc(100% - 52px);
  padding: 14px 16px;

  overflow: auto;

  /* make text look clean */
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap; /* keep line breaks */
}

/* Nice scrollbar (WebKit) */
.doc-modal__body::-webkit-scrollbar {
  width: 10px;
}

.doc-modal__body::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.doc-modal__body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
}

.doc-modal__body::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}

/* Lock background scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Small screens: keep it square but give a bit more breathing space */
@media (max-width: 420px) {
  .doc-modal__panel {
    width: 92vw;
    max-height: 78vh;
    border-radius: 16px;
  }
}
/* Footer doc links: force each on its own row */
.footer-docs a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-docs a:hover {
  opacity: 1;
  transform: translateX(2px);
}
/* ================= Footer Legal Row ================= */

.footer-legal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.footer-legal-row a {
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-legal-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .footer-legal-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* ===================== CLEAN FOOTER OVERRIDE ===================== */

.footer {
  padding: 60px 0 30px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* Force main layout */
.footer .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 40px !important;
}

/* Kill old grid layouts */
.footer-grid,
.footer-docs,
.footer-legal-row {
  display: none !important;
}

/* Brand section */
.footer h3 {
  margin-bottom: 10px !important;
}

.footer p {
  max-width: 260px !important;
  opacity: 0.75 !important;
  line-height: 1.5 !important;
}

/* Legal links container */
.footer-legal {
  display: flex !important;
  gap: 40px !important;
  align-items: center !important;
}

/* Legal links style */
.footer-legal a {
  text-decoration: none !important;
  font-size: 14px !important;
  opacity: 0.7 !important;
  transition: opacity 0.2s ease !important;
}

.footer-legal a:hover {
  opacity: 1 !important;
}

/* Copyright */
.footer-bottom {
  margin-top: 40px !important;
  text-align: center !important;
  font-size: 13px !important;
  opacity: 0.5 !important;
}

/* Mobile layout */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .footer-legal {
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .footer p {
    max-width: 100% !important;
  }
}
