/* ═══════════════════════════════════════════════
   SUPER CLIPPY — Landing Page
   Mr. Business × Ben
   ═══════════════════════════════════════════════ */

/* ── Reset & Tokens ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #090B10;
  --bg-card:      #0F1219;
  --bg-card-2:    #141820;
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.13);
  --text:         #EDF2F7;
  --muted:        #7A8A9E;
  --accent:       #4A9ECC;
  --accent-glow:  rgba(74,158,204,0.15);
  --accent-ring:  rgba(74,158,204,0.35);
  --green:        #34C788;
  --r:            12px;
  --r-lg:         20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Type ───────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 9px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.86; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 500; font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 9px;
  border: 1px solid var(--border-hi);
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.10); transform: translateY(-1px); }

.btn-outline {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--muted);
  font-weight: 500; font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 9px;
  border: 1px solid var(--border-hi);
  transition: color 0.15s, border-color 0.15s;
  width: 100%;
}
.btn-outline:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.btn-full { width: 100%; }

/* ── Layout ─────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--muted); font-size: 1.1rem; max-width: 480px; margin: 0 auto; }
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* ── Nav ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 58px;
  display: flex; align-items: center;
  padding: 0 28px;
  background: rgba(9,11,16,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  color: var(--text); white-space: nowrap;
}
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  margin-left: auto;
  background: var(--accent); color: #fff;
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 18px; border-radius: 7px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── Hero ───────────────────────────────────── */
@keyframes heroshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  min-height: 100vh;
  padding: 130px 28px 100px;
  display: flex; align-items: center; justify-content: center; gap: 64px;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}

/* animated dark gradient behind entire page */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(-45deg, #090B10, #0A1422, #0F0A1C, #091616, #090B10);
  background-size: 400% 400%;
  animation: heroshift 22s ease infinite;
}

.hero-content { flex: 1; min-width: 0; max-width: 520px; }

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent-ring);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px;
  margin-bottom: 26px;
}

.hero-headline { color: var(--text); margin-bottom: 22px; }

.hero-sub {
  color: var(--muted); font-size: 1.1rem; line-height: 1.72;
  margin-bottom: 38px; max-width: 440px;
}

.hero-ctas {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 0.82rem; color: var(--muted); opacity: 0.65;
}

/* ── Hero Screenshot ────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0.5deg); }
  50%       { transform: translateY(-12px) rotate(-0.5deg); }
}

.hero-visual { flex-shrink: 0; }

.hero-screenshot {
  width: 340px;
  border-radius: 14px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.65),
    0 0 80px rgba(32,93,131,0.18);
  animation: float 7s ease-in-out infinite;
}

/* ── Features ───────────────────────────────── */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--border-hi); }
.feature-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--accent); opacity: 0.25;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.72; }

/* ── Themes ─────────────────────────────────── */
.themes {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

/* ── Theme Marquee ───────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 16px 0 32px;
}

.marquee-track {
  display: flex;
  /* each item is 180px + 24px margin-right = 200px
     9 items × 200px = 1800px per set → translateX(-50%) loops exactly */
  animation: marquee 42s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  width: 180px;
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.marquee-item img {
  width: 180px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
}

.marquee-name {
  font-size: 0.76rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Pricing ─────────────────────────────────── */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.pricing-cards {
  display: flex; gap: 20px; justify-content: center; align-items: start;
}
.pricing-card {
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  width: 320px;
}
.pricing-card--free {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pricing-card--paid {
  background: var(--bg-card-2);
  border: 1px solid var(--accent);
  box-shadow: 0 0 50px rgba(74,158,204,0.10), 0 0 0 1px rgba(74,158,204,0.12);
  margin-top: -10px; /* slight lift */
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.82rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 2px;
}
.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.8rem; font-weight: 900;
  color: var(--text); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 2px;
}
.pricing-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pricing-features li {
  font-size: 0.92rem; color: var(--muted);
  padding-left: 22px; position: relative;
}
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}
.pricing-card--paid .pricing-features li { color: var(--text); }

.pricing-fine {
  text-align: center; font-size: 0.78rem;
  color: var(--muted); opacity: 0.6;
  margin-top: 10px;
}

/* ── FAQ ─────────────────────────────────────── */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 720px; }
.faq-list  { display: flex; flex-direction: column; margin-top: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0; cursor: pointer;
  font-weight: 600; font-size: 1rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text); gap: 16px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--muted); flex-shrink: 0;
  transition: transform 0.2s, color 0.15s;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.72;
  padding-bottom: 22px; max-width: 580px;
}

/* ── Footer CTA ─────────────────────────────── */
.footer-cta {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.footer-cta h2 { color: var(--text); }
.footer-cta-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Footer ─────────────────────────────────── */
.footer {
  padding: 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 0.95rem;
}
.footer-links { display: flex; gap: 20px; flex: 1; }
.footer-links a {
  font-size: 0.85rem; color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.82rem; color: var(--muted); opacity: 0.45; margin-left: auto; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
  .hero { flex-direction: column; text-align: center; padding-top: 110px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 38px; }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-visual { order: -1; }

  .features-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card { width: 100%; max-width: 380px; margin-top: 0 !important; }
  .pricing-card--paid { margin-top: 10px !important; }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-screenshot { width: 260px; }

  .footer-inner { flex-wrap: wrap; gap: 16px; }
  .footer-copy  { margin-left: 0; width: 100%; text-align: center; }
  .footer-links { justify-content: center; }
}
