:root {
  --bg: #05060a;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);

  --primary: #3b82f6;
  --secondary: #06b6d4;

  --text: #e6e8ee;
  --muted: #9ca3af;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* PARTICLES */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(59,130,246,0.6);
  border-radius: 50%;
  animation: floatUp 10s linear infinite;
}

@keyframes floatUp {

  from {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  to {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* GLOW */
.bg-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  filter: blur(140px);
  opacity: 0.3;
  z-index: 0;
}

.top {
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, var(--primary), transparent 60%);
}

.bottom {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, var(--secondary), transparent 60%);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(10,12,20,0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.logo img{
    height:17px;
    width:auto;
    display:block;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}
/* NAV */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* BUTTONS */
.btn,
.primary-btn,
.cta a {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );

  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover,
.primary-btn:hover,
.cta a:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 52px;
}

.hero-text span {
  color: var(--primary);
}

.hero-text p {
  color: var(--muted);
  max-width: 500px;
}

.hero-buttons {
  margin-top: 25px;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* CARD */
.card {
  width: 320px;
  padding: 20px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.card {
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.box {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.box h3 {
  margin-top: 8px;
}

/* FEATURES */
.section {
  padding: 60px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 30px;
}

.card-small {
  padding: 20px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.card-small:hover {
  transform: translateY(-4px);
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  text-align: center;
}

.stats h1 {
  color: var(--primary);
  font-size: 42px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px;
}

/* TRUSTPILOT */
.trustpilot-section {
  display: flex;
  justify-content: center;
  padding: 20px 20px 80px;
}

.trustpilot {
  background: #050505;
  padding: 26px 34px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.trustpilot-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.trustpilot-top h2 {
  margin: 0;
  font-size: 30px;
  color: white;
}

.stars {
  display: flex;
  gap: 4px;
}

.star-box {
  width: 30px;
  height: 30px;
  background: #00b67a;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.trustpilot p {
  color: #d1d5db;
  font-size: 15px;
  margin: 0;
}

.trustpilot-brand {
  color: white;
  font-weight: 600;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  opacity: 0.6;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Premium White Theme Override ===== */
:root{
 --bg:#f7f8fb;
 --panel:rgba(255,255,255,.82);
 --panel-strong:#fff;
 --border:rgba(0,0,0,.08);
 --primary:#111;
 --secondary:#666;
 --text:#111;
 --muted:#666;
}
body{
 background:
 radial-gradient(circle at 20% 20%,rgba(0,0,0,.03),transparent 35%),
 radial-gradient(circle at 80% 70%,rgba(0,0,0,.04),transparent 35%),
 #f7f8fb;
}
.navbar,.card,.card-small,.trustpilot,.box{
 background:rgba(255,255,255,.82)!important;
 backdrop-filter:blur(18px);
 box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.logo span,.hero-text span,.stats h1{color:#111}
.btn,.primary-btn{
 background:#111!important;
 color:#fff!important;
 border-radius:14px;
}
.btn:hover,.primary-btn:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(0,0,0,.15)}
.bg-glow{
 filter:blur(180px);
 opacity:.35;
}
.top{background:radial-gradient(circle,#dcdcdc,transparent 65%)}
.bottom{background:radial-gradient(circle,#efefef,transparent 65%)}
.particle{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:rgba(0,0,0,.10);
    box-shadow:0 0 25px rgba(0,0,0,.18);
    animation:floatParticle linear infinite;
    opacity:.8;
}
@keyframes floatParticle{

    0%{
        transform:translateY(110vh) translateX(0) scale(.5);
        opacity:0;
    }

    10%{
        opacity:.7;
    }

    50%{
        transform:translateY(40vh) translateX(40px) scale(1);
    }

    100%{
        transform:translateY(-20vh) translateX(-30px) scale(.3);
        opacity:0;
    }

}
.nav-links a{
    color:#111;
    transition:.3s;
}

.nav-links a:hover{
    background:#111;
    color:#fff;
    border-radius:12px;
}
@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono&display=swap');

*{
    font-family: "Fragment Mono", monospace;
}
.logos-section{
  text-align:center;
  padding:60px 20px;
}

.logos-title{
  font-size:14px;
  color:#888;
  margin-bottom:30px;
  letter-spacing:0.3px;
}

.logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

.logos img{
  height:32px;
  width:auto;
  opacity:0.65;
  filter:grayscale(100%);
  transition:0.3s ease;
}

.logos img:hover{
  opacity:1;
  filter:grayscale(0%);
  transform:scale(1.05);
}

.investors-section{
  padding:80px 40px;
  text-align:left;
}

.investors-label{
  font-size:13px;
  color:#888;
  margin-bottom:8px;
}

.investors-section h2{
  font-size:28px;
  margin-bottom:30px;
  color:#111;
}

.investors-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.inv-card{
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:14px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.25s ease;
  min-height:90px;
}

.inv-card img{
  max-width:120px;
  width:100%;
  height:auto;
  filter:grayscale(100%);
  opacity:0.7;
  transition:0.25s ease;
}

.inv-card:hover{
  transform:translateY(-4px);
  background:#fff;
}

.inv-card:hover img{
  filter:grayscale(0%);
  opacity:1;
}




.stats-card{
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.stats-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}
.stats-title{
  font-size:14px;
  color:#777;
  letter-spacing:0.4px;
}
.stats-value{
  font-size:28px;
  font-weight:600;
  color:#111;
  margin-top:10px;
}
.stats-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.04);
  border-radius:12px;
  padding:14px;
  margin-top:14px;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.card {
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* MOBILE FIX START */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    margin-top: 20px;
  }

}

/* MOBILE FIX END */