/* Kinda Camping — festive marketing site */

:root {
  --mkt-bg: #141824;
  --mkt-bg-card: rgba(30, 36, 52, 0.85);
  --mkt-text: #f8fafc;
  --mkt-muted: #94a3b8;
  --mkt-coral: #e07a5f;
  --mkt-gold: #e9c46a;
  --mkt-teal: #2a9d8f;
  --mkt-green: #40916c;
  --mkt-purple: #9b5de5;
  --mkt-radius: 16px;
  --mkt-radius-sm: 10px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 4rem;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.mkt-page {
  font-family: var(--font-body);
  background: var(--mkt-bg);
  color: var(--mkt-text);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
}

.mkt-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(224, 122, 95, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(233, 196, 106, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(64, 145, 108, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(155, 93, 229, 0.15) 0%, transparent 45%),
    linear-gradient(165deg, #0f1219 0%, #141824 40%, #1a2030 100%);
}

.mkt-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 1.25rem;
  padding-top: max(0.65rem, env(safe-area-inset-top));
  background: rgba(20, 24, 36, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--mkt-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.mkt-brand img { border-radius: 10px; }

.mkt-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--mkt-radius-sm);
  color: var(--mkt-text);
  cursor: pointer;
}

.mkt-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(20, 24, 36, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-nav.is-open { display: flex; }

.mkt-nav a {
  color: var(--mkt-muted);
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  border-radius: var(--mkt-radius-sm);
  font-weight: 600;
}

.mkt-nav a:hover, .mkt-nav a.active { color: var(--mkt-text); background: rgba(255,255,255,0.06); }

@media (min-width: 900px) {
  .mkt-nav-toggle { display: none; }
  .mkt-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    gap: 0.15rem;
  }
  .mkt-nav a { padding: 0.45rem 0.75rem; font-size: 0.95rem; }
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mkt-btn:hover { transform: translateY(-2px); }

.mkt-btn-primary {
  background: linear-gradient(135deg, var(--mkt-coral), var(--mkt-gold));
  color: #1a1d2e;
  box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35);
}

.mkt-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mkt-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mkt-btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.9rem; }

.mkt-hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; }

.mkt-main { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 3rem; }

.mkt-section { padding: 3.5rem 0; scroll-margin-top: calc(var(--header-h) + 1rem); }

.mkt-section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }

.mkt-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mkt-gold);
  margin-bottom: 0.5rem;
}

.mkt-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.mkt-section-head p { color: var(--mkt-muted); font-size: 1.05rem; }

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

.mkt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(233, 196, 106, 0.15);
  border: 1px solid rgba(233, 196, 106, 0.35);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mkt-gold);
}

.mkt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--mkt-gold) 50%, var(--mkt-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--mkt-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.mkt-hero-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  font-size: 2rem;
  opacity: 0.85;
}

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

.mkt-card {
  background: var(--mkt-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.mkt-card:hover { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-3px); }

.mkt-card-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.mkt-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }

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

.mkt-why-list { display: grid; gap: 1rem; max-width: 720px; margin: 0 auto; }

.mkt-why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--mkt-bg-card);
  border-radius: var(--mkt-radius);
  border-left: 4px solid var(--mkt-coral);
}

.mkt-why-item:nth-child(2) { border-left-color: var(--mkt-gold); }
.mkt-why-item:nth-child(3) { border-left-color: var(--mkt-teal); }
.mkt-why-item:nth-child(4) { border-left-color: var(--mkt-green); }

.mkt-why-item strong { display: block; font-family: var(--font-display); margin-bottom: 0.25rem; }
.mkt-why-item p { color: var(--mkt-muted); font-size: 0.95rem; margin: 0; }

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

.mkt-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--mkt-bg-card);
  border-radius: var(--mkt-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--mkt-coral), var(--mkt-gold));
  color: #1a1d2e;
  border-radius: 50%;
}

.mkt-step h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.mkt-step p { color: var(--mkt-muted); font-size: 0.95rem; }

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

.mkt-price-card {
  background: var(--mkt-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mkt-price-card.featured {
  border-color: var(--mkt-gold);
  box-shadow: 0 0 0 1px rgba(233, 196, 106, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mkt-price-card h3 { font-family: var(--font-display); font-size: 1.1rem; }

.mkt-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mkt-gold);
  margin: 0.5rem 0;
}

.mkt-price-card ul {
  list-style: none;
  margin: 1rem 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--mkt-muted);
}

.mkt-price-card li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; }
.mkt-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--mkt-green); font-weight: 700; }

.mkt-price-card .mkt-btn { width: 100%; margin-top: auto; }

.mkt-trial-banner {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(224,122,95,0.15), rgba(64,145,108,0.15));
  border-radius: var(--mkt-radius);
  border: 1px dashed rgba(255,255,255,0.2);
}

.mkt-faq { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--mkt-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-q::after { content: "+"; font-size: 1.35rem; color: var(--mkt-gold); flex-shrink: 0; }
.faq-item.is-open .faq-q::after { content: "−"; }

.faq-a {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--mkt-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-a a { color: var(--mkt-gold); }
.faq-item.is-open .faq-a { display: block; }

.mkt-cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(224,122,95,0.2), rgba(155,93,229,0.15));
  border-radius: var(--mkt-radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.mkt-cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.75rem; }

.mkt-cta-band p { color: var(--mkt-muted); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.mkt-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1.25rem 2rem;
  margin-top: 2rem;
}

.mkt-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.mkt-footer-brand p { color: var(--mkt-muted); font-size: 0.9rem; margin-top: 0.35rem; }

.mkt-footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }

.mkt-footer-links a { color: var(--mkt-muted); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.mkt-footer-links a:hover { color: var(--mkt-gold); }

.mkt-copy { text-align: center; color: var(--mkt-muted); font-size: 0.85rem; margin-top: 2rem; }

.mkt-auth-wrap {
  min-height: calc(100dvh - var(--header-h) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.form-card {
  width: 100%;
  max-width: 420px;
  background: var(--mkt-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mkt-radius);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(10px);
}

.form-card h1 { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 0.35rem; }
.form-card .text-muted { color: var(--mkt-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

.form-card label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--mkt-muted);
}

.form-card input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 16px;
  font-family: var(--font-body);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--mkt-radius-sm);
  color: var(--mkt-text);
}

.form-card input:focus { outline: 2px solid var(--mkt-gold); outline-offset: 1px; }
.form-card .mkt-btn { width: 100%; margin-top: 1.25rem; border: none; }
.form-card p { margin-top: 1.25rem; font-size: 0.95rem; color: var(--mkt-muted); }
.form-card a { color: var(--mkt-gold); font-weight: 700; }
.error { color: #fca5a5; margin-bottom: 0.75rem; font-weight: 600; }
.text-muted { color: var(--mkt-muted); }
