/* =========================================================
   ESyndicate — Professional Static Site Styles
   ========================================================= */

:root{
  --bg: #070b16;
  --bg2:#0b1220;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.56);
  --line: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1180px;

  --accent1:#6ee7ff;
  --accent2:#a78bfa;
  --accent3:#34d399;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1100px 700px at 15% -10%, rgba(110,231,255,.14), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(167,139,250,.14), transparent 55%),
              radial-gradient(900px 800px at 50% 100%, rgba(52,211,153,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

.skip-link{
  position:absolute; left:-999px; top:8px;
  background:#fff; color:#000;
  padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.topbar-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  gap:16px;
  font-size:14px;
}
.topbar-left{ display:flex; align-items:center; gap:10px; color:var(--muted); }
.topbar-dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}
.topbar-right{ display:flex; align-items:center; gap:10px; color:var(--muted); }
.topbar-link{ color:var(--muted); }
.topbar-link:hover{ color:var(--text); }
.topbar-sep{ color:rgba(255,255,255,.28); }

/* Header */
.header{
  position:sticky; top:0;
  z-index:1000;
  border-bottom:1px solid var(--line);
  background: rgba(7,11,22,.55);
  backdrop-filter: blur(14px);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.logo{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}
.logo-mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(110,231,255,.28), rgba(167,139,250,.26));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.logo-text strong{ display:block; letter-spacing:.2px; }
.logo-text small{ display:block; color:var(--muted2); font-size:12px; margin-top:2px; }

/* Nav */
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav-link{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav-link:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.nav-link.active{
  color:var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(167,139,250,.20));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  box-shadow:none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.07); }

.btn-sm{ padding:10px 14px; border-radius:12px; }
.btn-block{ width:100%; }

/* Mobile nav */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.85);
  margin:4px auto;
  border-radius:2px;
}

.drawer{
  display:none;
  position:fixed;
  top:0; right:0;
  height:100vh;
  width:min(380px, 92vw);
  background: rgba(7,11,22,.92);
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  z-index:1100;
  padding:18px;
  transform: translateX(105%);
  transition: transform .22s ease;
}
.drawer.open{ transform: translateX(0); }
.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.10);
  margin-bottom:14px;
}
.drawer-close{
  width:40px; height:40px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  color:var(--text);
}
.drawer-links{ display:flex; flex-direction:column; gap:6px; margin:10px 0 14px; }
.drawer-link{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:700;
}
.drawer-link:hover{ color:var(--text); background: rgba(255,255,255,.06); }
.drawer-link.active{ color:var(--text); border-color: rgba(255,255,255,.16); }
.drawer-cta{ padding-top:10px; border-top:1px solid rgba(255,255,255,.10); }
.overlay{
  display:none;
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  z-index:1050;
}

/* Hero */
.hero{
  position:relative;
  padding:54px 0 28px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.hero-left{ position:relative; z-index:2; }
.hero-title{
  font-size: clamp(34px, 3.4vw, 54px);
  line-height:1.05;
  margin: 14px 0 14px;
  letter-spacing: -0.5px;
}
.hero-subtitle{
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
  margin:0 0 18px;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pill-dot{
  width:9px; height:9px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px; }

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
.metric{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding:12px 12px;
}
.metric strong{ display:block; }
.metric span{ display:block; color:var(--muted2); font-size:13px; margin-top:2px; }

.trust-row{
  display:flex; align-items:center; gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}
.trust-label{ color:var(--muted2); font-weight:700; font-size:13px; }
.trust-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.trust-badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
}

/* Right side cards */
.hero-right{ position:relative; z-index:2; display:flex; flex-direction:column; gap:12px; }
.glass-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass-head{ padding:18px 18px 10px; }
.glass-head h2{ margin:0 0 4px; font-size:18px; }
.muted{ color: var(--muted); }
.fineprint{ color: var(--muted2); font-size:12px; margin:8px 0 0; }

.brand-list{ padding:10px 10px 14px; display:flex; flex-direction:column; gap:10px; }
.brand-item{
  display:flex; align-items:center; gap:12px;
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.brand-item:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
  background: rgba(0,0,0,.26);
}
.brand-ico{
  width:42px; height:42px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.brand-meta strong{ display:block; }
.brand-meta small{ display:block; color:var(--muted2); margin-top:2px; }
.brand-arrow{ margin-left:auto; color: rgba(255,255,255,.55); font-weight:900; }

.glass-foot{
  padding: 0 18px 18px;
  display:flex; flex-direction:column; gap:10px;
}

.hero-card-mini{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
.mini-row{ display:flex; gap:10px; align-items:flex-start; }
.mini-icon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}

/* hero background decor */
.hero-bg{
  position:absolute; inset:-120px -120px auto -120px;
  height:420px;
  background: radial-gradient(closest-side at 25% 40%, rgba(110,231,255,.20), transparent 60%),
              radial-gradient(closest-side at 70% 20%, rgba(167,139,250,.18), transparent 62%),
              radial-gradient(closest-side at 55% 80%, rgba(52,211,153,.14), transparent 65%);
  filter: blur(12px);
  opacity:.9;
}
.hero-glow{
  position:absolute; inset:auto -140px -200px -140px;
  height:440px;
  background: radial-gradient(closest-side at 50% 50%, rgba(110,231,255,.10), transparent 70%);
  filter: blur(18px);
  opacity:.8;
}

/* Sections */
.section{ padding: 34px 0; }
.section-soft{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-0.2px;
}
.section-head p{ margin:0; color:var(--muted); max-width: 60ch; }

/* Grids */
.grid{ display:grid; gap:14px; }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color:var(--muted); }
.link{ color: rgba(255,255,255,.86); font-weight:800; }
.link:hover{ text-decoration: underline; }

.feature{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:18px;
}
.feature-icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
  font-weight:900;
}
.feature h3{ margin: 0 0 6px; }
.feature p{ margin:0; color:var(--muted); }

/* CTA */
.cta{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(110,231,255,.12), rgba(167,139,250,.10));
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta h2{ margin:0 0 6px; }
.cta p{ margin:0; color:var(--muted); }
.cta-right{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.footer{
  margin-top: 26px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:16px;
  padding: 26px 0;
}
.footer h4{ margin:0 0 10px; }
.footer a{ display:block; padding:6px 0; color:var(--muted); font-weight:700; }
.footer a:hover{ color:var(--text); }
.footer-note{ margin:10px 0 0; max-width: 62ch; }

.footer-brand{
  display:flex; align-items:center; gap:10px;
}
.footer-bottom{
  padding: 14px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color: var(--muted2);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .drawer{ display:block; }
  .overlay.show{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 34px; }
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .footer-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .hero-metrics{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .cta{ flex-direction:column; align-items:flex-start; }
}
