:root {
  --neon-blue: #00d4ff;
  --bg-gradient: linear-gradient(120deg, #0a0f1a 0%, #0a1a2a 60%, #031c2a 100%);
  --text-primary: #fff;
  --text-secondary: #b2c2d6;
  --text-muted: #6b7a8c;
  --danger: #ff4757;
  --warning: #ffa502;
  --success: #2ed573;
  --card-bg: #181e2a;
  --card-border: 1px solid #232a3a;
  --card-radius: 0.6rem;
  --footer-bg: #10151e;
}
html, body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
    margin: 0;
  overflow-x: hidden;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 400;
}
h1, h2, h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: none;
    color: var(--text-primary);
  margin-top: 0;
}
.navbar-title {
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--neon-blue);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: none;
}
/* NAVBAR - Glassy, Centered, Minimal */
.navbar {
  position: fixed;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 65vw;
  max-width: 1200px;
  z-index: 1000;
    display: flex;
  align-items: center;
    justify-content: space-between;
  padding: 0.7rem 2.5rem;
  background: #0000003b;
  border-radius: 2.2rem;
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: none;
  transition: all 0.3s ease;
}
.navbar-logo {
  display: flex;
    align-items: center;
  gap: 0.7rem;
}
.navbar-logo img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: #181e2a;
}
.navbar-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: none;
}
.navbar-nav {
    display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 2vw;
}
.navbar-nav a {
  color: #fff;
    text-decoration: none;
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 0.2rem 0.1rem;
  text-shadow: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: #9a9a9a;
}
.navbar-cta {
  margin-left: 2vw;
  display: flex;
  align-items: center;
}
.cta-btn {
  background: rgba(255,255,255,0.13);
  color: #fff;
  font-weight: 500;
  font-size: 1.13rem;
  border: none;
  border-radius: 1.1rem;
  padding: 0.55rem 1.7rem;
  box-shadow: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
    display: flex;
    align-items: center;
  text-shadow: none;
  outline: none;
}
.cta-btn:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
/* Remove social icons */
.navbar-social { display: none !important; }
/* Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 0.7rem 1.5rem;
    width: 95vw;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .navbar-nav {
    gap: 1.5rem;
    margin: 0;
    flex: 0;
  }
   .navbar-nav a { font-size: 1rem; }
  .cta-btn { font-size: 1rem; padding: 0.45rem 1.2rem; }
}
@media (max-width: 768px) {
  .navbar {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 1rem 1.5rem;
    background: #10151e;
    backdrop-filter: none;
  }
  .navbar-hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2100; /* Ensure it's above overlay */
  }
  .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .navbar-nav, .navbar-cta {
    display: none; /* Hide on mobile */
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  overflow: hidden;
  padding: 0;
}
.hero-bg-ripples {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #1a2a4a 0%, #0a1a2a 100%);
  animation: rippleBg 8s linear infinite;
  opacity: 0.95;
}
@keyframes rippleBg {
  0% { background-size: 100% 100%; }
  50% { background-size: 120% 120%; }
  100% { background-size: 100% 100%; }
}
.hero-content-aura {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 6.5rem 0.5rem 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  margin-top: 6%;
}
.hero-heading-group h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.13;
}
.hero-heading-group p {
  color: #e0e6f0;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-btn-aura {
  background: #fff;
  color: #1a2a4a;
  font-weight: 600;
  font-size: 1.18rem;
  border: none;
  border-radius: 2.2rem;
  padding: 0.85rem 2.5rem;
  box-shadow: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, opacity 0.3s, transform 0.3s;
  margin-bottom: 2.7rem;
  outline: none;
  margin-top: 0.2rem;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.cta-btn-aura.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.3s;
}
.hero-options {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.7rem;
  margin-top: 0.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}
