/* Folders & Bulk Manager for Claude — landing styles.
   Self-contained: system fonts only, no external requests, CSP-safe, works offline.
   Palette mirrors the extension (--cm-* tokens) so the site matches the product. */

:root {
  --cm-bg: #ffffff;
  --cm-fg: #23262e;
  --cm-muted: #7a8090;
  --cm-line: #e6e8ee;
  --cm-hover: #f2f3f8;
  --cm-accent: #5b5bd6;
  --cm-accent-fg: #ffffff;
  --cm-glow: rgba(91, 91, 214, 0.14);
  --cm-shadow: 0 10px 30px rgba(91, 91, 214, 0.28);
  --cm-radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cm-bg: #1e2028;
    --cm-fg: #e8eaf1;
    --cm-muted: #8d93a3;
    --cm-line: #32353f;
    --cm-hover: #282b35;
    --cm-accent: #7d7df2;
    --cm-accent-fg: #ffffff;
    --cm-glow: rgba(125, 125, 242, 0.16);
    --cm-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cm-bg);
  color: var(--cm-fg);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cm-accent); }

/* soft accent glow behind the hero (pure CSS, no image) */
body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 440px;
  background: radial-gradient(60% 100% at 50% 0%, var(--cm-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 20px 40px;
}

/* hero */
.hero {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-mark {
  width: 72px;
  height: 72px;
  filter: drop-shadow(var(--cm-shadow));
}

.hero-title {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 22px 0 12px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--cm-muted);
  max-width: 34em;
  margin: 0 auto 28px;
}

.cta {
  display: inline-block;
  background: var(--cm-accent);
  color: var(--cm-accent-fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 13px 28px;
  border-radius: 12px;
  box-shadow: var(--cm-shadow);
  transition: transform 0.12s ease, filter 0.12s ease;
}
.cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.hero-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--cm-muted);
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 60px auto 0;
}

.feature {
  background: var(--cm-hover);
  border: 1px solid var(--cm-line);
  border-radius: var(--cm-radius);
  padding: 24px 22px;
  text-align: left;
}

.feat-icon {
  width: 30px;
  height: 30px;
  color: var(--cm-accent);
  margin-bottom: 12px;
}

.feature h2 {
  font-size: 1.06rem;
  font-weight: 650;
  margin: 0 0 6px;
}

.feature p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 0.96rem;
}

/* footer */
.site-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--cm-line);
  max-width: 960px;
  margin: 56px auto 0;
  padding: 28px 20px 44px;
  text-align: center;
}

.foot-links { margin-bottom: 12px; }
.foot-links a {
  color: var(--cm-accent);
  text-decoration: none;
  font-weight: 500;
}
.foot-links a:hover { text-decoration: underline; }

.foot-note {
  max-width: 46em;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--cm-muted);
}

@media (max-width: 680px) {
  .wrap { padding-top: 52px; }
  .features { grid-template-columns: 1fr; gap: 14px; }
  .tiers { grid-template-columns: 1fr; }
}

/* pricing */
.pricing { margin: 64px auto 0; text-align: center; }
.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.tier {
  background: var(--cm-hover);
  border: 1px solid var(--cm-line);
  border-radius: var(--cm-radius);
  padding: 24px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.tier-pro { border-color: var(--cm-accent); }
.tier h3,
.tier-badge { font-size: 1.06rem; font-weight: 700; margin: 0 0 6px; }
.tier-badge { color: var(--cm-accent); }
.tier-price { font-size: 1.4rem; font-weight: 700; margin: 0 0 14px; }
.tier-price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cm-muted);
  margin-left: 3px;
}
.tier-list { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.tier-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: var(--cm-muted);
  font-size: 0.96rem;
}
.tier-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cm-accent);
  font-weight: 700;
}
.tier-pro .cta { font-size: 0.98rem; padding: 11px 22px; align-self: flex-start; }
.pricing-note {
  max-width: 40em;
  margin: 22px auto 0;
  font-size: 0.9rem;
  color: var(--cm-muted);
}
