/**
 * Quonzy portal (public marketing site).
 * Owned by the portal/design work - safe to restyle freely. The signed-in app
 * chrome lives in the separate `quonzy` theme and is not affected by this file.
 */

:root {
  --brand: #6c4cf0;
  --brand-deep: #5a3cd8;
  --ink: #1a1a1a;
  --ink2: #6d6b63;
  --bg: #faf9f5;
  --line: #e7e5dd;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }

.pt-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.pt-header {
  position: sticky;
  top: 0;
  background: rgba(250, 249, 245, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.pt-nav { display: flex; align-items: center; height: 64px; gap: 14px; }
.pt-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; text-decoration: none; }
/* The mark is a speech-bubble Q; the word tucks in tight so it reads "Quonzy",
   and the tail sweeps underneath the first letters, joining the two halves. */
.pt-logo { color: var(--brand); text-decoration: none; }
.pt-logo .pt-lockup { height: 40px; width: auto; display: block; }

.pt-spacer { flex: 1; }

/* ---- buttons ---- */
.pt-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14.5px;
}
.pt-btn:hover { background: var(--brand-deep); }
.pt-btn--ghost { background: transparent; color: var(--brand-deep); padding: 10px 12px; }
.pt-btn--ghost:hover { background: transparent; text-decoration: underline; }

/* ---- hero ---- */
.pt-hero { text-align: center; padding: 78px 0 58px; }
.pt-hero h1 {
  font-size: 44px; font-weight: 680; letter-spacing: -1px; line-height: 1.1;
  max-width: 770px; margin: 0 auto; text-wrap: balance;
}
.pt-hero p { font-size: 18px; color: var(--ink2); max-width: 600px; margin: 20px auto 0; }
.pt-ctas { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- sections ---- */
.pt-section { padding: 50px 0; }
.pt-eyebrow { color: var(--brand-deep); font-weight: 700; font-size: 12.5px; letter-spacing: .6px; text-transform: uppercase; }
.pt-section h2 { font-size: 28px; font-weight: 660; letter-spacing: -.5px; margin-top: 8px; text-wrap: balance; }

/* ---- feature cards ---- */
.pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.pt-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.pt-card h3 { font-size: 16px; margin-bottom: 8px; }
.pt-card p { font-size: 14px; color: var(--ink2); }

/* ---- steps ---- */
.pt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.pt-step { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.pt-step .pt-n {
  width: 28px; height: 28px; border-radius: 8px;
  background: #efeafe; color: var(--brand-deep); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 12px;
}
.pt-step h3 { font-size: 15px; margin-bottom: 5px; }
.pt-step p { font-size: 13px; color: var(--ink2); }

/* ---- CTA band ---- */
.pt-band { background: var(--brand); color: #fff; border-radius: 20px; padding: 54px 32px; text-align: center; margin: 12px 0; }
.pt-band h2 { color: #fff; }
.pt-band p { color: #e9e3ff; max-width: 520px; margin: 12px auto 0; }
.pt-band .pt-btn { background: #fff; color: var(--brand-deep); margin-top: 26px; }

/* ---- footer ---- */
.pt-footer { border-top: 1px solid var(--line); padding: 28px 0; color: #9a988f; font-size: 13px; text-align: center; margin-top: 36px; }
.pt-footer a { color: #9a988f; }

@media (max-width: 820px) {
  .pt-grid, .pt-steps { grid-template-columns: 1fr 1fr; }
  .pt-hero h1 { font-size: 34px; }
}
@media (max-width: 520px) {
  .pt-grid, .pt-steps { grid-template-columns: 1fr; }
}
