/* Airwave Automator Free — Promo Styles */
:root {
  --bg: #0b0e13;
  --bg-alt: #0f131a;
  --card: #121722;
  --text: #e8eef8;
  --muted: #a7b1c6;
  --accent: #7c3aed; /* violet */
  --accent-2: #06b6d4; /* cyan */
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(124,58,237,0.25), transparent 60%),
              radial-gradient(1200px 600px at 90% 10%, rgba(6,182,212,0.25), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
img { display: block; }
a { color: var(--text); text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,14,19,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.2px; }
.brand img { width: 32px; height: 32px; border-radius: 6px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--text); }

/* CTA */
.cta { display: inline-block; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; padding: 12px 18px; border-radius: 10px; font-weight: 700; box-shadow: var(--shadow); }
.cta:hover { filter: brightness(1.1); }
.cta-small { padding: 8px 12px; font-size: 13px; }
.cta.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); box-shadow: none; }
.cta.ghost:hover { border-color: rgba(255,255,255,0.2); }

/* Hero */
.hero { padding: 68px 0 48px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: 42px; line-height: 1.1; margin: 0 0 14px; }
.hero-copy p { color: var(--muted); font-size: 18px; margin: 0 0 20px; }
.hero-ctas { display: flex; gap: 14px; margin: 6px 0 16px; }
.hero-highlights { display: grid; gap: 8px; color: var(--muted); padding: 0; margin: 12px 0 0; list-style: none; }
.hero-highlights li { display: flex; align-items: center; gap: 10px; }
.hero-highlights li::before { content: "✓"; color: var(--accent-2); font-weight: 800; }
.hero-art { display: flex; justify-content: center; }
.device-card { width: 100%; max-width: 460px; background: linear-gradient(180deg, #0f1522 0%, #0c111b 100%); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 16px; }
.device-status { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.device-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
.viz { height: 120px; border-radius: 10px; background: repeating-linear-gradient(90deg, rgba(124,58,237,0.2) 0 8px, rgba(6,182,212,0.2) 8px 16px); animation: move 2.2s linear infinite; }
@keyframes move { 0% { background-position: 0 0; } 100% { background-position: 60px 0; } }
.track-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.track-meta .cover { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(6,182,212,0.6)); border: 1px solid var(--border); }
.track-meta .meta { display: grid; }
.track-meta .meta .sub { color: var(--muted); font-size: 13px; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: 28px; margin: 0 0 10px; }
.section-lead { color: var(--muted); margin: 0 0 24px; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); }
.card .icon { font-size: 22px; margin-bottom: 6px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { color: var(--muted); }
.card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { background: rgba(124,58,237,0.18); border: 1px solid var(--border); color: var(--text); padding: 6px 10px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr; gap: 22px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 22px; display: grid; justify-items: center; }
.price-head { font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.currency { opacity: 0.8; }
.amount { font-size: 54px; font-weight: 800; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card ul { list-style: none; padding: 0; margin: 14px 0 16px; display: grid; gap: 8px; color: var(--muted); }

/* Support */
.mini-ctas { display: flex; gap: 10px; margin-top: 10px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 18px 0; background: rgba(11,14,19,0.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 12px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .grid, .grid.two, .grid.three { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 34px; }
}