/* Shared styles for static SEO landing pages (public/<name>/index.html) */
:root {
  --bg: #151821;
  --bg-2: #11141b;
  --card: #2a2d36;
  --card-2: #232631;
  --border: #363944;
  --text: #f2f2f2;
  --text-muted: #b9bbbe;
  --text-dim: #999999;
  --primary: #b366ff;
  --pink: #ec4899;
  --violet: #8b5cf6;
  --indigo: #6366f1;
  --cyan: #22d3ee;
  --success: #15a84b;
  --danger: #f13838;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px -8px rgba(236, 72, 153, 0.7);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(21, 24, 33, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.logo img {
  width: 32px;
  height: 32px;
}

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(139, 92, 246, 0.18), transparent),
    radial-gradient(700px 500px at 10% 10%, rgba(236, 72, 153, 0.14), transparent),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
  }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  max-width: 760px;
}

.hero p.lead {
  margin-top: 22px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 640px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* Sections */
section.block {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
}

.bar {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--pink), var(--violet));
}

/* Comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--card-2);
}

.compare-col.emotify {
  border-color: rgba(179, 102, 255, 0.4);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), var(--card-2));
}

.compare-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}

.mark {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.mark.yes {
  background: rgba(21, 168, 75, 0.16);
  color: #2ee07a;
}

.mark.no {
  background: rgba(241, 56, 56, 0.16);
  color: #ff6b6b;
}

/* Features */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  border-radius: 16px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 102, 255, 0.5);
}

.feature .ico {
  font-size: 30px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-dim);
  font-size: 15px;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-2);
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15.5px;
}

/* CTA */
.cta {
  text-align: center;
  border-radius: 22px;
  padding: 56px 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(179, 102, 255, 0.18), transparent),
    linear-gradient(160deg, var(--card-2), var(--bg-2));
  border: 1px solid var(--border);
}

.cta h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .compare,
  .grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .hero-cta .btn,
  .cta-buttons .btn {
    flex: 1 1 100%;
  }
}
