:root{
  --bg:#0b0b0f;
  --border:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --accent:#d94cff;
  --accent2:#7b4cff;
  --bar:#242431;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0; overflow-x:hidden;}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(217,76,255,.12), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(123,76,255,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto;}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.legal{margin-top:14px}

/* TOPBAR */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.55);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 0;
  flex-wrap:nowrap;
}

.brand{
  display:flex; align-items:center; gap:10px;
  min-width:0;
}
.brand-avatar{
  width:28px; height:28px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 18px rgba(217,76,255,.20);
  flex:0 0 auto;
}
.brand-name{font-weight:850; letter-spacing:.1px;}
.name-with-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}
.verified-mini{
  width:16px; height:16px;
  object-fit:contain;
  flex: 0 0 auto;
  transform: translateY(1px);
  filter: drop-shadow(0 0 10px rgba(217,76,255,.12));
}

/* DESKTOP NAV */
.nav{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
  color:var(--muted);
  flex:0 0 auto;
  white-space:nowrap;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

/* HAMBURGER (hidden on desktop) */
.hamburger{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  flex:0 0 auto;
}
.hamburger:hover{background: rgba(255,255,255,.10);}
.hamburger-lines{
  width:18px;
  height:2px;
  background: rgba(255,255,255,.9);
  border-radius:999px;
  position:relative;
  display:block;
}
.hamburger-lines::before,
.hamburger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: rgba(255,255,255,.9);
  border-radius:999px;
}
.hamburger-lines::before{top:-6px;}
.hamburger-lines::after{top:6px;}

/* MOBILE MENU PANEL */
.mobile-menu{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(11,11,15,.72);
  backdrop-filter: blur(10px);
}
.mobile-menu.open{display:block;}
.mobile-menu-inner{
  padding:10px 0 12px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-link{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
  font-weight:850;
}
.mobile-link:hover{background: rgba(255,255,255,.09);}

/* HERO */
.hero{padding:66px 0 34px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}

/* hero-left */
.hero-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.hero-photo{
  width:140px;
  height:140px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 40px rgba(217,76,255,.18);
  flex: 0 0 auto;
}
.hero-photo img{width:100%;height:100%;object-fit:cover;}

.hero-copy h1{
  margin:0 0 10px;
  font-size:54px;
  letter-spacing:-.9px;
  line-height:1.02;
}
.tagline{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
  max-width: 52ch;
  line-height:1.4;
}
.cta-row{
  display:flex; gap:12px; flex-wrap:wrap;
  margin:12px 0 10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.86));
  color:#0b0b0f;
  font-weight:900;
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  box-shadow:none;
}
.subnote{margin:10px 0 0; color:var(--muted2); font-size:13px}

.hero-right{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}
.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  gap:10px;
}
.platform{
  font-weight:900;
  display:flex;
  align-items:center;
  gap:8px;
}

/* Visit link */
.visit{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(217,76,255,.22);
  background: rgba(217,76,255,.10);
  color: rgba(255,255,255,.92);
  white-space:nowrap;
}
.visit:hover{background: rgba(217,76,255,.16);}

.picon-img{width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center;}
.picon-img img{width:18px;height:18px;object-fit:contain;}
.picon-img.lg{width:20px;height:20px;}
.picon-img.lg img{width:20px;height:20px;object-fit:contain;}

.big{font-size:26px;font-weight:950;letter-spacing:-.3px;}
.card .muted{font-size:12px; margin-top:2px; color:var(--muted2)}

.hero-note{
  margin-top:14px;
  font-size:12px;
  color: var(--muted2);
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

/* SECTIONS */
.section{padding:56px 0;}
.section-head{margin-bottom:18px;}
.section-head h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.4px;
}
.section-head p{margin:0; color:var(--muted);}

/* brands title wrap */
.brands-title{
  margin:0;
  font-size:30px;
  letter-spacing:-.4px;
  line-height:1.15;
  word-break:normal;
  overflow-wrap:anywhere;
}
.brands-last{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.verified-badge{
  width:22px; height:22px;
  object-fit:contain;
  flex:0 0 auto;
  transform: translateY(1px);
  filter: drop-shadow(0 0 10px rgba(217,76,255,.15));
}

.marquee{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:14px 0;
}
.marquee-track{
  display:flex;
  gap:16px;
  align-items:center;
  width:max-content;
  animation: scroll 40s linear infinite;
  padding-left: 18px;
}
.marquee:hover .marquee-track{animation-play-state: paused;}
.brand-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-size:14px;
  white-space:nowrap;
}
@keyframes scroll{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.panel-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.panel-title{
  margin:0;
  font-size:18px;
  font-weight:950;
  display:flex;
  align-items:center;
  gap:10px;
}

.kpi-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}
.kpi-one{grid-template-columns: 1fr;}
.kpi{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:12px;
}
.kpi-wide{grid-column: 1 / -1;}
.kpi-label{
  font-size:12px;
  color:var(--muted2);
  font-weight:800;
  letter-spacing:.2px;
}
.kpi-value{
  font-size:20px;
  font-weight:950;
  margin-top:4px;
  letter-spacing:-.2px;
}

.block{margin-top:14px;}
.block-title{
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color: rgba(255,255,255,.92);
  font-weight:950;
  margin-bottom:10px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid rgba(217,76,255,.20);
  background: linear-gradient(135deg, rgba(217,76,255,.14), rgba(123,76,255,.08));
}

.list .row{margin-bottom:10px}
.row-top{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px;
  color:rgba(255,255,255,.90);
}
.row-top b{font-weight:950}

.bar{
  height:9px;
  background: var(--bar);
  border-radius:999px;
  overflow:hidden;
  margin-top:6px;
  border:1px solid rgba(255,255,255,.06);
}
.fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(217,76,255,.18) inset;
}

.contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius:18px;
  border:1px solid rgba(217,76,255,.22);
  background: linear-gradient(135deg, rgba(217,76,255,.14), rgba(123,76,255,.08));
  box-shadow: var(--shadow);
}
.contact-card h2{margin:0 0 6px}
.contact-card p{margin:0}
.contact-actions{display:flex; gap:12px; flex-wrap:wrap}

.footer{
  padding:24px 0 40px;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.15);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}

/* MOBILE / TABLET */
@media (max-width: 980px){
  .hero{padding:46px 0 26px;}
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .contact-card{flex-direction:column; align-items:flex-start}

  .hero-card{
    flex-direction:column;
    text-align:center;
    gap:14px;
    padding:20px;
  }
  .hero-copy{display:flex; flex-direction:column; align-items:center}
  .hero-photo{width:132px;height:132px}
  .hero-copy h1{font-size:42px; margin-bottom:8px}
  .tagline{max-width: 34ch}
  .cta-row{justify-content:center}
}

/* ✅ Switch to hamburger */
@media (max-width: 820px){
  .nav-desktop{display:none;}
  .hamburger{display:inline-flex;}
}

/* ultra-small devices: keep topbar clean */
@media (max-width: 520px){
  .brand-avatar{width:24px;height:24px}
  .brand-name{font-size:13px}
  .verified-mini{width:14px;height:14px}
}
