/* ==========================================================================
   Payroll24 - Voog theme stylesheet
   Fonts: Instrument Sans (UI), Instrument Serif (accents), JetBrains Mono (numerals)
   Palette: indigo-violet #241046 · violet #56547A · bright violet #7C3AED
            lavender #A98BC9 · coral #F2705C · blush #FFD9DC

   01. Design tokens            (:root)
   02. Reset and base
   03. Typography
   04. Shared layout            (.pr-wrap, .pr-section, .pr-band, .pr-center)
   05. Header and navigation    (.pr-header, .pr-nav)
   06. Buttons and forms        (.pr-btn, .pr-field, .pr-contact__form)
   07. Footer                   (.pr-footer)
   08. Homepage                 (.pr-hero, .pr-shot, .pr-values, .pr-flow, .pr-demo, .pr-people)
   09. Pricing                  (.pr-price-hero, .pr-tiers, .pr-calcbar, .pr-included)
   10. About                    (.pr-about-hero, .pr-trust, .pr-prose, .pr-caps, .pr-princs)
   11. How it works             (.pr-hiw-hero, .pr-steps, .pr-step-row, .pr-remains)
   12. FAQ                      (.pr-faq, .pr-acc, .pr-faq-hero, .pr-faqgroup)
   13. Contact                  (.pr-contact, .pr-ways, .pr-account)
   14. Authentication           (.pr-auth)
   15. Responsive rules         (media queries, per section)
   16. Accessibility            (focus-visible, aria-current, reduced motion)
   ========================================================================== */

:root {
  --plum: #241046;
  --plum-deep: #241046;
  --plum-panel: #241046;
  --violet: #56547A;
  --violet-mid: #7C5CC4;
  --violet-bright: #7C3AED;
  --violet-deep: #3B1C6B;
  --lavender: #A98BC9;
  --lavender-soft: #C6A9F5;
  --lavender-pale: #EFEAFB;
  --coral: #F2705C;
  --blush: #FFD9DC;
  --rose: #A8455E;
  --ink: #24233A;
  --ink-2: #565469;
  --ink-3: #757390;
  --ink-4: #A3A1B8;
  --line: #E8E8EF;
  --line-2: #EDEDF4;
  --surface: #FFFFFF;
  --page: #F6F6F6;
  --tint: #F4F1FB;
  --tint-2: #F7F5FC;
  --wrap: 1200px;
  --pad: 40px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.04em; text-wrap: balance; }
p { text-wrap: pretty; }
img { max-width: 100%; }

