/* ============================================================
   Panify — shared stylesheet (content pages + footer)
   ============================================================ */
:root {
  --ink: #0B1020;
  --white: #FFFFFF;
  --mist: #F5F6F8;
  --amber: #FFBA00;
  --coral: #FF5E5B;
  --pink: #FF4D8D;
  --grad: linear-gradient(120deg, #FFBA00 0%, #FF5E5B 55%, #FF4D8D 100%);
  --muted: #6b7280;
  --muted-dark: #9aa3b8;
  --line: #eceef2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfc;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, .brand-name { font-family: 'Satoshi', 'Inter', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eyebrow { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--coral); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; padding: 13px 22px; border-radius: 999px; transition: transform .15s ease, box-shadow .15s ease; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(255,94,91,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,94,91,.42); }
.btn-ghost { background: var(--mist); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: #eceef2; }

/* top nav (light, for content pages) */
.site-nav { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-nav .nav-inner { max-width: 1120px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.site-nav .brand { display: flex; align-items: center; gap: 10px; }
.site-nav .brand img { width: 32px; height: 32px; }
.site-nav .brand-name { font-size: 21px; font-weight: 700; }
.site-nav .links { display: flex; align-items: center; gap: 28px; }
.site-nav .links a { font-size: 15px; color: var(--muted); }
.site-nav .links a:hover { color: var(--ink); }
.site-nav .links .btn-primary { color: #fff; }
@media (max-width: 760px) { .site-nav .links a:not(.btn-primary) { display: none; } }

/* page header */
.page-head { padding: 64px 0 8px; }
.page-head.center { text-align: center; }
.page-head h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 900; margin-top: 12px; line-height: 1.05; }
.page-head .lead { font-size: 19px; color: var(--muted); margin-top: 18px; max-width: 640px; }
.page-head.center .lead { margin-left: auto; margin-right: auto; }
.breadcrumb { font-size: 14px; color: var(--muted-dark); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--coral); }

/* resource cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.rcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; transition: transform .15s ease, box-shadow .15s ease; }
.rcard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,16,32,.08); }
.rcard.soon { opacity: .65; }
.rcard .tag { align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--coral); background: #fff1ec; padding: 5px 10px; border-radius: 999px; }
.rcard.soon .tag { color: var(--muted); background: var(--mist); }
.rcard h3 { font-size: 20px; font-weight: 700; margin-top: 16px; }
.rcard p { color: var(--muted); font-size: 15px; margin-top: 10px; flex: 1; }
.rcard .more { margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--coral); }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

/* prose (articles / guides / legal) */
.prose { font-size: 17px; color: #1f2433; }
.prose > * { margin-top: 22px; }
.prose h2 { font-size: 28px; font-weight: 900; margin-top: 48px; }
.prose h3 { font-size: 21px; font-weight: 700; margin-top: 34px; }
.prose p { line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-top: 8px; line-height: 1.7; }
.prose a { color: var(--coral); border-bottom: 1px solid rgba(255,94,91,.3); }
.prose a:hover { border-color: var(--coral); }
.prose blockquote { border-left: 3px solid var(--coral); padding: 6px 0 6px 20px; color: var(--muted); font-style: italic; }
.prose strong { color: var(--ink); }
.callout { background: #fff6ec; border: 1px solid #ffe2d6; border-radius: 16px; padding: 24px 28px; margin-top: 32px; }
.callout h3 { margin-top: 0; }

/* comparison table */
.cmp-table { width: 100%; border-collapse: collapse; margin: 40px 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.cmp-table thead th { font-family: 'Satoshi', sans-serif; font-size: 15px; background: var(--mist); }
.cmp-table thead th.panify { background: var(--ink); color: #fff; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .feat { font-weight: 600; }
.cmp-table .yes { color: #16a34a; font-weight: 700; }
.cmp-table .no { color: #e0524f; font-weight: 700; }
.cmp-table .col-panify { background: #fffaf6; }

/* bottom CTA band */
.cta-band { background: radial-gradient(120% 140% at 50% 0%, #1b2540 0%, var(--ink) 60%); color: #fff; border-radius: 24px; padding: 56px 40px; text-align: center; margin: 80px auto; }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; }
.cta-band p { color: var(--muted-dark); margin-top: 14px; font-size: 17px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 28px; }

/* ── shared site footer ── */
.site-footer { background: var(--ink); color: #cfd5e4; }
.site-footer .footer-wrap { max-width: 1120px; margin: 0 auto; padding: 64px 24px 32px; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { display: flex; align-items: center; gap: 10px; }
.site-footer .footer-brand img { width: 30px; height: 30px; }
.site-footer .footer-brand .brand-name { font-weight: 700; font-size: 20px; color: #fff; }
.site-footer .footer-brand p { margin-top: 14px; font-size: 14px; color: #9aa3b8; max-width: 290px; line-height: 1.65; }
.site-footer .footer-mail { display: inline-block; margin-top: 14px; color: #fff; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.25); }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.site-footer .footer-col a { display: block; font-size: 14px; color: #9aa3b8; padding: 7px 0; }
.site-footer .footer-col a:hover { color: #fff; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #6b7280; }
@media (max-width: 760px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
