/* legal.pkware.com - static rebuild. One stylesheet, no framework.
   Palette is identical to bigiron's (verified against the site's own Avada
   stylesheet): #ffffff #f8f9fa #e2e2e2 #65bc7b #198fd9 #212934 #1c1c1c #000000.
   Headings are Raleway 700/600 per the page's own inline styles; body copy is
   the PKWARE Arial/Helvetica stack. Raleway is self-hosted, not fetched from
   Google, so the page has no third-party dependency at render time. */

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-head:   #1152be;
  --blue-accent: #198fd9;
  --green:       #65bc7b;
  --dark:        #212934;
  --light:       #f8f9fa;
  --rule:        #e2e2e2;
  --text:        #1c1c1c;
  --wrap:        1200px;
  --font:        Arial, Helvetica, sans-serif;
  /* Raleway carries no CJK glyphs - the Japanese link needs real fallbacks */
  --font-head:   "Raleway", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
                 "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-accent); }
a:hover, a:focus { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-head); margin: 0 0 .6em; line-height: 1.2; }
h1 { font-size: 34px; font-weight: 700; text-transform: capitalize; }
h2 { font-size: 26px; font-weight: 700; color: var(--blue-head); }
h3 { font-size: 21px; font-weight: 700; }
p  { margin: 0 0 1.1em; }

:focus-visible { outline: 3px solid var(--blue-accent); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--blue-head); padding: 12px 18px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px; flex-wrap: wrap;
}
.logo { display: block; flex: 0 0 auto; }
.logo img { width: 190px; height: auto; }

.nav-toggle {
  flex: 0 0 auto; width: 44px; height: 44px;
  background: none; border: 1px solid var(--rule); border-radius: 4px;
  cursor: pointer; display: grid; place-items: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block; width: 22px; height: 2px; background: var(--dark); content: "";
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -7px; }
.nav-toggle-bars::after  { position: absolute; top:  7px; }