.hero-options.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  margin-bottom: 21%;
}
.hero-option-btn {
  background: #181e2a;
  color: #e0e6f0;
  font-weight: 500;
  font-size: 1.08rem;
  border: none;
  border-radius: 1.1rem;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  outline: none;
  text-decoration: none;
}
.hero-option-btn:hover {
  background: rgba(0,212,255,0.12);
  color: #fff;
}
@media (max-width: 700px) {
  .hero-content-aura { padding: 4.5rem 0.5rem 2.5rem 0.5rem; }
  .hero-heading-group h1 { font-size: 1.5rem; }
  .hero-heading-group p { font-size: 1.01rem; }
  .hero-options { flex-direction: column; gap: 0.7rem; }
}
/* SECTION HEADINGS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 3.5rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  text-shadow: none;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.08rem;
  /* max-width: 520px; */
  margin: 0 0 0.5rem 0;
  font-weight: 400;
  text-shadow: none;
}
/* BUG BOUNTY PLATFORMS */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.platform-card {
  user-select: none;
  background: #101927;
  border: 1px solid #232a3a;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.platform-card:hover {
  transform: translateY(-6px) perspective(1000px) rotateY(-4deg);
  box-shadow: 0 20px 40px -10px rgba(226, 232, 240, 0.1);
  border-color: #4A5568;
}
.platform-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.platform-header-logo {
  max-height: 280%;
  max-width: 160px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.platform-header-name {
  display: none;
}
.platform-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.platform-rank {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.platform-rank-highlight.immunefi { color: #FF007A; }
.platform-rank-highlight.remedy { color: #fffb6b; }
.platform-rank-highlight.bugrap { color: #00d288; }
.platform-rank-highlight.hackenproof { color: #00eaff; }

.platform-description {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 250px;
  margin: 0 auto 1.5rem auto;
}
.platform-button {
  display: inline-block;
  border: 1px solid #4A5568;
  color: var(--text-secondary);
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.platform-button:hover {
  background-color: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-primary);
  transform: none;
  box-shadow: none;
}
/* BLOG POSTS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card-content {
  flex-grow: 1;
}
.blog-card {
  user-select: none;
  background: #101927;
  border: 1px solid #232a3a;
  border-radius: 1.2rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 340px;
  text-align: center;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(226, 232, 240, 0.1);
  border-color: #4A5568;
}
.featured-image-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.featured-image {
  max-height: 100%;
  max-width: 120px;
  border-radius: 8px;
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}
.card-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
}
.blog-excerpt {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem auto;
  max-width: 35ch;
}
.card-footer {
  text-align: center;
  margin-top: auto;
}
.x-logo-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.x-logo-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
/* Tweet Card Specifics */
.tweet-card {
  text-align: center;
}
.tweet-featured-image-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.tweet-featured-image {
  max-height: 100%;
  max-width: 150px;
  border-radius: 8px;
}
.tweet-card .tweet-header {
  flex-direction: column;
  gap: 0.25rem;
}
.tweet-card .tweet-header .tweet-author {
  font-weight: 700;
  color: var(--text-primary);
}
.tweet-card .tweet-header .tweet-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
}
.tweet-card .blog-excerpt {
  font-style: italic;
}
/* REPORTS SECTION - MODERN TABLE */
.reports-table-wrapper {
  margin-top: 3rem;
  overflow-x: auto;
  background-color: #101927;
  border: 1px solid #232a3a;
  border-radius: 1.2rem;
  padding: 1rem;
  user-select: none;
}
.reports-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}
.reports-table th, .reports-table td {
  text-align: left;
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
}
.reports-table thead th {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #232a3a;
}
.reports-table tbody tr {
  border-bottom: 1px solid #182233;
  transition: background-color 0.2s ease;
}
.reports-table tbody tr:last-child {
  border-bottom: none;
}
.reports-table tbody tr:hover {
  background-color: transparent; /* Remove hover effect */
  /* background-color: #182233; */
}
.report-project-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}
.report-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}
.impact-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
}
/* .impact-critical { background-color: #a70000; color: #fff; }
.impact-high { background-color: #ff4757; color: #fff; }
.impact-medium { background-color: #ffa502; color: #101927; }
.impact-low { background-color: #2ed573; color: #101927; } */

.impact-critical { background: linear-gradient(45deg, #10151e, #182233); border-color: #0a0f1a; color: red; }
.impact-high { background: linear-gradient(45deg, #10151e, #182233); border-color: #0a0f1a; color: #ff626f; }
.impact-medium { background: linear-gradient(45deg, #10151e, #182233); border-color: #0a0f1a; color: #ffa502; }
.impact-low { background: linear-gradient(45deg, #10151e, #182233); border-color: #0a0f1a; color: #2ed573; }

.resolved-badge {
display: flex;
align-items: center;
justify-content: center;
width: 148px;
height: 48px;
margin-left: 15px;
/* border-radius: 50%; */
background-color: #182233;
border: 1px solid #182233;
color: #919b9e;
font-weight: 700;
font-size: 1rem;
}
.report-source-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.report-source-link:hover {
  color: #fff;
}
.report-source-link.private {
  color: var(--text-muted);
  pointer-events: none;
}
.open-link-arrow {
  font-size: 0.8em;
  margin-left: 0.3em;
}
.reports-footer {
  text-align: center;
  margin-top: 2rem;
}
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: var(--card-bg);
  margin: 0 auto;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  border: var(--card-border);
  border-radius: 0.8rem;
  width: 95%;
  max-width: 400px;
  position: relative;
  box-shadow: none;
}
.close {
  color: var(--text-secondary);
  position: absolute;
  top: 1rem; right: 1.1rem;
  font-size: 1.3rem;
    font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}
.close:hover { color: var(--neon-blue); }
.modal h2 {
  margin-bottom: 1rem;
  color: var(--neon-blue);
  font-size: 1.1rem;
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
  font-weight: 600;
}
.form-group {
  margin-bottom: 0.8rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.97rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #232a3a;
  border-radius: 0.4rem;
  background: #10151e;
    color: var(--text-primary);
  font-size: 0.97rem;
  font-family: 'Inter', Arial, sans-serif;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-blue);
}
.modal .cta-btn {
  width: 100%;
  margin-top: 0.4rem;
}
.modal-success {
  color: var(--success);
  text-align: center;
  font-weight: 600;
  margin-top: 0.7rem;
  font-size: 1rem;
}
/* FOOTER */
.footer {
  background-color: var(--footer-bg);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid #232a3a;
  text-align: center;
}
.footer-cta-heading {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-social a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #fff;
  transform: scale(1.1);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid #232a3a;
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-copyright {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1.5rem;
  }
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  margin-left: 0.5rem;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}
@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.5rem 0.7rem;
    width: 99vw;
    min-height: 56px;
  }
  .navbar-hamburger {
    display: flex;
  }
  .navbar-nav, .navbar-cta {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #181e2a;
    border-radius: 0.7rem;
    margin-top: 0.7rem;
    box-shadow: none;
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  }
  .navbar-nav.open, .navbar-cta.open {
    display: flex;
  }
  .navbar-nav a {
    font-size: 1.08rem;
    padding: 0.7rem 0.2rem;
    border-radius: 0.5rem;
    margin: 0.1rem 0;
    justify-content: flex-start;
  }
  .navbar-cta {
    margin-left: 0;
    margin-top: 0.2rem;
    align-items: flex-start;
  }
}
.cta-btn-navbar {
  background: rgba(255,255,255,0.13);
  color: #fff;
  font-weight: 500;
  font-size: 1.13rem;
  border: none;
  border-radius: 1.1rem;
  padding: 0.55rem 1.7rem;
  box-shadow: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
  position: relative;
  display: flex;
  align-items: center;
  text-shadow: none;
  outline: none;
}
.cta-btn-navbar:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.cta-btn-navbar:active {
  background: rgba(255,255,255,0.32);
}
.partners-logos-row {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 70px;
  background: #10151e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
}
.partners-logos-slider {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  /* min-width: 650%; */
  animation: partnersScroll 80s linear infinite;
}
.partners-logos-slider a {
  display: flex;
  align-items: center;
  height: 100%;
}
.partners-logos-slider img {
  height: 52px;
  width: auto;
  filter: brightness(1) invert(1) grayscale(1) opacity(0.85);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
  background: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
}
.partners-logos-slider a:hover img,
.partners-logos-slider a:focus img {
  filter: brightness(1) invert(0) grayscale(0) opacity(1);
  transform: scale(1.02);
  box-shadow: 0 0 12px 2px #00d4ff80;
  z-index: 2;
}
@keyframes partnersScroll {
  0% { transform: translateX(45%); }
  100% { transform: translateX(-65%); }
}
.partners-logos-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 4;
}
.partners-logos-fade-left {
  left: 0;
  background: linear-gradient(90deg, #10151e 80%, transparent 100%);
}
.partners-logos-fade-right {
  right: 0;
  background: linear-gradient(270deg, #10151e 80%, transparent 100%);
}
@media (max-width: 700px) {
  .partners-logos-row { height: 48px; }
  .partners-logos-slider img { height: 22px; }
  .partners-logos-fade { width: 40px; }
}

/* PROMOTIONAL OFFER */
.promo-offer {
  user-select: none;
  background: #10151e;
  border: 1px solid #232a3a;
  border-radius: 1.2rem;
  padding: 2rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.promo-offer .icon {
  font-size: 2.2rem;
  color: var(--neon-blue);
  flex-shrink: 0;
}
.promo-offer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.promo-offer p strong {
  color: var(--text-primary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .promo-offer {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
.mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}
.mobile-menu-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s, transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}
.mobile-menu-overlay.show .mobile-menu-content a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    color: var(--neon-blue);
    transform: scale(1.05) translateY(0);
}
.mobile-menu-content #navbarNav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #232a3a;
    width: 80%;
    max-width: 300px;
}
.mobile-menu-content .cta-btn-navbar {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: color 0.2s, transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-overlay.show .mobile-menu-content .cta-btn-navbar {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s; /* Delay after links */
}
/* Staggered animation for nav links */
.mobile-menu-overlay.show #navbarNav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.show #navbarNav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.show #navbarNav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.show #navbarNav a:nth-child(4) { transition-delay: 0.2s; }

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
}

.copy-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c2c2c2;
  color: #10151e;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  z-index: 10000;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate(-50%, 20px);
}
.copy-popup.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Community Feedback */
.feedback-container {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.feedback-list {
  column-count: 3;
  column-gap: 1.5rem;
}
.feedback-item {
  background: #101927;
  border: 1px solid #232a3a;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.feedback-item:hover {
    transform: translateY(-4px);
    border-color: #2e4369;
}
.feedback-item-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.feedback-item-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}
.feedback-item-project {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}
.feedback-item-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
}
@media (max-width: 992px) {
  .feedback-list { column-count: 2; }
}
@media (max-width: 768px) {
  .feedback-list { column-count: 1; }
}

.open-link-arrow {
  font-size: 0.8rem;
  margin-left: 0.3rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.open-link-arrow:hover {
  color: #fff;
}

/* Secure Flow Section */
.secure-flow-wrapper {
  position: relative;
  /* height: 140px; */
  height: 80px;
  background: #0a1a2a;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 3rem 0;
  border-top: 1px solid #232a3a;
  border-bottom: 1px solid #232a3a;
}
/* Fades on the edges */
.secure-flow-wrapper::before,
.secure-flow-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 50;
}
.secure-flow-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a1a2a, transparent);
}
.secure-flow-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a1a2a, transparent);
}

.secure-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#secure-flow-left {
  clip-path: polygon(0 0, calc(50% - 50px) 0, calc(50% - 80px) 100%, 0 100%);
}
#secure-flow-right {
  clip-path: polygon(calc(50% + 50px) 0, 100% 0, 100% 100%, calc(50% + 80px) 100%);
}
.flow-track {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 50px;
  top: 50%;
  transform: translateY(-50%);
  animation: flow-animation 95s linear infinite;
  min-width: 300%;
}
@keyframes flow-animation {
  from { transform: translate(0, -50%); }
  to { transform: translate(-50%, -50%); }
}
.flow-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}
#track-left .flow-logo {
  filter: grayscale(1) opacity(0.35);
}
#track-right .flow-logo {
  filter: drop-shadow(0 0 10px hsla(0, 0%, 51%, 0.6)) opacity(1);
}
.flow-centerpiece {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.center-logo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3), inset 0 0 15px rgba(0, 212, 255, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(167, 167, 167, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.45), inset 0 0 20px rgba(8, 8, 8, 0.3);
  }
}