/*
Theme Name: ProjectRecall
Theme URI: https://projectrecall.app
Author: Tradeforce Systems
Author URI: https://buildwithtfs.com
Description: Code-first marketing theme for ProjectRecall by Tradeforce Systems — AI project memory for construction teams. Clean B2B SaaS design, no page builder, SEO/AIO/GEO ready.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: projectrecall
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --pr-navy: #111827;
  --pr-navy-700: #1f2937;
  --pr-navy-600: #273449;
  --pr-blue: #2563eb;
  --pr-blue-600: #1d4ed8;
  --pr-blue-050: #eff4ff;
  --pr-amber: #f59e0b;
  --pr-amber-050: #fff7e6;
  --pr-bg: #f8fafc;
  --pr-white: #ffffff;
  --pr-ink: #111827;
  --pr-body: #374151;
  --pr-muted: #6b7280;
  --pr-line: #e5e7eb;
  --pr-line-soft: #eef2f7;

  --pr-radius: 12px;
  --pr-radius-lg: 18px;
  --pr-shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --pr-shadow-md: 0 8px 24px rgba(16, 24, 40, .08);
  --pr-shadow-lg: 0 20px 45px rgba(16, 24, 40, .14);

  --pr-maxw: 1120px;
  --pr-gap: 24px;

  --pr-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pr-font-display: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--pr-font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--pr-body);
  background: var(--pr-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--pr-font-display);
  color: var(--pr-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--pr-blue); text-decoration: none; }
a:hover { color: var(--pr-blue-600); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
strong { color: var(--pr-ink); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--pr-line); margin: 2.5rem 0; }

:focus-visible { outline: 3px solid rgba(37, 99, 235, .45); outline-offset: 2px; border-radius: 6px; }

.pr-skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--pr-blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.pr-skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.pr-container { width: 100%; max-width: var(--pr-maxw); margin: 0 auto; padding: 0 22px; }
.pr-section { padding: 76px 0; }
.pr-section--tight { padding: 52px 0; }
.pr-section--light { background: var(--pr-bg); }
.pr-section--white { background: var(--pr-white); }
.pr-section--navy { background: var(--pr-navy); color: #cdd5e0; }
.pr-section--navy h2, .pr-section--navy h3 { color: #fff; }

.pr-eyebrow {
  display: inline-block;
  font-family: var(--pr-font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-blue);
  margin-bottom: 14px;
}
.pr-section--navy .pr-eyebrow { color: var(--pr-amber); }

.pr-section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.pr-section-head p { color: var(--pr-muted); font-size: 1.08rem; margin: 0; }
.pr-section--navy .pr-section-head p { color: #aab4c5; }

.pr-lead { font-size: 1.15rem; color: var(--pr-body); }

.pr-grid { display: grid; gap: var(--pr-gap); }
.pr-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pr-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pr-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.pr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--pr-font-display);
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 24px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.pr-btn:active { transform: translateY(1px); }
.pr-btn--primary { background: var(--pr-blue); color: #fff; box-shadow: 0 6px 16px rgba(37, 99, 235, .28); }
.pr-btn--primary:hover { background: var(--pr-blue-600); color: #fff; box-shadow: 0 10px 22px rgba(37, 99, 235, .34); }
.pr-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .28); }
.pr-btn--ghost:hover { background: rgba(255, 255, 255, .08); color: #fff; }
.pr-btn--light { background: #fff; color: var(--pr-navy); border-color: var(--pr-line); }
.pr-btn--light:hover { background: var(--pr-bg); color: var(--pr-navy); }
.pr-btn--amber { background: var(--pr-amber); color: #422006; box-shadow: 0 6px 16px rgba(245, 158, 11, .3); }
.pr-btn--amber:hover { background: #d98309; color: #422006; }
.pr-btn--lg { padding: 16px 30px; font-size: 1.06rem; }
.pr-btn--block { width: 100%; }

.pr-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.pr-btn-row--center { justify-content: center; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.pr-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17, 24, 39, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.pr-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.pr-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--pr-font-display); font-weight: 800; font-size: 1.18rem; color: #fff; letter-spacing: -.02em; }
.pr-brand:hover { color: #fff; }
.pr-brand__mark {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--pr-blue), #3b82f6);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .95rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.pr-brand__mark span { transform: translateY(-1px); }
.pr-nav { display: flex; align-items: center; gap: 26px; }
.pr-nav__menu { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.pr-nav__menu a { color: #cbd5e1; font-size: .95rem; font-weight: 500; }
.pr-nav__menu a:hover { color: #fff; }
.pr-nav__menu .current-menu-item > a,
.pr-nav__menu .current_page_item > a { color: #fff; }
.pr-header .pr-btn { padding: 10px 18px; font-size: .95rem; }

.pr-nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.pr-nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.pr-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(37, 99, 235, .28), transparent 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(37, 99, 235, .12), transparent 55%),
    var(--pr-navy);
  color: #cdd5e0;
  padding: 86px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.pr-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pr-hero h1 { color: #fff; margin-bottom: 18px; }
.pr-hero__sub { font-size: 1.2rem; color: #b9c2d0; max-width: 36ch; margin-bottom: 28px; }
.pr-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.pr-hero__pills li {
  font-size: .85rem; font-weight: 600; color: #cbd5e1;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  padding: 7px 13px; border-radius: 999px;
}
.pr-hero__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  background: rgba(245, 158, 11, .12); border: 1px solid rgba(245, 158, 11, .35);
  color: #fcd34d; font-weight: 600; font-size: .82rem; letter-spacing: .02em;
  padding: 6px 13px; border-radius: 999px;
}
.pr-hero__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pr-amber); }

/* Hero product mock */
.pr-mock {
  background: linear-gradient(180deg, #16203a, #111827);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--pr-radius-lg);
  box-shadow: var(--pr-shadow-lg);
  overflow: hidden;
}
.pr-mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.pr-mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: #33415c; display: inline-block; }
.pr-mock__bar span { margin-left: 10px; font-size: .78rem; color: #8895ab; }
.pr-mock__body { padding: 18px; display: grid; gap: 12px; }
.pr-mock__row { background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .07); border-radius: 10px; padding: 12px 14px; }
.pr-mock__row b { display: block; color: #fff; font-size: .92rem; margin-bottom: 3px; font-family: var(--pr-font-display); }
.pr-mock__row small { color: #93a1b8; font-size: .82rem; }
.pr-mock__tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; margin-bottom: 8px; }
.pr-mock__tag--blue { background: rgba(37, 99, 235, .22); color: #93b4fb; }
.pr-mock__tag--amber { background: rgba(245, 158, 11, .2); color: #fcd34d; }
.pr-mock__tag--green { background: rgba(16, 185, 129, .18); color: #6ee7b7; }

/* ==========================================================================
   Logos / trust strip
   ========================================================================== */
.pr-trust { padding: 30px 0; background: var(--pr-navy-700); border-bottom: 1px solid rgba(255,255,255,.06); }
.pr-trust p { text-align: center; color: #8b97ab; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; font-weight: 600; }
.pr-trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.pr-trust__row span {
  color: #c7d0de; font-weight: 600; font-family: var(--pr-font-display); font-size: .98rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); padding: 8px 16px; border-radius: 8px;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.pr-card {
  background: #fff; border: 1px solid var(--pr-line); border-radius: var(--pr-radius);
  padding: 24px; box-shadow: var(--pr-shadow-sm); height: 100%;
}
.pr-card h3 { margin-bottom: 8px; }
.pr-card p { color: var(--pr-muted); margin: 0; font-size: .98rem; }
.pr-card__icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pr-blue-050); color: var(--pr-blue); font-size: 1.2rem;
}
.pr-card--amber .pr-card__icon { background: var(--pr-amber-050); color: #b45309; }

/* Numbered workflow steps */
.pr-step { position: relative; background: #fff; border: 1px solid var(--pr-line); border-radius: var(--pr-radius); padding: 26px 22px 22px; height: 100%; box-shadow: var(--pr-shadow-sm); }
.pr-step__num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--pr-navy); color: #fff; font-family: var(--pr-font-display); font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--pr-shadow-sm);
}
.pr-step:nth-child(2) .pr-step__num { background: var(--pr-blue); }
.pr-step:nth-child(4) .pr-step__num { background: var(--pr-amber); color: #422006; }
.pr-step h3 { margin: 10px 0 8px; }
.pr-step p { color: var(--pr-muted); margin: 0; font-size: .97rem; }

/* Checklist */
.pr-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.pr-checks li { position: relative; padding-left: 30px; color: var(--pr-body); }
.pr-checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--pr-blue-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* Split feature rows */
.pr-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pr-split--rev .pr-split__media { order: 2; }
.pr-split__media {
  background: var(--pr-bg); border: 1px solid var(--pr-line); border-radius: var(--pr-radius-lg);
  padding: 22px; box-shadow: var(--pr-shadow-sm);
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.pr-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pr-compare__col { border-radius: var(--pr-radius-lg); padding: 28px; }
.pr-compare__col--bad { background: #fff; border: 1px solid var(--pr-line); }
.pr-compare__col--good { background: var(--pr-navy); color: #cdd5e0; border: 1px solid var(--pr-navy); box-shadow: var(--pr-shadow-md); }
.pr-compare__col h3 { font-size: 1.1rem; }
.pr-compare__col--good h3 { color: #fff; }
.pr-compare__list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; }
.pr-compare__list li { position: relative; padding-left: 28px; font-size: .98rem; }
.pr-compare__col--bad li::before { content: "\00d7"; position: absolute; left: 0; top: -1px; color: #9ca3af; font-weight: 800; font-size: 1.2rem; line-height: 1; }
.pr-compare__col--good li { color: #cdd5e0; }
.pr-compare__col--good li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #34d399; font-weight: 800; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pr-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pr-price {
  background: #fff; border: 1px solid var(--pr-line); border-radius: var(--pr-radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; box-shadow: var(--pr-shadow-sm);
}
.pr-price--featured { border-color: var(--pr-blue); box-shadow: 0 18px 40px rgba(37, 99, 235, .16); position: relative; }
.pr-price--featured::after {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pr-blue); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px;
}
.pr-price__name { font-family: var(--pr-font-display); font-weight: 700; font-size: 1.05rem; color: var(--pr-ink); }
.pr-price__amount { font-family: var(--pr-font-display); font-weight: 800; font-size: 2.6rem; color: var(--pr-ink); margin: 10px 0 2px; letter-spacing: -.03em; }
.pr-price__amount small { font-size: .95rem; font-weight: 600; color: var(--pr-muted); }
.pr-price__desc { color: var(--pr-muted); font-size: .95rem; min-height: 42px; margin-bottom: 18px; }
.pr-price__features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.pr-price__features li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--pr-body); }
.pr-price__features li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--pr-blue-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/12px no-repeat;
}
.pr-price .pr-btn { margin-top: auto; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.pr-faq { max-width: 820px; margin: 0 auto; }
.pr-faq__item { border-bottom: 1px solid var(--pr-line); }
.pr-faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--pr-font-display); font-weight: 700; font-size: 1.08rem; color: var(--pr-ink);
}
.pr-faq__item summary::-webkit-details-marker { display: none; }
.pr-faq__item summary::after {
  content: "+"; position: absolute; right: 6px; top: 16px; font-size: 1.5rem; font-weight: 400; color: var(--pr-blue); transition: transform .2s ease;
}
.pr-faq__item[open] summary::after { content: "\2212"; }
.pr-faq__item p { color: var(--pr-muted); margin: 0 0 20px; max-width: 70ch; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.pr-cta-band {
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(37, 99, 235, .35), transparent 60%),
    var(--pr-navy);
  color: #cdd5e0; border-radius: var(--pr-radius-lg); padding: 52px; text-align: center;
}
.pr-cta-band h2 { color: #fff; margin-bottom: 10px; }
.pr-cta-band p { color: #aab4c5; max-width: 56ch; margin: 0 auto 24px; }

/* ==========================================================================
   Page hero (interior)
   ========================================================================== */
.pr-page-hero {
  background:
    radial-gradient(700px 320px at 85% -20%, rgba(37, 99, 235, .22), transparent 60%),
    var(--pr-navy);
  color: #b9c2d0; padding: 60px 0 56px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.pr-page-hero h1 { color: #fff; margin-bottom: 12px; }
.pr-page-hero p { color: #aab4c5; font-size: 1.12rem; max-width: 64ch; margin: 0; }
.pr-breadcrumb { font-size: .85rem; color: #7c8aa1; margin-bottom: 16px; }
.pr-breadcrumb a { color: #9fb4dd; }
.pr-breadcrumb span { color: #5d6b80; }

/* Long-form content */
.pr-prose { max-width: 760px; }
.pr-prose h2 { margin-top: 1.8em; }
.pr-prose h3 { margin-top: 1.4em; }
.pr-prose ul { padding-left: 1.2rem; }
.pr-prose li { margin-bottom: .4rem; }
.pr-prose img { border-radius: var(--pr-radius); margin: 1.4rem 0; }
.pr-prose blockquote {
  margin: 1.6rem 0; padding: 6px 20px; border-left: 4px solid var(--pr-amber);
  color: var(--pr-ink); font-size: 1.1rem;
}

/* Stats */
.pr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pr-stat { text-align: center; }
.pr-stat b { display: block; font-family: var(--pr-font-display); font-weight: 800; font-size: 2.2rem; color: var(--pr-ink); letter-spacing: -.02em; }
.pr-section--navy .pr-stat b { color: #fff; }
.pr-stat span { color: var(--pr-muted); font-size: .95rem; }
.pr-section--navy .pr-stat span { color: #aab4c5; }

/* ==========================================================================
   Blog
   ========================================================================== */
.pr-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pr-post-card { background: #fff; border: 1px solid var(--pr-line); border-radius: var(--pr-radius); overflow: hidden; box-shadow: var(--pr-shadow-sm); display: flex; flex-direction: column; }
.pr-post-card__thumb { aspect-ratio: 16/9; background: var(--pr-blue-050); object-fit: cover; width: 100%; }
.pr-post-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pr-post-card__meta { font-size: .8rem; color: var(--pr-muted); margin-bottom: 8px; }
.pr-post-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pr-post-card p { color: var(--pr-muted); font-size: .95rem; }
.pr-post-card a.pr-readmore { margin-top: auto; font-weight: 700; font-size: .92rem; }
.pr-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pr-pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--pr-line); border-radius: 8px; color: var(--pr-body); }
.pr-pagination .current { background: var(--pr-blue); color: #fff; border-color: var(--pr-blue); }

/* Single post */
.pr-single { max-width: 760px; margin: 0 auto; }
.pr-single__meta { color: var(--pr-muted); font-size: .92rem; margin-bottom: 22px; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.pr-form { display: grid; gap: 16px; max-width: 560px; }
.pr-field label { display: block; font-weight: 600; color: var(--pr-ink); margin-bottom: 6px; font-size: .92rem; }
.pr-field input, .pr-field textarea, .pr-field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--pr-line); border-radius: 10px;
  font: inherit; color: var(--pr-ink); background: #fff;
}
.pr-field input:focus, .pr-field textarea:focus { border-color: var(--pr-blue); outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.pr-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }

/* Form flash messages */
.pr-flash { border-radius: 10px; padding: 14px 16px; margin: 0 0 18px; font-size: .96rem; border: 1px solid; }
.pr-flash--ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.pr-flash--err { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ==========================================================================
   404
   ========================================================================== */
.pr-404 { text-align: center; padding: 90px 0; }
.pr-404 .pr-code { font-family: var(--pr-font-display); font-weight: 800; font-size: 5rem; color: var(--pr-blue); line-height: 1; letter-spacing: -.04em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.pr-footer { background: var(--pr-navy); color: #93a1b8; padding: 64px 0 30px; }
.pr-footer a { color: #aab6c8; }
.pr-footer a:hover { color: #fff; }
.pr-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
.pr-footer__brand .pr-brand { margin-bottom: 14px; }
.pr-footer__brand p { font-size: .95rem; max-width: 32ch; color: #8b97ab; }
.pr-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.pr-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pr-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .88rem; color: #7c8aa1; }
.pr-footer__bottom a { color: #9aa6b8; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.pr-mt-0 { margin-top: 0; }
.pr-mb-0 { margin-bottom: 0; }
.pr-center { text-align: center; }
.pr-mw-720 { max-width: 720px; margin-left: auto; margin-right: auto; }
.pr-note { font-size: .85rem; color: var(--pr-muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .pr-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pr-split { grid-template-columns: 1fr; gap: 28px; }
  .pr-split--rev .pr-split__media { order: 0; }
  .pr-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pr-pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pr-compare { grid-template-columns: 1fr; }
  .pr-posts { grid-template-columns: repeat(2, 1fr); }
  .pr-footer__top { grid-template-columns: 1fr 1fr; }
  .pr-contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .pr-section { padding: 56px 0; }
  .pr-nav__menu, .pr-nav .pr-btn--primary { display: none; }
  .pr-nav-toggle { display: inline-flex; }
  .pr-nav[data-open="true"] .pr-nav__menu {
    display: flex; position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--pr-navy-700); padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .pr-nav[data-open="true"] .pr-nav__menu a { padding: 8px 0; width: 100%; }
  .pr-grid-2, .pr-grid-3, .pr-grid-4, .pr-stats, .pr-posts { grid-template-columns: 1fr; }
  .pr-cta-band { padding: 36px 22px; }
  .pr-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 460px) {
  .pr-footer__top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
