/* DirhamCrypto Landing (Demo) - modern, responsive, single-page */
:root{
  --bg:#070A12;
  --bg2:#0B1022;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.04);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.56);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --r: 18px;
  --r2: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 70% 15%, rgba(140, 80, 255,.18), transparent 65%),
              radial-gradient(900px 500px at 20% 30%, rgba(0, 209, 255,.15), transparent 65%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

.bg-grid{
  position:fixed; inset:-2px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(500px 500px at 50% 20%, rgba(0,0,0,.9), transparent 70%);
  opacity:.45;
  pointer-events:none;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0;
  position: sticky;
  top:0;
  backdrop-filter: blur(12px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 50;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
  letter-spacing:.2px;
}
.logo{width:28px;height:28px}

.nav{
  display:flex; gap:18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  font-size:14px;
}
.nav a:hover{color:var(--text)}
.header-cta{display:flex; gap:10px; align-items:center}

.hamburger{
  display:none;
  width:44px;height:40px;
  background:transparent;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px;
  background:rgba(255,255,255,.75);
  margin:4px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding: 10px 14px;
  font-weight:600;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.12);
  color:var(--text);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-size:14px;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  background: linear-gradient(135deg, rgba(140,80,255,.85), rgba(0,209,255,.75));
  border-color: rgba(255,255,255,.16);
}
.btn-secondary{
  background: rgba(255,255,255,.08);
}
.btn-ghost{
  background: transparent;
}
.w-full{width:100%}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  padding: 34px 0 10px;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 12px;
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
}
.grad{
  background: linear-gradient(135deg, rgba(140,80,255,1), rgba(0,209,255,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.trust{
  display:flex;
  gap: 14px;
  margin-top: 20px;
}
.trust-item{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  min-width: 120px;
}
.trust-kpi{font-weight:800}
.trust-sub{color:var(--muted2); font-size:12px; margin-top:4px}

.section{
  padding: 56px 0;
}
.section-head{
  margin-bottom: 18px;
}
h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.4px;
}
.section-head p{margin:0;color:var(--muted); line-height:1.6}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mt-16{margin-top:16px}

.feature{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.feature .icon{
  font-size: 20px;
  width:40px;height:40px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.feature h3{margin:0 0 6px;font-size:16px}
.feature p{margin:0;color:var(--muted);line-height:1.6;font-size:14px}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}

.bullets{list-style:none; padding:0; margin: 18px 0 0}
.bullets li{display:flex; gap:10px; align-items:flex-start; margin: 10px 0; color:var(--muted)}
.check{
  width:22px;height:22px;border-radius:8px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(0,209,255,.15);
  border: 1px solid rgba(0,209,255,.25);
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
  margin-top: 1px;
}

.card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  backdrop-filter: blur(14px);
}
.subtle{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

.hero-right{display:flex; flex-direction:column; gap:12px}

.card-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dot{width:10px;height:10px;border-radius:999px; opacity:.9}
.dot-red{background:#ff5f57}
.dot-yellow{background:#febc2e}
.dot-green{background:#28c840}
.card-title{margin-left:10px;color:var(--muted); font-weight:600; font-size:12px; letter-spacing:.2px}

.ticker{padding: 14px 16px 6px}
.row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  margin-bottom: 10px;
}
.row-left{display:flex; gap:10px; align-items:center}
.coin{
  width:34px;height:34px;border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-weight:800;
}
.sym{font-weight:700}
.pair{color:var(--muted2); font-size:12px; margin-top:2px}
.price{font-weight:800}
.chg{
  font-size:12px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.mini-note{
  padding: 0 16px 12px;
  color: var(--muted2);
  font-size: 12px;
}
.card-actions{padding: 0 16px 16px}

.subgrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}
.label{color:var(--muted2); font-size:12px}
.value{font-weight:700; margin-top:4px}

.panel{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r2);
  background: rgba(255,255,255,.04);
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 6px; font-size:16px}
.panel p{margin:0 0 12px;color:var(--muted); line-height:1.6; font-size:14px}
.tags{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:12px;
  font-weight:600;
}

.quote{padding: 20px 18px 10px}
.quote-mark{font-size:44px; line-height:1; opacity:.6}
.quote p{margin: 6px 0 0; color: var(--muted); line-height:1.7}
.quote-foot{
  display:flex; align-items:center; gap:12px;
  padding: 0 18px 18px;
}
.avatar{
  width:42px;height:42px;border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 30% 30%, rgba(140,80,255,.7), rgba(0,209,255,.35));
}
.name{font-weight:800}
.role{color:var(--muted2); font-size:12px; margin-top:2px}

.accordion{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r2);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.acc-item{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding: 16px 16px;
  color: var(--text);
  font-weight:700;
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.acc-item:last-of-type{border-bottom:0}
.acc-icon{
  width:28px;height:28px;border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
  background: rgba(255,255,255,.04);
}
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .18s ease;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.acc-panel p{margin:0; padding: 0 16px 16px; color: var(--muted); line-height:1.7}
.acc-panel code{color:rgba(255,255,255,.88)}

.contact-card{
  padding: 20px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.fineprint{
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 13px;
}

.badge{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(140,80,255,.20), rgba(0,209,255,.10));
  padding: 16px;
}
.badge-top{color:var(--muted2); font-size:12px; font-weight:700}
.badge-main{font-size:18px; font-weight:900; margin-top:6px}
.badge-sub{color:var(--muted); font-size:12px; margin-top:6px}

.mini-card{
  margin-top: 12px;
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.mini-row{
  display:flex; justify-content:space-between; gap:12px;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  font-size: 13px;
}
.mini-row:last-child{border-bottom:0}
.mini-row a{color:rgba(255,255,255,.9); text-decoration:none}
.mini-row a:hover{text-decoration:underline}

.footer{
  display:flex; justify-content:space-between; align-items:center;
  padding: 24px 0 40px;
  color: var(--muted2);
  font-size: 13px;
}
.footer-right{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.footer a{color:rgba(255,255,255,.85); text-decoration:none}
.footer a:hover{text-decoration:underline}
.footer-pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:rgba(255,255,255,.85);
  font-weight:700;
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  text-decoration:none;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.wa-float:hover{transform: translateY(-1px)}
.wa-icon{
  width:34px;height:34px;border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
}
.wa-text{font-weight:800; letter-spacing:.2px}

/* Responsive */
@media (max-width: 920px){
  .hero{grid-template-columns: 1fr; padding-top: 20px}
  .split{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .contact-card{grid-template-columns: 1fr}
  .nav{display:none}
  .hamburger{display:inline-flex}
}
@media (max-width: 520px){
  .trust{flex-direction:column}
  .trust-item{min-width: unset}
  .footer{flex-direction:column; align-items:flex-start; gap:12px}
  .wa-text{display:none}
}
