:root{--pr-red:#ed0d1f;
  --pr-red-dark:#c60817;
  --pr-navy:#071426;
  --pr-ink:#0a1426;
  --pr-muted:#5e6b7d;
  --pr-soft:#f5f7fb;
  --pr-soft-2:#eef2f7;
  --pr-line:#dfe6ef;
  --pr-white:#ffffff;
  --pr-shadow:none;
  --pr-shadow-soft:none;
  --pr-radius:22px;
  --pr-radius-sm:14px;
  --pr-font:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --pr-display:"Barlow Condensed",Inter,system-ui,sans-serif;
  --pr-container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#fff;min-height:100%}
body.pr-site{margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:var(--pr-font);
  color:var(--pr-ink);
  background:
    linear-gradient(180deg,#fff 0%, #fbfcff 42%, #fff 100%);
  overflow-x:hidden;
}
img{max-width:100%;height:auto}
a{color:inherit}
button,input,textarea,select{font:inherit}
main{flex:1 0 auto}

.pr-container{width:min(var(--pr-container), calc(100% - 40px));
  margin-inline:auto;
}

@media (max-width:640px){.pr-container{width:min(100% - 26px, var(--pr-container))}
}
