
/* Modern Aivvox styles - glassmorphism, neon glow, responsive */
:root{
  --bg1: #05060a;
  --bg2: #0b0d12;
  --card: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.06);
  --muted: rgba(255,255,255,0.6);
  --accent1: #7c3aed; /* purple */
  --accent2: #06b6d4; /* cyan */
  --glass-blur: 12px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(124,58,237,0.12), transparent 8%),
              radial-gradient(800px 400px at 90% 90%, rgba(6,182,212,0.08), transparent 8%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  color: #e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height:100vh;
  padding-bottom:80px;
}

/* Container */
.container{ max-width:1200px; margin:0 auto; padding:28px; }

/* Header */
.header{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px; position:sticky; top:0; backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-bottom: 1px solid rgba(255,255,255,0.03);
  z-index:40;
}
.brand { display:flex; align-items:center; gap:12px; }
.brand img{ height:44px; width:44px; border-radius:10px; background:linear-gradient(45deg,var(--accent1),var(--accent2)); padding:6px; }
.brand h1{ font-size:18px; margin:0; letter-spacing:-0.5px; }
.nav a{ color:var(--muted); text-decoration:none; margin-left:18px; font-weight:600; }
.cta{ background: linear-gradient(90deg,var(--accent1),var(--accent2)); color:white; padding:10px 14px; border-radius:999px; font-weight:700; box-shadow:0 8px 30px rgba(124,58,237,0.18); }

/* Hero */
.hero{
  margin-top:28px; padding:48px; border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 10px 40px rgba(2,6,23,0.6);
  backdrop-filter: blur(12px);
  display:flex; gap:24px; align-items:center; justify-content:space-between;
}
.hero-left{ max-width:640px; }
.kicker{ color:var(--accent2); font-weight:700; letter-spacing:0.6px; font-size:13px; }
.hero h2{ margin:8px 0 12px 0; font-size:40px; line-height:1.02; }
.hero p{ color:var(--muted); font-size:16px; margin:0 0 18px 0; }

/* Grid sections */
.section-title{ display:flex; justify-content:space-between; align-items:center; margin-top:34px; margin-bottom:12px; }
.grid{ display:grid; gap:18px; }
.grid.tools{ grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.grid.blogs{ grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }

/* Card - glass */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius:14px; padding:18px;
  backdrop-filter: blur(var(--glass-blur));
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
  position:relative; overflow:hidden;
}
.card:hover{ transform: translateY(-8px); box-shadow:0 30px 70px rgba(2,6,23,0.6); }

/* Neon accent stripe */
.card:before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(90deg, rgba(124,58,237,0.06), rgba(6,182,212,0.04));
  mix-blend-mode: screen; opacity:0.7;
}

/* Tool card specifics */
.tool-img{ width:100%; height:140px; object-fit:cover; border-radius:10px; margin-bottom:12px; }
.tool-title{ font-weight:800; font-size:18px; margin:6px 0; }
.tool-desc{ color:var(--muted); font-size:13px; margin-bottom:12px; }
.tool-cta{ display:inline-block; padding:10px 12px; border-radius:10px; background:rgba(255,255,255,0.04); color:var(--accent2); font-weight:700; text-decoration:none; box-shadow:0 6px 20px rgba(6,182,212,0.06); }

/* Blog card */
.blog-img{ width:100%; height:160px; object-fit:cover; border-radius:10px; margin-bottom:12px; }
.blog-title{ font-weight:800; font-size:18px; margin:6px 0; }
.blog-excerpt{ color:var(--muted); font-size:14px; }

/* Footer */
.footer{ margin-top:40px; padding:36px; text-align:center; color:var(--muted); }

/* Responsive */
@media (max-width:900px){
  .hero{ flex-direction:column; align-items:flex-start; }
  .hero h2{ font-size:28px; }
}

/* subtle floating animation */
@keyframes floaty {
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
  100%{ transform: translateY(0px); }
}
.floaty{ animation: floaty 6s ease-in-out infinite; }

/* focus visible for keyboard nav */
a:focus{ outline: 3px solid rgba(124,58,237,0.22); outline-offset:4px; border-radius:8px; }
