/* CrowdCapture marketing — static site */

:root {
  --bg0: #050505;
  --bg1: #0b0f0c;
  --card: #0f1713;
  --green: #1b8f4a;
  --green2: #0f6a35;
  --gold: #d6b25e;
  --gold2: #b8923d;
  --text: #f3f6f4;
  --muted: #9aa89e;
  --stroke: rgba(214, 178, 94, 0.28);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: radial-gradient(1200px 800px at 50% -20%, rgba(27, 143, 74, 0.12), transparent),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 45%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold2);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--stroke);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--gold);
}

.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--green), var(--green2));
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(145deg, var(--green), var(--green2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(27, 143, 74, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(27, 143, 74, 0.45);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

main {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__lede {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-intro {
  margin-bottom: 2rem;
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 40rem;
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card__name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.price-card__price {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--gold);
}

.price-card__price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li {
  margin-bottom: 0.35rem;
}

.price-card--featured {
  border-color: rgba(214, 178, 94, 0.55);
  position: relative;
}

.price-card--featured::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(145deg, var(--gold), var(--gold2));
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.price-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.overage-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--stroke);
  color: var(--muted);
  font-size: 0.92rem;
}

.overage-note strong {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold);
}

.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stroke);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-card {
  max-width: 32rem;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}
