
/* ZoidFinancial - Modern marketing site (no frameworks required)
   - Glassmorphism + gradients
   - No external build step
*/

:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --card:rgba(255,255,255,0.06);
  --card2:rgba(255,255,255,0.09);
  --border:rgba(255,255,255,0.12);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,0.72);
  --muted2:rgba(234,240,255,0.58);
  --accent:#7C5CFF;
  --accent2:#00D4FF;
  --good:#37D07F;
  --warn:#FFB020;
  --danger:#FF4D6D;
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(124,92,255,0.28), transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(0,212,255,0.22), transparent 55%),
    radial-gradient(800px 700px at 40% 95%, rgba(55,208,127,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 70%);
  min-height:100vh;
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
a.underline{ text-decoration:underline; text-underline-offset: 3px; }
p{ color:var(--muted); margin: 0 0 14px; }
small{ color:var(--muted2); }
img{ max-width:100%; height:auto; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.section{ padding: 76px 0; position:relative; }
.section-tight{ padding: 44px 0; }
.grid{ display:grid; gap:18px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 960px){
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .section{ padding: 58px 0; }
}

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px;
}
.card.soft{ box-shadow: 0 14px 50px rgba(0,0,0,0.35); }
.card:hover{ border-color: rgba(255,255,255,0.18); }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 13px;
}

.h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}
.h2{
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing:-0.01em;
  margin: 0 0 14px;
}
.h3{
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing:-0.01em;
}
.kicker{
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 12px;
}

.btn-row{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 650;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); }
.btn:active{ transform: translateY(0); }
.btn.primary{
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 40px rgba(124,92,255,0.25);
}
.btn.primary:hover{ filter: brightness(1.05); }
.btn.danger{
  border:none;
  background: linear-gradient(90deg, var(--danger), #FFB020);
}
.btn.sm{ padding: 9px 12px; border-radius: 10px; font-size: 13px; }
.btn.ghost{ background: transparent; }
.btn:focus-visible, .nav a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid rgba(0,212,255,0.35);
  outline-offset: 2px;
}

.header{
  position: sticky;
  top:0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: rgba(7,10,18,0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; min-width: 180px;}
.brand svg{ width:30px; height:30px; }
.brand-name{ font-weight: 800; letter-spacing:-0.02em; }
.brand-name span{ color: var(--muted2); font-weight: 700; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.nav a{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{ background: rgba(255,255,255,0.06); color: var(--text); }

.nav-right{ display:flex; align-items:center; gap:10px; }
.menu-toggle{ display:none; }
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .nav.open{
    display:flex;
    position:absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--max), calc(100% - 26px));
    background: rgba(7,10,18,0.78);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }
}

.dropdown{ position:relative; }
.dropdown > button{
  all: unset;
  cursor:pointer;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.dropdown > button:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
.dropdown-menu{
  display:none;
  position:absolute;
  top: 42px;
  left: 0;
  min-width: 220px;
  background: rgba(7,10,18,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.dropdown-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.dropdown-menu a:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
.dropdown.open .dropdown-menu{ display:block; }

.hero{
  padding: 72px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 960px){
  .hero{ padding: 54px 0 28px; }
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-card{
  padding: 26px;
  border-radius: var(--radius2);
}
.hero .sub{ font-size: 16px; max-width: 56ch; }
.hero-cta{ margin-top: 16px; }
.stat-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px;}
@media (max-width: 520px){ .stat-grid{ grid-template-columns: 1fr; } }
.stat{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.stat b{ display:block; font-size: 16px; }
.stat span{ color: var(--muted2); font-size: 13px; }

.badge-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-size: 13px; color: var(--muted);
}
.dot{ width:10px; height:10px; border-radius: 999px; background: var(--accent2); box-shadow: 0 0 24px rgba(0,212,255,0.35); }
.dot.good{ background: var(--good); box-shadow: 0 0 24px rgba(55,208,127,0.32); }
.dot.warn{ background: var(--warn); box-shadow: 0 0 24px rgba(255,176,32,0.28); }

.video-wrap{
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.video-wrap iframe{ width:100%; height:100%; border:0; }

.hr{
  height:1px; background: rgba(255,255,255,0.10);
  width:100%; margin: 18px 0;
}

.footer{
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-grid{ display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.link-list a{ display:block; padding: 8px 0; color: var(--muted); }
.link-list a:hover{ color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.form{ display:grid; gap: 12px; }
label{ font-weight: 650; font-size: 13px; color: var(--muted); }
input, textarea, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
textarea{ min-height: 120px; resize: vertical; }
.help{ color: var(--muted2); font-size: 12px; }

.notice{
  border-left: 3px solid var(--warn);
  padding: 14px 14px;
  background: rgba(255,176,32,0.07);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
}
.notice strong{ color: #FFE2B0; }

.faq-item{ padding: 14px; border-radius: 16px; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04); }
.faq-q{ display:flex; justify-content:space-between; gap:12px; align-items:center; cursor:pointer; user-select:none; }
.faq-q b{ font-size: 15px; }
.faq-a{ max-height: 0; overflow:hidden; transition: max-height .18s ease; color: var(--muted); }
.faq-item.open .faq-a{ max-height: 280px; margin-top: 10px; }
.chev{ opacity:.85; transform: rotate(0deg); transition: transform .18s ease; }
.faq-item.open .chev{ transform: rotate(180deg); }

.table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow:hidden;
}
.table th, .table td{
  text-align:left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
}
.table th{ color: var(--text); font-size: 13px; background: rgba(255,255,255,0.05); }
.table tr:last-child td{ border-bottom:none; }

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124,92,255,0.14);
  border:1px solid rgba(124,92,255,0.22);
  color: rgba(234,240,255,0.88);
  font-size: 12px;
  font-weight: 650;
}

.muted{ color: var(--muted2); }

