/* Kickcut marketing site — dark, pink accent, matches in-app UI */

:root {
  --bg: #0a0a0c;
  --bg-soft: #131316;
  --card: #1a1a1e;
  --line: #2a2a2f;
  --ink: #f5f4f2;
  --ink-soft: #a6a3a0;
  --ink-faint: #6f6c6a;
  --pink: #ec1e7b;
  --pink-soft: rgba(236, 30, 123, 0.14);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

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

img { max-width: 100%; display: block; }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

.brand img { width: 28px; height: 28px; border-radius: 7px; }
.brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero {
  padding: 88px 0 64px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-soft);
  border: 1px solid rgba(236, 30, 123, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 20px auto 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: default;
}

.btn-primary {
  background: var(--pink);
  color: #14040c;
}
.btn-primary:hover { text-decoration: none; filter: brightness(1.08); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--ink-faint); }

.hint {
  font-size: 13px;
  color: var(--ink-faint);
}

/* Screenshot showcase */
.showcase {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  padding: 0 12px;
}

.showcase img {
  width: 100%;
  max-width: 230px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.showcase .mid {
  transform: translateY(-18px);
  max-width: 250px;
}

/* Sections */
section { padding: 72px 0; }

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

.section-head h2 { font-size: clamp(26px, 4vw, 36px); }
.section-head p { color: var(--ink-soft); font-size: 16px; margin: 0; }

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

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.band {
  background: var(--bg-soft);
}

.band-inner {
  text-align: center;
}

.band h2 { font-size: clamp(24px, 4vw, 34px); max-width: 600px; margin: 0 auto 14px; }
.band p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 30px; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

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

.footer-copy {
  color: var(--ink-faint);
  font-size: 13px;
}

/* Legal pages */
.legal {
  padding: 64px 0 96px;
}

.legal .wrap { max-width: 760px; }

.legal h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 8px; }

.legal .updated {
  color: var(--ink-faint);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  color: var(--ink-soft);
  font-size: 15.5px;
}

.legal ul { padding-left: 20px; }
.legal strong { color: var(--ink); }

.legal .callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0;
}
.legal .callout p { margin: 0; color: var(--ink); }

/* Support */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.contact-card {
  max-width: 520px;
  margin: 0 auto 56px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
}

.contact-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.contact-card h2 { font-size: 20px; margin-bottom: 8px; }
.contact-card p { color: var(--ink-soft); margin-bottom: 20px; font-size: 14.5px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .grid { grid-template-columns: 1fr; }
  .showcase { flex-wrap: wrap; }
  .showcase .mid { transform: none; }
  .showcase img { max-width: 42%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
