/* KickFund marketing site — shared styles.
   Palette + type mirror the app's design system (kf-* tokens). */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --kf-bg: #020617;
  --kf-surface: #0f172a;
  --kf-surface-2: #1e293b;
  --kf-border: #1e293b;
  --kf-text: #f1f5f9;
  --kf-text-2: #cbd5e1;
  --kf-text-3: #94a3b8;
  --kf-green: #16a34a;
  --kf-green-hover: #22c55e;
  --kf-green-bright: #4cdd88;
  --kf-green-dark: #065f46;
  --kf-blue: #4e9de0;
  --kf-purple: #7c3aed;
  --kf-orange: #fb923c;
  --kf-radius: 14px;
  --kf-radius-sm: 10px;
  --kf-maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--kf-bg);
  color: var(--kf-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--kf-green-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--kf-maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kf-border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--kf-text-2); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--kf-text); text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--kf-green);
  color: #fff;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--kf-radius-sm);
  border: none; cursor: pointer; font-size: 15px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--kf-green-hover); text-decoration: none; }
.btn-ghost {
  background: transparent; border: 1px solid var(--kf-border); color: var(--kf-text);
}
.btn-ghost:hover { background: var(--kf-surface-2); }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(22,163,74,0.18), transparent 70%);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
  margin: 0 0 18px;
}
.hero h1 .accent { color: var(--kf-green-bright); }
.hero p.lede {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--kf-text-2);
  max-width: 640px; margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kf-surface); border: 1px solid var(--kf-border);
  color: var(--kf-text-3); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--kf-green-bright); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-label {
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px;
  font-weight: 700; color: var(--kf-green-bright); margin: 0 0 10px;
}
h2.section-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -1px; margin: 0 0 16px; }
.section-intro { color: var(--kf-text-2); max-width: 620px; font-size: 17px; margin: 0 0 40px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Cards / steps ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--kf-surface);
  border: 1px solid var(--kf-border);
  border-radius: var(--kf-radius);
  padding: 28px;
}
.card h3 { margin: 14px 0 8px; font-size: 19px; font-weight: 700; }
.card p { margin: 0; color: var(--kf-text-2); font-size: 15px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(22,163,74,0.15); color: var(--kf-green-bright);
  font-weight: 800; font-size: 17px;
}

/* ---------- Pricing ---------- */
.price-card { text-align: center; }
.price-card .amount { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.price-card .amount span { font-size: 16px; color: var(--kf-text-3); font-weight: 500; }
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; text-align: left; }
.feature-list li { padding: 8px 0 8px 28px; position: relative; color: var(--kf-text-2); }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--kf-green-bright); font-weight: 800;
}

/* ---------- Legal / content pages ---------- */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: 34px; font-weight: 800; letter-spacing: -1px; margin: 0 0 8px; }
.legal .updated { color: var(--kf-text-3); font-size: 14px; margin: 0 0 36px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--kf-text-2); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal .placeholder {
  background: rgba(251,146,60,0.12); border: 1px dashed var(--kf-orange);
  color: var(--kf-orange); padding: 2px 6px; border-radius: 5px; font-size: 14px; font-weight: 600;
}
.callout {
  background: var(--kf-surface); border: 1px solid var(--kf-border);
  border-left: 3px solid var(--kf-green); border-radius: var(--kf-radius-sm);
  padding: 18px 20px; margin: 24px 0; color: var(--kf-text-2); font-size: 15px;
}

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 18px; max-width: 560px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--kf-text); }
.field input, .field textarea {
  width: 100%; background: var(--kf-surface); border: 1px solid var(--kf-border);
  border-radius: var(--kf-radius-sm); color: var(--kf-text); padding: 12px 14px;
  font-family: inherit; font-size: 15px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--kf-green); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: var(--kf-text-2); }
.contact-detail strong { color: var(--kf-text); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--kf-border);
  padding: 48px 0 40px; margin-top: 40px;
  color: var(--kf-text-3); font-size: 14px;
}
.footer-cols { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-cols h4 { color: var(--kf-text); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; }
.footer-cols a { display: block; color: var(--kf-text-3); margin: 8px 0; }
.footer-cols a:hover { color: var(--kf-text); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--kf-border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