.site-nav { display: none; flex: 1 0 100%; order: 3; padding-bottom: 16px; }
.site-nav.is-open { display: block; }

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list > li { border-top: 1px solid var(--rule); }
.nav-list a {
  display: block; padding: 12px 0;
  color: var(--dark); text-decoration: none; font-weight: 600;
}
.nav-list a:hover, .nav-list a:focus { color: var(--blue-head); text-decoration: none; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 3px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: 14px; text-decoration: none;
}
.btn-demo { margin-top: 14px; background: var(--green); color: #fff; }
.btn-demo:hover, .btn-demo:focus { background: #4fa768; color: #fff; text-decoration: none; }

/* ---------- hero: white, left aligned, Raleway 700 ---------- */

.hero { padding: 39px 0 10px; background: #fff; }
.hero h1 { color: var(--text); margin-bottom: .25em; }
.hero-sub { font-size: 18px; margin: 0; color: var(--text); }

/* ---------- intro + video ---------- */

.intro { padding: 30px 0 44px; }
.intro-grid { display: grid; gap: 28px; align-items: center; }
.intro-copy p:last-child { margin-bottom: 0; }

.video-open {
  position: relative; display: block; width: 100%; padding: 0;
  border: 0; background: none; cursor: pointer;
}
.video-open img { width: 100%; border-radius: 4px; }
.video-open-label {
  display: block; margin-top: 10px;
  font-weight: 700; color: var(--blue-head); font-size: 15px;
}
.video-open:hover .video-open-label { text-decoration: underline; }

/* ---------- the documents ---------- */

.docs { padding: 10px 0 52px; }
.docs-title { margin-bottom: 1.4em; }

.doc-group {
  border: 1px solid var(--rule); border-radius: 4px;
  padding: 24px 22px; margin-bottom: 20px; background: var(--light);
}
.doc-group h3 { color: var(--dark); margin-bottom: .35em; }

.doc-sub {
  font-family: var(--font-head);
  font-weight: 600; font-size: 17px; color: var(--dark);
  margin: 18px 0 10px;
}
.doc-group h3 + .doc-sub { margin-top: 0; }

.lang-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.lang-list a {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 9px 16px 9px 34px;
  background: #fff; border: 1px solid var(--rule); border-radius: 3px;
  color: var(--blue-head); text-decoration: none;
  position: relative;
}
/* inline PDF glyph, so no icon font is needed */
.lang-list a::before {
  content: ""; position: absolute; left: 12px; top: 50%;
  width: 12px; height: 14px; margin-top: -7px;
  background: var(--blue-head);
  clip-path: polygon(0 0, 70% 0, 100% 26%, 100% 100%, 0 100%);
}
.lang-list a:hover, .lang-list a:focus {
  background: var(--blue-head); color: #fff; border-color: var(--blue-head);
  text-decoration: none;
}
.lang-list a:hover::before, .lang-list a:focus::before { background: #fff; }

/* ---------- decorative band ---------- */

.band img { width: 100%; height: auto; }

/* ---------- footer ---------- */

.site-footer { background: var(--dark); color: #d7dbe0; font-size: 15px; }
.site-footer a { color: #d7dbe0; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus { color: #fff; text-decoration: underline; }

.footer-top { display: grid; gap: 34px; padding: 46px 20px 34px; }
.footer-brand img { width: 190px; background: #fff; padding: 8px 10px; border-radius: 3px; }
.footer-brand p { margin: 18px 0 20px; }

.social { list-style: none; display: flex; gap: 14px; margin: 0; padding: 0; }
.social a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #47505c; border-radius: 50%; }
.social svg { width: 17px; height: 17px; fill: currentColor; }
.social a:hover, .social a:focus { background: var(--blue-accent); border-color: var(--blue-accent); color: #fff; }

.footer-cols { display: grid; gap: 28px; }
.footer-col h2 {
  font-size: 15px; text-transform: uppercase; letter-spacing: .06em;
  color: #fff; margin-bottom: .9em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }

.footer-bottom { border-top: 1px solid #37404b; }
.footer-bottom-inner { padding: 18px 20px; font-size: 14px; }
.footer-bottom p { margin: 0; }

/* ---------- back to top ---------- */

.to-top {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 42px; height: 42px; border-radius: 3px;
  background: var(--dark); color: #fff;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.to-top.is-visible { opacity: .85; pointer-events: auto; }
.to-top:hover, .to-top:focus { opacity: 1; }
.to-top svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- video modal ---------- */

.video-modal {
  width: min(92vw, 960px);
  padding: 0; border: 0; border-radius: 6px;
  background: #000; color: #fff; overflow: visible;
}
.video-modal::backdrop { background: rgba(0, 0, 0, .78); }
.video-frame { position: relative; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-fallback {
  margin: 0; padding: 10px 14px;
  background: #000; color: #cfd4da; font-size: 13px; text-align: center;
}
.video-fallback a { color: #fff; }
.video-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: #fff; color: var(--dark);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.video-close:hover, .video-close:focus { background: var(--blue-accent); color: #fff; }

/* ---------- 600px and up ---------- */

@media (min-width: 600px) {
  h1 { font-size: 48px; }
  h2 { font-size: 30px; }
  .hero-sub { font-size: 20px; }
  .doc-group { padding: 28px 26px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 900px and up: real desktop nav ---------- */

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex !important; align-items: center; gap: 20px;
    flex: 0 1 auto; order: 0; padding-bottom: 0;
  }
  .nav-list { display: flex; align-items: center; gap: 18px; }
  .nav-list > li { border-top: 0; }
  .nav-list a { padding: 24px 0; font-size: 15px; }
  .btn-demo { margin-top: 0; }

  .intro-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 2fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 1100px and up ---------- */

@media (min-width: 1100px) {
  h1 { font-size: 65px; }
}

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