/* ============================================================
   VibeSpot — site.css
   Modern, mobile-first, neon-lime / black / white palette.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #0A0A0A;
  background: #FFF9E6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:root {
  --bg: #FFF9E6;
  --fg: #0A0A0A;
  --muted: #4B4B4B;
  --accent: #B7FF4A;   /* Neon lime */
  --accent-dark: #76B400;
  --red: #FF5A5A;
  --blue: #2563EB;
  --purple: #7C3AED;
  --card: #FFFFFF;
  --border: #0A0A0A;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 8px 0 #0A0A0A;
  --shadow-sm: 0 4px 0 #0A0A0A;
  --maxw: 1180px;
}

/* ===========================
   Layout helpers
   =========================== */
.container { width: 100%; max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  background: #000; color: var(--accent);
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 900; letter-spacing: 2.5px;
}
.eyebrow.dark { background: var(--accent); color: #000; }

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 { margin: 0; letter-spacing: -1.5px; font-weight: 900; line-height: 1.05; }
h1 { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -3px; }
h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -2px; }
h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -1px; }
h4 { font-size: 17px; letter-spacing: -0.3px; }
p { margin: 0; font-size: 17px; color: var(--muted); line-height: 1.55; }
.lead { font-size: clamp(18px, 2vw, 22px); color: #1a1a1a; font-weight: 500; line-height: 1.45; max-width: 760px; }
.hl { background: var(--accent); padding: 0 8px; border: 3px solid #000; border-radius: 10px; display: inline-block; transform: rotate(-1.2deg); }
.red { color: var(--red); }
.lime-text { color: var(--accent-dark); }
.mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Courier New", monospace; }

/* ===========================
   Nav
   =========================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 230, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--maxw); margin: 0 auto; gap: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand-text { font-size: 20px; font-weight: 900; letter-spacing: -0.8px; }
.nav-links { display: none; gap: 6px; }
@media (min-width: 760px) { .nav-links { display: inline-flex; } }
.nav-links a {
  padding: 8px 12px; border-radius: 8px; font-weight: 700; font-size: 14px;
  color: #1a1a1a;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); }
.nav-links a.active { background: #000; color: var(--accent); }
.nav-cta {
  background: #000; color: var(--accent);
  padding: 10px 16px; border-radius: 10px; font-weight: 900; letter-spacing: 0.5px; font-size: 13px;
}

/* mobile hamburger */
.nav-toggle { display: inline-flex; width: 40px; height: 40px; border: 2px solid #000; border-radius: 10px; background: #fff; align-items: center; justify-content: center; }
@media (min-width: 760px) { .nav-toggle { display: none; } }
.mobile-menu { display: none; flex-direction: column; gap: 0; background: #fff; border-bottom: 2px solid #000; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 20px; font-weight: 800; font-size: 15px; border-top: 1px solid #eee; color: #000; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px; border-radius: 14px; font-weight: 900; letter-spacing: 0.6px;
  font-size: 15px; border: 3px solid #000; transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 #000; }
.btn-primary { background: var(--accent); color: #000; box-shadow: var(--shadow-sm); }
.btn-dark { background: #000; color: var(--accent); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: #000; border-color: #000; }
.btn-disabled { background: #ddd; color: #888; border-color: #888; cursor: not-allowed; pointer-events: none; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===========================
   Hero
   =========================== */
.hero { position: relative; overflow: hidden; padding: 60px 0 40px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(183,255,74,0.45) 0%, transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(255,90,90,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; gap: 60px; grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; } }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 24px; }
.hero .btn-group { margin-top: 30px; }
.hero-pills { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  background: #fff; border: 2px solid #000; border-radius: 999px;
  padding: 8px 14px; font-size: 12px; font-weight: 900; letter-spacing: 0.5px;
}
.hero-phone-wrap {
  display: flex; justify-content: center; align-items: center;
  perspective: 1000px;
}
.hero-phone {
  background: #000; border-radius: 50px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: rotate(-4deg);
  max-width: 350px; width: 100%;
}
.hero-phone img { border-radius: 38px; }

/* ===========================
   Sections
   =========================== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { letter-spacing: -2px; }
.section-head p { margin-top: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: #fff; border: 3px solid #000; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.15s ease;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px; background: var(--accent); border: 3px solid #000;
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
}
.step h3 { font-size: 19px; }
.step p { font-size: 14.5px; }

/* Niche cards */
.niches { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.niche {
  background: #fff; border: 3px solid #000; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background 0.15s ease;
}
.niche:hover { transform: translateY(-3px); background: #F8FFE5; }
.niche-emoji { font-size: 36px; }
.niche h3 { font-size: 19px; margin-top: 10px; letter-spacing: -0.5px; }
.niche p { font-size: 13.5px; margin-top: 6px; line-height: 1.45; }

/* Features */
.features { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: #fff; border: 3px solid #000; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.feature .ico {
  width: 48px; height: 48px; border-radius: 14px; background: #000; color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.feature h3 { font-size: 18px; margin-top: 14px; letter-spacing: -0.5px; }
.feature p { font-size: 14px; margin-top: 6px; }

/* Screenshots */
.shots { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .shots { grid-template-columns: repeat(3, 1fr); } }
.shot {
  background: #000; border-radius: 32px; padding: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.shot:hover { transform: translateY(-6px) rotate(0.5deg); }
.shot img { border-radius: 24px; aspect-ratio: 1080 / 1920; object-fit: cover; }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: #fff; border: 3px solid #000; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); position: relative;
  display: flex; flex-direction: column;
}
.plan.popular { background: #000; color: #fff; transform: translateY(-8px); }
.plan.popular p { color: #c9c9c9; }
.plan.popular .plan-feat li { color: #f4f4f4; }
.popular-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--accent); border: 3px solid #000; border-radius: 999px;
  padding: 8px 16px; font-size: 12px; font-weight: 900; letter-spacing: 1.5px; color: #000;
}
.plan-name { font-size: 13px; font-weight: 900; letter-spacing: 3px; }
.plan-price { font-size: 56px; font-weight: 900; letter-spacing: -3px; margin-top: 4px; line-height: 1; }
.plan-price small { font-size: 18px; font-weight: 700; letter-spacing: 0; opacity: 0.7; }
.plan-feat { margin: 22px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-feat li { font-size: 14.5px; }
.plan-feat li::before { content: "✓ "; font-weight: 900; color: var(--accent-dark); margin-right: 6px; }
.plan.popular .plan-feat li::before { color: var(--accent); }
.plan .btn { margin-top: auto; align-self: stretch; justify-content: center; }

/* Pricing comparison table */
.compare-wrap { overflow-x: auto; margin-top: 36px; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: #fff; border: 3px solid #000; border-radius: 18px; overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eee; font-size: 15px; }
.compare th { background: #000; color: var(--accent); font-size: 12px; letter-spacing: 2px; }
.compare tr:last-child td { border-bottom: 0; }
.compare td.has { color: var(--accent-dark); font-weight: 900; }
.compare td.no { color: #999; }
.compare th.col-mid { background: var(--accent); color: #000; }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 3px solid #000; border-radius: 14px; padding: 0;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 900; font-size: 16px;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; font-weight: 900; }
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 22px 18px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.faq .ans p + p { margin-top: 8px; }

/* Big CTA */
.cta-block {
  background: #000; color: #fff; border-radius: var(--radius-lg);
  padding: 48px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: -100px;
  background: radial-gradient(circle at center, rgba(183,255,74,0.25), transparent 60%);
}
.cta-block h2 { color: #fff; position: relative; }
.cta-block p { color: #d4d4d4; margin-top: 14px; position: relative; }
.cta-block .btn-group { justify-content: center; margin-top: 26px; position: relative; }

/* Footer */
.footer { background: #000; color: #fff; padding: 60px 20px 30px; margin-top: 80px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { font-size: 12px; letter-spacing: 2.5px; color: var(--accent); }
.footer ul { padding: 0; margin: 16px 0 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: #d4d4d4; font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 10px; }
.footer-brand-name { font-size: 22px; font-weight: 900; letter-spacing: -0.8px; }
.footer-tag { margin-top: 14px; color: #b8b8b8; font-size: 14.5px; max-width: 340px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid #222;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
}
.footer-bottom small { font-size: 12.5px; color: #888; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.socials a:hover { background: var(--accent); color: #000; }

/* Legal page typography */
.doc h2 { font-size: 28px; letter-spacing: -1.3px; margin-top: 56px; padding-bottom: 8px; border-bottom: 2px solid #000; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 19px; letter-spacing: -0.5px; margin-top: 28px; }
.doc p, .doc li { font-size: 16px; color: #1a1a1a; line-height: 1.65; }
.doc ul { padding-left: 22px; }
.doc strong { font-weight: 800; }
.doc code { background: #FFF; border: 1px solid #000; border-radius: 6px; padding: 2px 6px; font-size: 14px; }
.doc-toc {
  background: #fff; border: 3px solid #000; border-radius: 18px; padding: 22px;
  margin: 24px 0 32px; box-shadow: var(--shadow-sm);
}
.doc-toc h4 { font-size: 12px; letter-spacing: 2.5px; color: #000; }
.doc-toc ul { list-style: none; padding: 14px 0 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 720px) { .doc-toc ul { grid-template-columns: repeat(2, 1fr); } }
.doc-toc a { font-weight: 700; color: var(--accent-dark); }
.doc-toc a:hover { text-decoration: underline; }

/* Support form */
.form-card {
  background: #fff; border: 3px solid #000; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 12px; font-weight: 900; letter-spacing: 1.5px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: inherit;
  border: 2px solid #000; border-radius: 12px; background: #FFF9E6; outline: none;
  transition: background 0.15s ease;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { background: #fff; }
.form-card .btn { width: 100%; justify-content: center; }

/* Timeline (About) */
.timeline { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.tl {
  background: #fff; border: 3px solid #000; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  display: grid; gap: 8px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .tl { grid-template-columns: 140px 1fr; gap: 22px; align-items: start; } }
.tl-date { font-weight: 900; letter-spacing: 1.5px; font-size: 13px; color: var(--accent-dark); }
.tl-body h4 { font-size: 18px; }
.tl-body p { font-size: 14.5px; margin-top: 4px; }

/* Utility */
.hidden { display: none; }
.mt-12 { margin-top: 12px; }
.mt-22 { margin-top: 22px; }
.mt-36 { margin-top: 36px; }
.glass {
  background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
}
