/* GENERATED FILE - do not edit. Source: src/styles/. Rebuild: npm run build */
/* Flashbag - pricing page styles. Shared chrome lives in ../site.css. */

/* ---- PRICING GRID ---- */
.pricing {
  padding: 24px 0 96px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
/* Personal plan: filled, primary */
.plan.personal {
  background: linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
/* Business plan: coming-soon feel */
.plan.business {
  background: var(--white);
  border-color: var(--border);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 32px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(251, 191, 36, .38);
}
.plan-badge.blue { background: var(--blue); color: white; box-shadow: 0 6px 14px rgba(0, 97, 255, .28); }
.plan-badge.soon {
  background: #0b1e3f;
  color: var(--yellow);
  box-shadow: 0 6px 14px rgba(11, 30, 63, .28);
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.plan-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.plan-tagline {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0 0 28px;
  line-height: 1.55;
  min-height: 48px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 8px;
}
.plan-price .currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  align-self: flex-start;
  margin-top: 10px;
}
.plan-price .amount {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.plan-price .period {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}
.plan-price-sub {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 28px;
}
.plan-cta {
  margin-bottom: 32px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}
.plan-features-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.plan-features li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
}
.plan-features li .check svg { width: 12px; height: 12px; }
.plan-features li strong { color: var(--ink); font-weight: 600; }
.plan.business .plan-features li .check {
  background: var(--blue-soft);
  color: var(--blue);
}
/* ---- FAQ ---- */
.faq {
  padding: 32px 0 80px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px;
  color: var(--ink);
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--border); }
.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.faq-item p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