.pr-wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.pr-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-eyebrow { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.pr-serif { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; }
.pr-num { font-variant-numeric: tabular-nums; }

/* --- buttons -------------------------------------------------------------- */
.pr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; white-space: nowrap; border-radius: 999px; padding: 15px 28px; transition: background 200ms ease, color 200ms ease, border-color 200ms ease; }
.pr-btn--light { background: #FFFFFF; color: var(--ink); box-shadow: 0 18px 44px -14px rgba(30,15,45,0.5); }
.pr-btn--light:hover { background: var(--blush); color: var(--ink); }
.pr-btn--ghost { background: rgba(52,32,80,0.32); color: #FFFFFF; border: 1px solid rgba(255,255,255,0.5); font-weight: 500; }
.pr-btn--ghost:hover { color: #FFFFFF; border-color: #FFFFFF; background: rgba(52,32,80,0.42); }
.pr-btn--violet { background: var(--violet-bright); color: #FFFFFF; }
.pr-btn--violet:hover { background: var(--ink); color: #FFFFFF; }
.pr-btn--dark { background: var(--ink); color: #FFFFFF; }
.pr-btn--dark:hover { background: var(--blush); color: var(--ink); }

/* --- header: white at top, deep violet once scrolled --------------------- */
.pr-header {
  position: sticky; top: 0; z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.pr-header__inner { max-width: var(--wrap); margin: 0 auto; padding: 16px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.pr-brand { display: flex; align-items: center; gap: 10px; }
.pr-brand__logo { width: 23px; height: auto; display: block; flex: none; transition: filter 300ms ease; }
.pr-brand__word { font-size: 15.5px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); transition: color 300ms ease; }
.pr-brand__24 { color: var(--violet-bright); font-weight: 400; margin-left: 1px; transition: color 300ms ease; }
.pr-nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.pr-nav__link { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color 300ms ease; }
.pr-nav__link:hover { color: var(--ink); }
.pr-nav__link--quiet { color: #8785A2; }
.pr-nav__cta { font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 999px; background: var(--plum); color: #FFFFFF; white-space: nowrap; transition: background 300ms ease, color 300ms ease; }
.pr-nav__cta:hover { background: #3A1878; color: #FFFFFF; }

.pr-header.is-solid { background: var(--plum); border-bottom-color: rgba(255,255,255,0.14); box-shadow: 0 10px 30px -18px rgba(20,7,38,0.55); }
.pr-header.is-solid .pr-brand__logo { filter: brightness(1.35) saturate(1.05) drop-shadow(0 0 12px rgba(167,139,250,0.4)); }
.pr-header.is-solid .pr-brand__word { color: #FFFFFF; }
.pr-header.is-solid .pr-brand__24 { color: var(--lavender-soft); }
.pr-header.is-solid .pr-nav__link { color: rgba(255,255,255,0.78); }
.pr-header.is-solid .pr-nav__link:hover { color: #FFFFFF; }
.pr-header.is-solid .pr-nav__link--quiet { color: rgba(255,255,255,0.6); }
.pr-header.is-solid .pr-nav__cta { background: #FFFFFF; color: var(--ink); }
.pr-header.is-solid .pr-nav__cta:hover { background: var(--blush); color: var(--ink); }

/* --- hero ----------------------------------------------------------------- */
.pr-hero { position: relative; padding: 72px var(--pad) 250px; display: flex; flex-direction: column; align-items: center; text-align: center; color: #FFFFFF; background: linear-gradient(115deg, #1A0A31 0%, #241046 42%, #3A1878 74%, #6D28D9 100%); }
.pr-hero__fx { position: absolute; inset: 0; overflow: hidden; }
.pr-hero__glow { position: absolute; top: -14%; right: -10%; width: 42%; height: 105%; border-radius: 999px; filter: blur(90px); background: radial-gradient(closest-side, rgba(139,92,246,0.85), rgba(139,92,246,0)); }
.pr-hero__square { position: absolute; top: -6%; right: 7%; width: 19%; height: 54%; border-radius: 120px; filter: blur(28px); background: linear-gradient(195deg, rgba(167,139,250,0.8), rgba(139,92,246,0.22)); }
.pr-hero__scrim { position: absolute; inset: 0; background: radial-gradient(70% 55% at 45% 38%, rgba(20,7,38,0.72) 0%, rgba(20,7,38,0) 72%); }
.pr-hero__fade { position: absolute; left: 0; right: 0; bottom: 0; height: 300px; background: linear-gradient(to bottom, rgba(246,246,246,0) 0%, rgba(246,246,246,0.35) 55%, var(--page) 100%); }
.pr-hero__body { position: relative; display: flex; flex-direction: column; align-items: center; max-width: var(--wrap); width: 100%; }
.pr-hero__title { font-size: clamp(46px, 6.2vw, 68px); line-height: 1.02; letter-spacing: -0.042em; max-width: 19ch; color: #FFFFFF; text-shadow: 0 2px 28px rgba(20,7,38,0.75); }
.pr-hero__lede { margin: 22px 0 0; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.96); max-width: 50ch; text-shadow: 0 1px 12px rgba(48,30,74,0.35); }
.pr-hero__actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.pr-hero__note { margin: 18px 0 0; font-size: 14px; font-weight: 600; color: #FFFFFF; text-shadow: 0 1px 3px rgba(48,30,74,0.55), 0 1px 12px rgba(48,30,74,0.7); }

/* --- sections ------------------------------------------------------------- */
.pr-section { max-width: var(--wrap); margin: 0 auto; padding: 112px var(--pad) 0; }
.pr-section--tight { padding-top: 84px; }
.pr-section__title { font-size: 46px; line-height: 1.03; margin-top: 14px; max-width: 30ch; }
.pr-section__lede { margin: 18px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-3); max-width: 56ch; }

/* soft gradient bands between major sections */
.pr-band { margin-top: 112px; background: linear-gradient(to bottom, rgba(244,241,251,0) 0%, var(--tint) 14%, var(--tint) 86%, rgba(244,241,251,0) 100%); }
.pr-band > .pr-section { padding-top: 112px; padding-bottom: 112px; }
.pr-band--tint2 { margin-top: 0; background: linear-gradient(to bottom, rgba(247,245,252,0) 0%, var(--tint-2) 30%, var(--tint-2) 72%, rgba(247,245,252,0) 100%); }

/* --- product screenshot --------------------------------------------------- */
.pr-shot { position: relative; z-index: 1; max-width: var(--wrap); margin: -212px auto 0; padding: 0 var(--pad); }
.pr-shot__bezel { padding: 14px; border-radius: 26px; background: var(--plum-panel); border: 1px solid rgba(255,255,255,0.22); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 60px 130px -50px rgba(24,13,38,0.6), 0 12px 30px -14px rgba(24,13,38,0.34); }
.pr-shot__app { border-radius: 18px; background: #FAF7FC; border: 1px solid rgba(214,185,255,0.9); box-shadow: 0 0 0 1px rgba(255,255,255,0.55); overflow: hidden; color: var(--ink); }
.pr-shot__chrome { display: flex; align-items: center; gap: 8px; padding: 11px 16px; border-bottom: 1px solid #E8E0EE; background: #F3EEF8; }
.pr-dot { width: 9px; height: 9px; border-radius: 999px; background: #D9CEE3; }
.pr-shot__url { margin-left: 12px; padding: 4px 12px; border-radius: 6px; background: #EFE9F4; color: #7A6B8A; font-size: 11.5px; }
.pr-shot__grid { display: grid; grid-template-columns: 168px minmax(0, 1fr); align-items: stretch; }
.pr-side { background: var(--plum-panel); color: #EDE4F5; border-right: 1px solid #32195E; padding: 14px 12px; display: flex; flex-direction: column; gap: 3px; }
.pr-side__org { display: flex; align-items: center; gap: 9px; padding: 6px 8px 14px; font-size: 13px; font-weight: 600; }
.pr-side__mark { width: 22px; height: 22px; border-radius: 6px; background: var(--violet-bright); color: #fff; font-size: 11.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-side__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: #C6B6D6; }
.pr-side__item span { width: 6px; height: 6px; border-radius: 999px; background: #3A1A63; flex: none; }
.pr-side__item.is-active { background: #2E1255; color: #EDE4F5; font-weight: 600; }
.pr-side__item.is-active span { background: #A78BFA; }
.pr-side__user { margin-top: auto; display: flex; align-items: center; gap: 9px; padding: 14px 4px 6px; font-size: 12px; color: #C6B6D6; }
.pr-side__avatar { width: 24px; height: 24px; border-radius: 999px; background: #2E1255; color: #EDE4F5; font-size: 10.5px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-main { padding: 22px 24px 24px; min-width: 0; }
.pr-main__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pr-kicker { font-size: 11.5px; color: #9385A6; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.pr-main__title { margin-top: 7px; font-size: 26px; letter-spacing: -0.035em; }
.pr-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 6px 13px; border-radius: 999px; background: var(--line-2); color: #4A2F86; font-size: 12.5px; font-weight: 600; }
.pr-status span { width: 7px; height: 7px; border-radius: 999px; background: var(--violet); animation: pr-pulse 1.8s ease-in-out infinite; }
.pr-pill-btn { padding: 12px 22px; border-radius: 10px; background: var(--violet); color: #FFFFFF; font-size: 14px; font-weight: 600; white-space: nowrap; }
.pr-alert { margin-top: 20px; padding: 15px 17px; border-radius: 13px; background: #FCEFF2; border: 1px solid #F1D2DB; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pr-alert__title { font-size: 15px; font-weight: 600; color: #8E2F49; }
.pr-alert__sub { margin: 4px 0 0; font-size: 12.5px; color: var(--rose); }
.pr-alert__btn { padding: 8px 15px; border-radius: 8px; background: #FFFFFF; border: 1px solid #F1D2DB; color: #8E2F49; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.pr-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 9px; margin-top: 10px; }
.pr-check { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 10px; border: 1px solid #E8E0EE; background: #FAF7FC; font-size: 12.5px; color: #4A3F58; font-weight: 500; }
.pr-check i { font-style: normal; width: 16px; height: 16px; border-radius: 999px; background: var(--violet); color: #FFFFFF; font-size: 9.5px; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-totals { display: flex; align-items: flex-end; gap: 36px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #EFE9F4; flex-wrap: wrap; }
.pr-totals__k { font-size: 11.5px; color: #7A6B8A; }
.pr-totals__v { margin-top: 4px; font-size: 20px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.pr-table { margin-top: 18px; border: 1px solid #E8E0EE; border-radius: 12px; overflow: hidden; }
.pr-table__head { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; background: #F3EEF8; font-size: 12.5px; font-weight: 600; }
.pr-table__head span:last-child { font-size: 11.5px; font-weight: 400; color: #7A6B8A; }
.pr-row { display: grid; grid-template-columns: 1.6fr 1.1fr 0.8fr; align-items: center; padding: 11px 14px; border-top: 1px solid var(--line-2); }
.pr-row.is-flagged { background: #FCEFF2; }
.pr-who { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pr-who__avatar { width: 26px; height: 26px; border-radius: 999px; background: var(--line-2); color: var(--violet); font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-who__name { display: block; font-size: 12.5px; font-weight: 500; }
.pr-who__role { display: block; font-size: 11px; color: #9385A6; }
.pr-tag { font-size: 11.5px; padding: 3px 9px; border-radius: 6px; font-weight: 600; justify-self: start; white-space: nowrap; }
.pr-tag--rose { background: #FADEE4; color: var(--rose); }
.pr-tag--quiet { background: transparent; color: #9385A6; font-weight: 400; padding-left: 0; }
.pr-amount { font-size: 12.5px; text-align: right; font-variant-numeric: tabular-nums; }

/* --- value strip (6 features) -------------------------------------------- */
.pr-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 26px; align-items: start; padding-top: 44px; border-top: 1px solid transparent; border-image: linear-gradient(90deg, rgba(169,139,201,0) 0%, rgba(169,139,201,0.5) 30%, rgba(124,92,196,0.6) 50%, rgba(169,139,201,0.5) 70%, rgba(169,139,201,0) 100%) 1; }
.pr-value { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.pr-value__icon { width: 70px; height: 70px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: var(--lavender-pale); border: 1px solid transparent; color: var(--violet-deep); transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease; will-change: transform; }
.pr-value:hover .pr-value__icon { transform: translateY(-6px) scale(1.07); background: #FFFFFF; border-color: #D9CEE3; color: #2E1255; box-shadow: 0 16px 30px -14px rgba(46,18,85,0.45); }
.pr-value p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--ink-2); max-width: 19ch; transition: color 200ms ease; }
.pr-value:hover p { color: var(--ink); }

/* --- workflow cards ------------------------------------------------------- */
.pr-flow { margin-top: 56px; padding-bottom: 80px; display: grid; grid-template-columns: minmax(140px, 172px) minmax(0, 1fr); gap: 24px; align-items: start; }
.pr-rail { position: sticky; top: 34vh; }
.pr-rail__inner { position: relative; padding-left: 2px; }
.pr-rail__track { position: absolute; left: 15px; top: 14px; bottom: 14px; width: 2px; border-radius: 999px; background: #E4E2EC; }
.pr-rail__fill { position: absolute; left: 15px; top: 14px; width: 2px; border-radius: 999px; background: linear-gradient(180deg, var(--lavender), var(--violet-mid)); transition: height 320ms cubic-bezier(.2,.8,.2,1); height: 0; }
.pr-rail__steps { position: relative; display: flex; flex-direction: column; gap: 34px; }
.pr-step { display: flex; align-items: center; gap: 12px; }
.pr-step__dot { width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: var(--page); border: 1px solid #E4E2EC; transition: background 260ms ease, border-color 260ms ease; flex: none; }
.pr-step__num { font-family: "Instrument Serif", Georgia, serif; font-size: 15px; color: var(--ink-4); transition: color 260ms ease; }
.pr-step__label { font-size: 13px; font-weight: 500; color: var(--ink-4); transition: color 260ms ease; }
.pr-step.is-active .pr-step__dot { background: #FFFFFF; border-color: var(--lavender); box-shadow: 0 10px 22px -14px rgba(86,84,122,0.6); }
.pr-step.is-active .pr-step__num { color: var(--violet-mid); }
.pr-step.is-active .pr-step__label { color: var(--ink); font-weight: 600; }
.pr-card { position: sticky; padding-bottom: 26px; }
.pr-card:nth-child(1) { top: 96px; }
.pr-card:nth-child(2) { top: 120px; }
.pr-card:nth-child(3) { top: 144px; }
.pr-card__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 48px; align-items: center; padding: 46px 44px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 30px 70px -40px rgba(36,35,58,0.3); }
.pr-card__inner--dark { background: var(--plum-panel); border-color: var(--plum-panel); color: #FFFFFF; }
.pr-card__meta { display: flex; align-items: center; gap: 12px; }
.pr-card__idx { font-family: "Instrument Serif", Georgia, serif; font-size: 27px; letter-spacing: 0.04em; color: var(--lavender); }
.pr-card__inner--dark .pr-card__idx { color: var(--lavender-soft); }
.pr-card__tag { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.pr-card__inner--dark .pr-card__tag { color: rgba(255,255,255,0.55); }
.pr-card__title { margin-top: 20px; font-size: 34px; line-height: 1.08; letter-spacing: -0.035em; max-width: 20ch; }
.pr-card__text { margin: 16px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); max-width: 42ch; }
.pr-card__inner--dark .pr-card__text { color: rgba(255,255,255,0.72); }
.pr-mini { border-radius: 16px; background: #FAFAFC; border: 1px solid #EAEAF0; overflow: hidden; }
.pr-mini__chrome { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #F4F3F9; border-bottom: 1px solid #EAEAF0; }
.pr-mini__chrome span { width: 7px; height: 7px; border-radius: 999px; background: #D8D8E2; }
.pr-mini__body { padding: 20px; }
.pr-kv { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line-2); font-size: 13.5px; color: var(--ink-2); }
.pr-kv b { font-weight: 600; color: var(--ink); }
.pr-mini--dark { border-radius: 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); padding: 20px; }
.pr-flowline { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14.5px; color: rgba(255,255,255,0.8); }
.pr-flowline:last-child { border-bottom: 0; }
.pr-flowline span { width: 7px; height: 7px; border-radius: 999px; background: var(--lavender-soft); flex: none; }
.pr-flowline.is-now { color: #FFFFFF; font-weight: 600; }
.pr-flowline.is-now span { background: var(--blush); }

/* --- interactive demo ----------------------------------------------------- */
.pr-demo__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.pr-demo__title { margin-top: 14px; font-size: 44px; line-height: 1.05; max-width: 22ch; }
.pr-demo__lede { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-3); max-width: 40ch; }
.pr-demo { margin-top: 36px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 40px 90px -50px rgba(36,35,58,0.32); overflow: hidden; }
.pr-demo__tabs { display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: #F4F3F9; border-bottom: 1px solid #EAEAF0; flex-wrap: wrap; }
.pr-tab { border: 0; font-family: inherit; cursor: pointer; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px; background: transparent; color: #8785A2; transition: background 200ms ease, color 200ms ease; }
.pr-tab:hover { color: var(--ink); }
.pr-tab.is-active { background: var(--violet); color: #FFFFFF; }
.pr-demo__restart { margin-left: auto; border: 0; background: transparent; font-family: inherit; font-size: 12.5px; font-weight: 500; color: #8785A2; cursor: pointer; }
.pr-demo__restart:hover { color: var(--ink); }
.pr-demo__body { padding: 30px 32px 34px; }
.pr-demo__bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pr-demo__h { margin-top: 8px; font-size: 27px; letter-spacing: -0.035em; }
.pr-demo__sub { margin: 8px 0 0; font-size: 14.5px; color: var(--ink-3); }
.pr-demo__panel { margin-top: 22px; }
.pr-demo__panel[hidden] { display: none; }
.pr-list { border-radius: 16px; background: #FAFAFC; border: 1px solid #EAEAF0; padding: 6px 20px 16px; }
.pr-list__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0 4px; font-size: 13px; font-weight: 600; }
.pr-list__head span:last-child { font-size: 12px; font-weight: 400; color: var(--ink-4); }
.pr-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line-2); flex-wrap: wrap; }
.pr-item__who { display: flex; align-items: center; gap: 11px; }
.pr-item__avatar { width: 28px; height: 28px; border-radius: 999px; background: #EFE9F4; color: var(--violet); font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-item__name { display: block; font-size: 14px; font-weight: 500; }
.pr-item__role { display: block; font-size: 11.5px; color: var(--ink-4); }
.pr-item__right { display: flex; align-items: center; gap: 12px; }
.pr-chip { font-size: 12px; padding: 3px 10px; border-radius: 6px; font-weight: 600; white-space: nowrap; background: #EFE9F4; color: var(--violet); }
.pr-chip--rose { background: #FADEE4; color: var(--rose); }
.pr-state { font-size: 12.5px; font-weight: 600; color: var(--rose); min-width: 84px; text-align: right; }
.pr-state.is-done { color: #2F7A55; }
.pr-review { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.pr-review__card { padding: 20px 22px; border-radius: 16px; background: #FAFAFC; border: 1px solid #EAEAF0; }
.pr-review__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pr-review__name { font-size: 16.5px; font-weight: 600; letter-spacing: -0.025em; }
.pr-review__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 16px; margin-top: 16px; }
.pr-review__k { font-size: 11.5px; color: var(--ink-4); }
.pr-review__v { margin-top: 4px; font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.pr-approve { margin-top: 18px; border: 1px solid var(--violet); font-family: inherit; cursor: pointer; font-size: 13.5px; font-weight: 600; padding: 12px 18px; border-radius: 10px; background: var(--violet); color: #FFFFFF; transition: background 200ms ease, color 200ms ease, border-color 200ms ease; }
.pr-approve:hover { background: var(--plum); border-color: var(--plum); }
.pr-approve.is-done { background: #EAF6F0; border-color: #CFE7DA; color: #2F7A55; cursor: default; }
.pr-done { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; align-items: start; }
.pr-done__list { border-radius: 16px; background: #FAFAFC; border: 1px solid #EAEAF0; padding: 8px 20px 18px; }
.pr-done__title { padding: 14px 0 2px; font-size: 15px; font-weight: 600; }
.pr-done__row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-top: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2); }
.pr-done__row i { font-style: normal; width: 18px; height: 18px; border-radius: 999px; background: #EFE9F4; color: var(--violet); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-sum { border-radius: 16px; background: var(--plum-panel); color: #FFFFFF; padding: 22px; }
.pr-sum__k { font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.pr-sum__rows { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.pr-sum__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.pr-sum__row b { font-size: 17px; font-weight: 600; color: #FFFFFF; font-variant-numeric: tabular-nums; }
.pr-sum__row--net { color: var(--blush); padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.18); }
.pr-sum__row--net b { font-size: 20px; color: var(--blush); }
.pr-sum__note { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 12.5px; color: rgba(255,255,255,0.6); }
.pr-demo__foot { padding: 16px 32px; background: #FAFAFC; border-top: 1px solid #EAEAF0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--ink-2); }
.pr-demo__foot b { font-size: 12.5px; color: var(--ink); font-weight: 600; }
.pr-demo__foot i { font-style: normal; font-size: 11px; color: #C9C7D6; }
.pr-demo__foot em { font-style: normal; color: var(--violet); font-weight: 600; }
.pr-demo__fine { margin: 14px 0 0; font-size: 12.5px; color: var(--ink-4); }

/* --- support ("real people") --------------------------------------------- */
.pr-people { max-width: var(--wrap); margin: 0 auto; padding: 120px var(--pad) 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 72px; align-items: center; }
.pr-people__title { font-size: 44px; line-height: 1.05; letter-spacing: -0.035em; max-width: 20ch; }
.pr-people__lede { margin: 18px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); max-width: 46ch; }
.pr-people__points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pr-people__points li { display: flex; align-items: center; gap: 12px; font-size: 16px; line-height: 1.5; color: #3D3B52; }
.pr-people__points li::before { content: "✓"; color: var(--violet-bright); font-size: 14px; font-weight: 700; flex: none; }
.pr-people__cta { display: inline-block; margin-top: 26px; font-size: 15px; font-weight: 600; color: var(--violet-bright); }
.pr-people__cta:hover { color: #5B21B6; }
.pr-people__media { position: relative; }
.pr-people__media::before { content: ""; position: absolute; inset: -10% -8% -18%; border-radius: 999px; filter: blur(64px); background: radial-gradient(60% 55% at 50% 50%, rgba(124,58,237,0.38), rgba(124,58,237,0) 72%); pointer-events: none; }
.pr-people__frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 80px -46px rgba(36,20,47,0.55); }
.pr-people__frame img { display: block; width: 100%; height: auto; }

/* --- pricing -------------------------------------------------------------- */
.pr-tiers { margin: 44px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; text-align: left; align-items: stretch; }
.pr-tier { display: flex; flex-direction: column; gap: 14px; padding: 34px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.pr-tier--lead { background: var(--plum-panel); border-color: var(--plum-panel); color: #FFFFFF; box-shadow: 0 40px 80px -50px rgba(36,20,47,0.7); }
.pr-tier__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pr-tier__name { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.pr-tier--lead .pr-tier__name { color: rgba(255,255,255,0.8); }
.pr-tier__badge { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #EFE9F4; color: #3B1C6B; white-space: nowrap; }
.pr-tier--lead .pr-tier__badge { background: #FFD9DC; color: #5A1F33; }
.pr-tier__figure { display: flex; align-items: flex-end; gap: 6px; }
.pr-tier__amount { font-size: 46px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; }
.pr-tier__amount--sm { font-size: 34px; }
.pr-tier__per { font-size: 14px; color: var(--ink-3); padding-bottom: 6px; }
.pr-tier--lead .pr-tier__per { color: rgba(255,255,255,0.7); }
.pr-tier__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.pr-tier--lead .pr-tier__text { color: rgba(255,255,255,0.82); }
.pr-tier__foot { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.pr-tier__fine { font-size: 12.5px; color: var(--ink-4); }
.pr-tier--lead .pr-tier__fine { color: rgba(255,255,255,0.65); }
.pr-btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.pr-btn--outline:hover { background: var(--ink); color: #FFFFFF; }

.pr-calcbar { margin: 20px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; align-items: center; padding: 26px 30px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); text-align: left; }
.pr-calcbar__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pr-calcbar__k { font-size: 14px; font-weight: 600; color: var(--ink); }
.pr-calcbar__count { font-size: 13px; font-weight: 600; color: var(--violet); font-variant-numeric: tabular-nums; }
.pr-calcbar__range { width: 100%; margin: 16px 0 0; accent-color: var(--violet-bright); height: 24px; cursor: pointer; }
.pr-calcbar__quick { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.pr-quick { padding: 7px 15px; border-radius: 999px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; background: var(--surface); border: 1px solid var(--line); transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.pr-quick:hover { border-color: var(--lavender); }
.pr-quick.is-active { background: var(--violet-bright); border-color: var(--violet-bright); color: #FFFFFF; }
.pr-calcbar__figure { display: flex; align-items: flex-end; gap: 6px; }
.pr-calcbar__total { font-size: 38px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.pr-calcbar__per { font-size: 13px; color: var(--ink-4); padding-bottom: 5px; }
.pr-calcbar__break { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; line-height: 1.45; color: var(--ink-3); }
.pr-pricefoot { margin: 20px 0 0; display: flex; align-items: center; justify-content: center; gap: 10px 26px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-3); }

/* --- FAQ ------------------------------------------------------------------ */
.pr-faq__title { font-size: 44px; line-height: 1.05; max-width: 50ch; }
.pr-faq { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: stretch; }
.pr-acc { display: flex; flex-direction: column; gap: 10px; }
.pr-acc__item { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); overflow: hidden; }
.pr-acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: transparent; border: 0; cursor: pointer; font-family: inherit; text-align: left; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.pr-acc__sign { width: 28px; height: 28px; flex: none; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; background: #EFE9F4; color: var(--violet); transition: background 200ms ease, color 200ms ease; }
.pr-acc__item.is-open .pr-acc__sign { background: var(--violet); color: #FFFFFF; }
.pr-acc__a { padding: 0 22px 22px; max-width: 62ch; }
.pr-acc__a[hidden] { display: none; }
.pr-acc__a p { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-2); }
.pr-faq__media { display: flex; flex-direction: column; gap: 14px; }
.pr-faq__frame { flex: 1; min-height: 420px; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -46px rgba(36,20,47,0.5); }
.pr-faq__frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pr-faq__note { margin: 0; font-size: 14px; color: var(--ink-3); }
.pr-faq__note a { font-weight: 600; color: var(--violet); }

/* --- closing CTA ---------------------------------------------------------- */
.pr-cta { max-width: var(--wrap); margin: 0 auto; padding: 96px var(--pad) 0; }
.pr-cta__panel { position: relative; overflow: hidden; border-radius: 28px; color: #FFFFFF; padding: 80px 48px; display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--plum); }
.pr-cta__title { position: relative; font-size: 46px; line-height: 1.03; max-width: 22ch; }
.pr-cta__lede { position: relative; margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 46ch; }
.pr-cta__actions { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.pr-cta__note { position: relative; margin: 18px 0 0; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* --- footer --------------------------------------------------------------- */
.pr-footer { margin-top: 96px; background: var(--plum-deep); color: #FFFFFF; }
.pr-footer__grid { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--pad) 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.pr-footer .pr-brand__logo { width: 28px; filter: brightness(1.35) saturate(1.05); }
.pr-footer .pr-brand__word { font-size: 18px; color: #FFFFFF; }
.pr-footer .pr-brand__24 { color: var(--lavender-soft); }
.pr-footer__about { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 38ch; }
.pr-footer__col { display: flex; flex-direction: column; gap: 10px; }
.pr-footer__h { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lavender-soft); font-weight: 600; }
.pr-footer__col a { font-size: 14px; color: rgba(255,255,255,0.78); }
.pr-footer__col a:hover { color: var(--blush); }
.pr-footer__col span:not(.pr-footer__h) { font-size: 14px; color: rgba(255,255,255,0.55); }
.pr-footer__bar { max-width: var(--wrap); margin: 0 auto; padding: 20px var(--pad) 44px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.55); }

/* --- animation ------------------------------------------------------------ */
@keyframes pr-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* --- auth pages ------------------------------------------------------------ */
.pr-auth { min-height: 100vh; display: grid; grid-template-columns: 0.92fr 1.08fr; background: var(--page); }
.pr-auth__aside { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding: 40px 44px; color: #FFFFFF; background: linear-gradient(115deg, #1A0A31 0%, #241046 42%, #3A1878 74%, #6D28D9 100%); }
.pr-auth__fx { position: absolute; inset: 0; overflow: hidden; }
.pr-auth__aside .pr-hero__glow { top: -20%; right: -20%; width: 70%; height: 70%; }
.pr-auth__aside .pr-hero__square { top: 4%; right: 8%; width: 32%; height: 22%; border-radius: 80px; }
.pr-auth__body { position: relative; max-width: 34ch; }
.pr-auth__title { font-size: 38px; line-height: 1.1; letter-spacing: -0.035em; color: #FFFFFF; }
.pr-auth__lede { margin: 16px 0 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.pr-auth__points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pr-auth__points li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 500; line-height: 1.5; color: #FFFFFF; }
.pr-auth__points li::before { content: ""; margin-top: 7px; width: 6px; height: 6px; border-radius: 999px; background: var(--lavender-soft); flex: none; }
.pr-auth__foot { position: relative; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); }
.pr-auth__brand { position: relative; }
.pr-auth__aside .pr-brand__logo { filter: brightness(1.35) saturate(1.05) drop-shadow(0 0 12px rgba(167,139,250,0.4)); }
.pr-auth__aside .pr-brand__word { color: #FFFFFF; }
.pr-auth__aside .pr-brand__24 { color: var(--lavender-soft); }

.pr-auth__main { display: flex; align-items: center; justify-content: center; padding: 48px var(--pad); }
.pr-auth__card { width: 100%; max-width: 420px; }
.pr-auth__k { font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.pr-auth__h { margin-top: 10px; font-size: 32px; line-height: 1.12; letter-spacing: -0.035em; }
.pr-auth__sub { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-3); }
.pr-form { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.pr-field { display: flex; flex-direction: column; gap: 7px; }
.pr-field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.pr-field input { font-family: inherit; font-size: 15px; color: var(--ink); padding: 13px 14px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); transition: border-color 180ms ease, box-shadow 180ms ease; }
.pr-field input::placeholder { color: var(--ink-4); }
.pr-field input:focus { outline: none; border-color: var(--lavender); box-shadow: 0 0 0 3px rgba(169,139,201,0.22); }
.pr-field__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pr-field__link { font-size: 12.5px; font-weight: 600; color: var(--violet-bright); }
.pr-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pr-form__submit { margin-top: 6px; width: 100%; border-radius: 12px; }
.pr-form__fine { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-4); text-align: center; }
.pr-oauth { display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%; padding: 13px 0; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.pr-oauth:hover { background: #FBFAFD; border-color: var(--lavender); box-shadow: 0 10px 24px -18px rgba(64,42,122,0.4); }
.pr-oauth svg { width: 18px; height: 18px; flex: none; }
.pr-or { display: flex; align-items: center; gap: 14px; margin: 20px 0 0; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.pr-or::before, .pr-or::after { content: ""; flex: 1 1 0; height: 1px; background: var(--line); }

.pr-auth__alt { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--line-2); font-size: 14px; color: var(--ink-3); text-align: center; }
.pr-auth__alt a { font-weight: 600; color: var(--violet-bright); }
.pr-auth__alt a:hover { color: var(--ink); }
.pr-auth__back { display: inline-block; margin-top: 18px; font-size: 13px; color: var(--ink-4); }
.pr-auth__back:hover { color: var(--ink); }

@media (max-width: 900px) {
  .pr-auth { grid-template-columns: 1fr; }
  .pr-auth__aside { padding: 32px 28px 40px; gap: 28px; }
  .pr-auth__title { font-size: 30px; }
  .pr-auth__main { padding: 44px 28px 56px; }
}

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .pr-card__inner { padding: 36px 32px; gap: 32px; }
  .pr-flow { grid-template-columns: 1fr; }
  .pr-rail { display: none; }
}
@media (max-width: 880px) {
  :root { --pad: 24px; }
  .pr-shot__grid { grid-template-columns: 1fr; }
  .pr-side { display: none; }
  .pr-totals { gap: 20px 28px; }
  .pr-people { gap: 34px; padding-top: 80px; }
  .pr-people__title { font-size: 34px; }
  .pr-cta__panel { padding: 56px 28px; }
  .pr-cta__title { font-size: 36px; }
  .pr-nav { gap: 18px; }
  .pr-nav__link--quiet { display: none; }
  .pr-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pr-hero { padding-bottom: 180px; }
  .pr-shot { margin-top: -150px; }
  .pr-section__title, .pr-faq__title { font-size: 32px; }
  .pr-demo__title { font-size: 30px; }
  .pr-nav__link { display: none; }
}


/* --- numerals: JetBrains Mono -------------------------------------------- */
.pr-tier__amount, .pr-tier__per, .pr-calcbar__total, .pr-calcbar__count,
.pr-totals__v, .pr-amount, .pr-sum__row b, .pr-review__v, .pr-num {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.pr-tier__amount { letter-spacing: -0.03em; }
.pr-tier__amount--sm { font-family: "Instrument Sans", system-ui, sans-serif; letter-spacing: -0.04em; }
.pr-calcbar__total { letter-spacing: -0.03em; }

/* --- mobile nav ----------------------------------------------------------- */
.pr-nav__toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--ink); transition: background 200ms ease, border-color 200ms ease, color 200ms ease; }
.pr-nav__toggle svg { display: block; }
.pr-nav__toggle .pr-nav__x { display: none; }
.pr-header.is-solid .pr-nav__toggle { border-color: rgba(255,255,255,0.28); color: #FFFFFF; }
.pr-header.is-open .pr-nav__toggle .pr-nav__x { display: block; }
.pr-header.is-open .pr-nav__toggle .pr-nav__bars { display: none; }

@media (max-width: 880px) {
  .pr-nav__toggle { display: flex; }
  .pr-header__inner { flex-wrap: nowrap; }
  .pr-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px var(--pad) 22px;
    background: #FFFFFF; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px -30px rgba(20,7,38,0.35);
  }
  .pr-header.is-solid .pr-nav { background: var(--plum); border-bottom-color: rgba(255,255,255,0.14); }
  .pr-header.is-open .pr-nav { display: flex; }
  .pr-nav__link { display: block; padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line-2); }
  .pr-header.is-solid .pr-nav__link { border-bottom-color: rgba(255,255,255,0.12); }
  .pr-nav__link--quiet { display: block; }
  .pr-nav__cta { margin-top: 14px; text-align: center; padding: 14px 18px; font-size: 15px; }
}
@media (max-width: 620px) {
  .pr-nav__link { display: block; }
}

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #7C3AED;
  outline-offset: 3px;
}

.pr-header.is-solid a:focus-visible,
.pr-header.is-solid button:focus-visible {
  outline-color: #FFFFFF;
}

/* --- contact page --------------------------------------------------------- */
.pr-contact-hero { background: #F4F1FB; }
.pr-contact-hero__inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad) 60px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-contact-hero__eyebrow { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-bright); font-weight: 600; }
.pr-contact-hero__title { margin: 14px 0 0; font-size: clamp(34px, 5vw, 54px); line-height: 1.02; letter-spacing: -0.042em; color: #09041D; }
.pr-contact-hero__lede { margin: 18px 0 0; font-size: 17px; line-height: 1.6; font-weight: 400; color: #4A3F58; max-width: 56ch; }

.pr-contact { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--pad) 0; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); gap: 56px; align-items: start; }
.pr-contact__card { padding: 34px 36px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 40px 90px -60px rgba(36,20,47,0.32); }
.pr-contact__h { font-size: 25px; line-height: 1.12; letter-spacing: -0.035em; }
.pr-contact__form { margin-top: 24px; }

/* Voog form fields inside the contact card */
.pr-contact__form .form_field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.pr-contact__form .form_field_label { font-size: 13.5px; font-weight: 600; color: #3D3B52; }
.pr-contact__form input[type="text"],
.pr-contact__form input[type="email"],
.pr-contact__form textarea,
.pr-contact__form select { width: 100%; font-family: inherit; font-size: 15px; line-height: 1.55; color: var(--ink); padding: 13px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); transition: border-color 180ms ease, box-shadow 180ms ease; }
.pr-contact__form textarea { min-height: 140px; resize: vertical; }
.pr-contact__form input:focus, .pr-contact__form textarea:focus, .pr-contact__form select:focus { outline: none; border-color: var(--lavender); box-shadow: 0 0 0 3px rgba(169,139,201,0.22); }
.pr-contact__form .form_submit_input,
.pr-contact__form button[type="submit"],
.pr-contact__form input[type="submit"] { width: 100%; border: 0; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 600; padding: 16px 28px; border-radius: 10px; background: #5B3BD6; color: #FFFFFF; transition: background 200ms ease; }
.pr-contact__form .form_submit_input:hover,
.pr-contact__form button[type="submit"]:hover,
.pr-contact__form input[type="submit"]:hover { background: var(--plum); }
.pr-contact__fine { margin: 12px 0 0; font-size: 12.5px; line-height: 1.5; color: #8785A2; text-align: center; }

.pr-ways { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.pr-way { display: flex; align-items: flex-start; gap: 16px; }
.pr-way + .pr-way { padding-top: 20px; border-top: 1px solid var(--line); }
.pr-way__icon { width: 44px; height: 44px; border-radius: 12px; background: #EFEAFB; color: #5B3BD6; display: flex; align-items: center; justify-content: center; flex: none; }
.pr-way__k { font-size: 13.5px; font-weight: 600; color: #6B6480; }
.pr-way__v { display: inline-block; margin-top: 4px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #5B3BD6; }
.pr-way__v:hover { color: var(--plum); }
.pr-way__addr { margin: 4px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink); max-width: 34ch; }
.pr-way__reg { margin: 4px 0 0; font-size: 14px; color: #6B6480; font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-variant-numeric: tabular-nums; }

.pr-account { margin-top: 40px; padding: 38px 32px 40px; border-radius: 18px; background: #F4F1FB; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; }
.pr-account__k { font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: #5B3BD6; font-weight: 600; }
.pr-account__h { margin-top: 10px; font-size: 21px; font-weight: 600; letter-spacing: -0.03em; }
.pr-account__p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); max-width: 38ch; }
.pr-account__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 13px 22px; border-radius: 999px; background: var(--surface); border: 1px solid #E3DAF6; font-size: 14.5px; font-weight: 600; color: var(--plum); transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.pr-account__cta:hover { background: #5B3BD6; border-color: #5B3BD6; color: #FFFFFF; }
.pr-account__icon { width: 96px; height: 78px; border-radius: 14px; background: var(--surface); border: 1px solid #E3DAF6; display: flex; align-items: center; justify-content: center; color: #5B3BD6; flex: none; }

@media (max-width: 980px) {
  .pr-contact { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .pr-contact__card { padding: 28px 24px; }
}
@media (max-width: 620px) {
  .pr-contact-hero__inner { padding: 48px var(--pad) 44px; }
  .pr-account { grid-template-columns: 1fr; padding: 28px 24px 30px; }
  .pr-account__icon { display: none; }
}


/* --- features page -------------------------------------------------------- */
.pr-hero--page { padding-bottom: 96px; }
.pr-hero__eyebrow { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--lavender-soft); }
.pr-hero--page .pr-hero__title { margin-top: 16px; }

.pr-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.pr-feat { display: flex; flex-direction: column; gap: 14px; padding: 34px 32px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.pr-feat__head { display: flex; align-items: baseline; gap: 14px; }
.pr-feat__idx { font-family: "Instrument Serif", Georgia, serif; font-size: 26px; letter-spacing: 0.04em; color: var(--lavender); flex: none; }
.pr-feat__title { font-size: 25px; line-height: 1.1; letter-spacing: -0.035em; }
.pr-feat__text { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 44ch; }
.pr-feat__list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-feat__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.5; color: #3D3B52; }
.pr-feat__list li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 13px; font-weight: 700; flex: none; }

.pr-whos { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pr-who-card { padding: 30px 28px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.pr-who-card__h { font-size: 19px; line-height: 1.2; letter-spacing: -0.03em; }
.pr-who-card__p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

.pr-featchips { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.pr-featchip { padding: 10px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: #3D3B52; }

.pr-feat-faq { margin-top: 34px; max-width: 900px; }

@media (max-width: 620px) {
  .pr-feat { padding: 26px 22px; }
  .pr-feat__title { font-size: 22px; }
}


/* --- pricing page --------------------------------------------------------- */
.pr-body--pricing { background: #FFFDFB; }
.pr-price-hero { background: #F4F1FB; }
.pr-price-hero__inner { max-width: var(--wrap); margin: 0 auto; padding: 60px var(--pad) 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-price-hero__title { margin: 14px 0 0; font-size: clamp(34px, 4.6vw, 50px); line-height: 1.03; letter-spacing: -0.042em; font-weight: 600; color: #09041D; max-width: 26ch; }
.pr-price-hero__lede { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: #4A3F58; max-width: 60ch; }
.pr-price-hero__actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pr-price-hero__note { margin: 14px 0 0; font-size: 13.5px; font-weight: 600; color: #6B6480; }

.pr-tiers--page { align-items: stretch; }
.pr-tiers--page .pr-tier { padding: 32px 30px; }
.pr-tiers--page .pr-tier--lead { padding: 40px 30px 44px; border: 1px solid var(--violet-bright); box-shadow: 0 46px 90px -52px rgba(60,26,140,0.6); }
.pr-tier__figure .pr-tier__per { font-size: 13.5px; }
.pr-plan__list { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: #3D3B52; }
.pr-plan__list li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 12.5px; font-weight: 700; flex: none; }
.pr-plan__list--dark li { color: rgba(255,255,255,0.88); }
.pr-plan__list--dark li::before { color: var(--blush); }

.pr-calcbar--page { background: linear-gradient(135deg, #F7F5FC 0%, #EFEAFB 100%); border-color: #E3DAF6; padding: 30px 34px; }
.pr-calcbar__cta { margin-top: 18px; }
.pr-calcrules { margin: 18px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.pr-calcrule { display: flex; align-items: baseline; gap: 10px; padding: 14px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); }
.pr-calcrule b { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-variant-numeric: tabular-nums; font-size: 15px; color: var(--ink); flex: none; }
.pr-calcrule a { font-weight: 600; color: #5B3BD6; }

.pr-included { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px 26px; }
.pr-included li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: #3D3B52; }
.pr-included li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 12.5px; font-weight: 700; flex: none; }
.pr-included__note { margin: 26px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); text-align: center; }

.pr-price-faq { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 12px 40px; align-items: start; }

@media (max-width: 880px) {
  .pr-tiers--page { grid-template-columns: 1fr; }
  .pr-tiers--page .pr-tier--paid { order: -1; }
  .pr-calcbar--page { padding: 24px 22px; }
}
@media (max-width: 620px) {
  .pr-price-hero__inner { padding: 44px var(--pad) 40px; }
}

.pr-calcbar__hint { font-weight: 400; color: var(--ink-4); }
@media (min-width: 1024px) { .pr-tiers--page { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 1023px) {
  .pr-tiers--page { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .pr-tiers--page .pr-tier--paid { order: -1; }
}

.pr-included__note a { font-weight: 600; color: #5B3BD6; }
.pr-included { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }


/* --- about page ----------------------------------------------------------- */
.pr-about-hero { background: #F4F1FB; }
.pr-about-hero__inner { max-width: var(--wrap); margin: 0 auto; padding: 60px var(--pad) 0; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.pr-about-hero__title { margin: 14px 0 0; font-size: clamp(34px, 4.6vw, 50px); line-height: 1.02; letter-spacing: -0.042em; color: #09041D; }
.pr-about-hero__lede { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: #4A3F58; max-width: 50ch; }
.pr-about-hero__actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.pr-artcard { padding: 26px 28px; border-radius: 20px; background: var(--plum-panel); color: #FFFFFF; box-shadow: 0 40px 80px -50px rgba(36,20,47,0.7); }
.pr-artcard__k { font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 8px; }
.pr-trust { max-width: var(--wrap); margin: 0 auto; padding: 36px var(--pad) 44px; display: flex; gap: 10px; flex-wrap: wrap; }
.pr-trust__item { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; background: var(--surface); border: 1px solid #E3DAF6; font-size: 14px; font-weight: 500; color: #3D3B52; }
.pr-trust__item::before { content: "✓"; color: var(--violet-bright); font-size: 12px; font-weight: 700; }

.pr-prose { max-width: 70ch; }
.pr-prose .pr-section__title { font-size: 30px; max-width: 34ch; }
.pr-prose__p { margin: 14px 0 0; font-size: 16px; line-height: 1.66; color: var(--ink-2); }
.pr-prose .pr-prose__p + .pr-section__title { margin-top: 44px; }

.pr-caps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 40px; max-width: 820px; }
.pr-caps li { display: flex; align-items: flex-start; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2); font-size: 15px; line-height: 1.5; color: #3D3B52; }
.pr-caps li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 12.5px; font-weight: 700; flex: none; }
.pr-caps__note { margin: 26px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 70ch; }
.pr-caps__note a { font-weight: 600; color: #5B3BD6; }

.pr-princs { margin-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pr-princ { padding: 30px 28px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.pr-princ__icon { width: 48px; height: 48px; border-radius: 14px; background: #EFEAFB; color: #5B3BD6; display: flex; align-items: center; justify-content: center; }
.pr-princ__h { margin-top: 18px; font-size: 18.5px; line-height: 1.22; letter-spacing: -0.03em; }
.pr-princ__p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

.pr-identity { padding: 38px 40px; border-radius: 20px; background: linear-gradient(135deg, #F7F5FC 0%, #EFEAFB 100%); border: 1px solid #E3DAF6; }
.pr-identity__h { font-size: 26px; line-height: 1.1; letter-spacing: -0.035em; }
.pr-identity__p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }
.pr-identity__grid { margin: 26px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px 36px; }
.pr-identity__grid dt { font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: #6B6480; font-weight: 600; }
.pr-identity__grid dd { margin: 6px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.pr-identity__grid dd a { font-weight: 600; color: #5B3BD6; }

@media (max-width: 980px) {
  .pr-about-hero__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .pr-princs { grid-template-columns: 1fr; }
  .pr-caps { grid-template-columns: 1fr; gap: 10px; }
  .pr-identity { padding: 28px 24px; }
}

.pr-operator { padding: 30px 34px; border-radius: 18px; background: #F4F1FB; border: 1px solid #E3DAF6; max-width: 900px; }
.pr-operator__h { font-size: 22px; line-height: 1.15; letter-spacing: -0.03em; }
.pr-operator__p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-2); max-width: 66ch; }
.pr-operator__p a { font-weight: 600; color: #5B3BD6; }


/* --- how it works page ---------------------------------------------------- */
.pr-hiw-hero { background: #F4F1FB; }
.pr-hiw-hero__inner { max-width: var(--wrap); margin: 0 auto; padding: 56px var(--pad) 56px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 52px; align-items: center; }
.pr-hiw-hero__title { margin: 14px 0 0; font-size: clamp(34px, 4.6vw, 50px); line-height: 1.02; letter-spacing: -0.042em; color: #09041D; }
.pr-hiw-hero__lede { margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: #4A3F58; max-width: 50ch; }
.pr-hiw-hero__actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.pr-hiw-hero__note { margin: 14px 0 0; font-size: 13.5px; font-weight: 600; color: #6B6480; }

.pr-steps { margin-top: 48px; display: flex; flex-direction: column; gap: 44px; }
.pr-step-row { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr) minmax(0, 0.9fr); gap: 34px; align-items: center; }
.pr-step-row__mark { position: relative; align-self: start; }
.pr-step-row__num { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: var(--surface); border: 1px solid var(--lavender); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-variant-numeric: tabular-nums; font-size: 18px; font-weight: 600; color: #5B3BD6; box-shadow: 0 14px 28px -18px rgba(86,84,122,0.55); }
.pr-step-row__mark::after { content: ""; position: absolute; left: 27px; top: 62px; bottom: -78px; width: 2px; background: linear-gradient(180deg, var(--lavender), rgba(169,139,201,0)); }
.pr-step-row:last-child .pr-step-row__mark::after { display: none; }
.pr-step-row__h { font-size: 26px; line-height: 1.12; letter-spacing: -0.035em; }
.pr-step-row__p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-2); max-width: 50ch; }
.pr-step-row__label { margin: 16px 0 0; font-size: 13px; font-weight: 600; color: #6B6480; }
.pr-step-row__list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 8px 22px; }
.pr-step-row__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; line-height: 1.45; color: #3D3B52; }
.pr-step-row__list li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 12px; font-weight: 700; flex: none; }
.pr-step-row--flip .pr-step-row__text { order: 3; }
.pr-step-row--flip .pr-step-row__art { order: 2; }
.pr-mockfoot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-2); font-size: 12.5px; font-weight: 600; color: #56547A; }

.pr-remains { padding: 38px 40px; border-radius: 20px; background: #F4F1FB; border: 1px solid #E3DAF6; }
.pr-remains__h { font-size: 26px; line-height: 1.12; letter-spacing: -0.035em; max-width: 34ch; }
.pr-remains__p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 64ch; }
.pr-remains__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 36px; max-width: 760px; }
.pr-remains__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: #3D3B52; }
.pr-remains__list li::before { content: "✓"; margin-top: 1px; color: var(--violet-bright); font-size: 12.5px; font-weight: 700; flex: none; }
.pr-remains__note { margin: 22px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 64ch; }

@media (max-width: 980px) {
  .pr-hiw-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .pr-step-row { grid-template-columns: 48px minmax(0, 1fr); gap: 20px; align-items: start; }
  .pr-step-row__num { width: 44px; height: 44px; font-size: 15px; }
  .pr-step-row__mark::after { left: 21px; top: 50px; bottom: -66px; }
  .pr-step-row__art { grid-column: 2; margin-top: 20px; }
  .pr-step-row--flip .pr-step-row__text { order: 0; }
  .pr-step-row--flip .pr-step-row__art { order: 0; }
  .pr-remains { padding: 28px 24px; }
  .pr-remains__list { grid-template-columns: 1fr; }
}

/* step connector: hang off the row so the line spans to the next circle */
.pr-step-row { position: relative; }
.pr-step-row__mark::after { display: none; }
.pr-step-row::after { content: ""; position: absolute; left: 27px; top: 64px; bottom: -44px; width: 2px; background: linear-gradient(180deg, var(--lavender), rgba(169,139,201,0.45)); }
.pr-step-row:last-child::after { display: none; }
@media (max-width: 980px) {
  .pr-step-row::after { left: 21px; top: 52px; bottom: -44px; }
}


/* --- FAQ page ------------------------------------------------------------- */
.pr-faq-hero { background: #F4F1FB; }
.pr-faq-hero__inner { max-width: 760px; margin: 0 auto; padding: 60px var(--pad) 54px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-faq-hero__title { font-size: clamp(32px, 4.2vw, 46px); line-height: 1.04; letter-spacing: -0.042em; color: #09041D; max-width: 26ch; }
.pr-faq-hero__lede { margin: 16px 0 0; font-size: 16.5px; line-height: 1.6; color: #4A3F58; max-width: 58ch; }
.pr-faqnav { margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pr-faqnav a { padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid #E3DAF6; font-size: 13.5px; font-weight: 600; color: #3D3B52; }
.pr-faqnav a:hover { background: #5B3BD6; border-color: #5B3BD6; color: #FFFFFF; }
.pr-faq-hero__note { margin: 22px 0 0; font-size: 14.5px; color: #4A3F58; }
.pr-faq-hero__note a { font-weight: 600; color: #5B3BD6; }

.pr-faqbody { max-width: 860px; margin: 0 auto; }
.pr-faqfilter { display: flex; flex-direction: column; gap: 8px; }
.pr-faqfilter__label { font-size: 13px; font-weight: 600; color: #6B6480; }
.pr-faqfilter input { font-family: inherit; font-size: 15px; color: var(--ink); padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.pr-faqfilter input:focus { outline: none; border-color: var(--lavender); box-shadow: 0 0 0 3px rgba(169,139,201,0.22); }
.pr-faqfilter__empty { margin: 16px 0 0; font-size: 15px; color: var(--ink-2); }
.pr-faqfilter__empty a { font-weight: 600; color: #5B3BD6; }

.pr-faqgroup { margin-top: 44px; }
.pr-faqgroup[hidden] { display: none; }
.pr-faqgroup__h { font-size: 24px; line-height: 1.14; letter-spacing: -0.035em; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pr-faqgroup .pr-acc { margin-top: 16px; }
.pr-faqgroup .pr-acc__item[hidden] { display: none; }
.pr-faqgroup .pr-acc__a a { font-weight: 600; color: #5B3BD6; }

@media (max-width: 620px) {
  .pr-faq-hero__inner { padding: 44px var(--pad) 40px; }
  .pr-faqgroup__h { font-size: 21px; }
}

/* active navigation item */
.pr-nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.pr-header.is-solid .pr-nav__link[aria-current="page"] { color: #FFFFFF; }
@media (min-width: 881px) {
  .pr-nav__link[aria-current="page"] { position: relative; }
  .pr-nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--violet-bright); }
  .pr-header.is-solid .pr-nav__link[aria-current="page"]::after { background: var(--lavender-soft); }
}

/* Keep the homepage FAQ image fixed while answers open */
.pr-faq {
  align-items: start;
}

.pr-faq__media {
  align-self: start;
}

.pr-faq__frame {
  flex: none;
  min-height: 0;
  aspect-ratio: 1400 / 1360;
}

.pr-faq__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   Language switcher (shared, EN + ET headers)
   ========================================================================== */

/* --- language switcher ---------------------------------------------------- */
.pr-lang { position: relative; display: flex; align-items: center; }
.pr-lang__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: inherit; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--violet-bright); border: 1px solid #E3DAF6;
  transition: background 200ms ease, color 300ms ease, border-color 300ms ease;
}
.pr-lang__toggle:hover { background: var(--lavender-pale); color: var(--violet-deep); }
.pr-lang__caret { transition: transform 200ms ease; }
.pr-lang.is-open .pr-lang__caret { transform: rotate(180deg); }
.pr-header.is-solid .pr-lang__toggle { color: var(--lavender-soft); border-color: rgba(198,169,245,0.5); }
.pr-header.is-solid .pr-lang__toggle:hover { background: rgba(255,255,255,0.12); color: #FFFFFF; }

.pr-lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 60;
  min-width: 186px; padding: 6px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 24px 50px -24px rgba(20,7,38,0.45);
  display: none; flex-direction: column; gap: 2px;
}
.pr-lang.is-open .pr-lang__menu { display: flex; }
.pr-lang__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.pr-lang__item:hover { background: var(--tint-2); color: var(--plum); }
.pr-lang__item.is-current { background: var(--tint); color: var(--plum); font-weight: 600; }
.pr-lang__tick { font-size: 12px; color: var(--violet-bright); }
.pr-lang__code { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-3); }

/* mobile: segmented language pair inside the drawer */
.pr-lang--mobile { display: none; gap: 6px; padding: 14px 0 12px; border-bottom: 1px solid var(--line-2); }
.pr-lang--mobile span, .pr-lang--mobile a { flex: 1; text-align: center; padding: 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.pr-lang--mobile span { background: var(--violet-bright); color: #FFFFFF; }
.pr-lang--mobile a { border: 1px solid var(--line); color: var(--ink-2); }
.pr-header.is-solid .pr-lang--mobile { border-bottom-color: rgba(255,255,255,0.12); }
.pr-header.is-solid .pr-lang--mobile a { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.82); }

@media (max-width: 880px) {
  .pr-lang { display: none; }
  .pr-lang--mobile { display: flex; }
}

