:root {
  --bg: #0a0c14;
  --panel: #10131c;
  --border: #1e2433;
  --text: #e8ecf5;
  --muted: #a5aec2;
  --brand: #00e0ff;
  --brand2: #6a00ff;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  --container: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(1000px 600px at 50% 0%, #151b27, transparent),
              linear-gradient(180deg, #0b0d14 0%, #06070b 100%);
  color: var(--text);
  line-height: 1.6;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,20,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem;
}
.brand span {
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FEATHER LOGO */
.feather {
  height: 36px;
  width: auto;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: featherGlow 4s ease-in-out infinite;
}
.feather.small { height: 28px; }
@keyframes featherGlow {
  0%,100% { filter: drop-shadow(0 0 4px rgba(0,224,255,0.5)); opacity: 0.9; }
  50% { filter: drop-shadow(0 0 8px rgba(106,0,255,0.8)); opacity: 1; }
}

/* BUTTONS */
.btn {
  padding: 10px 18px; border-radius: 12px;
  font-weight: 700; border: 1px solid var(--border);
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: #fff; border: none;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.3);
}
.btn-outline {
  background: transparent; color: var(--text);
}
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
}
.btn.sm { font-size: 0.9rem; padding: 8px 12px; }

/* HERO */
.hero {
  padding: 80px 0;
  background: radial-gradient(1000px 600px at 50% -100px, #141926, transparent);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 40px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.sub { color: var(--muted); max-width: 540px; margin-bottom: 20px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.pulse {
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,255,.25) 0%, transparent 70%);
  animation: pulse 3s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.stats {
  position: absolute; display: grid; gap: 8px; top: 50%;
  transform: translateY(-50%);
  text-align: center; font-weight: 700;
}
.stats .label { color: var(--muted); font-size: 0.85rem; }
.stats .val { color: var(--brand); font-size: 1.1rem; }

/* FEATURES */
.section { padding: 60px 0; }
.h2 { font-size: 1.9rem; font-weight: 800; text-align: center; margin-bottom: 24px; }
.grid { display: grid; gap: 20px; }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); justify-content: center; }
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}
.card:hover { border-color: var(--brand); transform: translateY(-4px); }
.card h3 { margin: 0 0 8px; color: var(--brand); font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* PROOF */
.proof { background: rgba(255,255,255,0.02); }
.wins { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 20px 0; }
.win {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  border-radius: 12px; padding: 12px 16px;
}
.tag {
  background: rgba(0,224,255,0.15); color: var(--brand);
  border: 1px solid rgba(0,224,255,0.25);
  padding: 5px 10px; border-radius: 8px; font-weight: 700;
}
.disclaimer { color: var(--muted); font-size: 0.85rem; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.foot-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.foot-left {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { margin-top: 20px; }
}
