* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: rgb(26, 26, 30);
  background: rgb(235, 232, 228);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.paper {
  position: relative;
  max-width: 900px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background-color: rgb(252, 251, 249);
  background-image: repeating-linear-gradient(to bottom, transparent, transparent 27px, rgba(56, 127, 239, .035) 27px, rgba(56, 127, 239, .035) 28px);
  background-size: 100% 28px;
  background-position: 0 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06), 0 24px 60px rgba(0, 0, 0, .04);
}

.paper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56px;
  width: 1px;
  background: rgba(220, 80, 80, .22);
  content: "";
}

.nav-outer { position: relative; z-index: 1; display: flex; justify-content: center; padding: 20px 24px; }
.nav-pill { display: flex; align-items: center; gap: 18px; padding: 7px 16px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(26,26,30,.88); box-shadow: 0 4px 16px rgba(0,0,0,.15); color: white; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.brand img { width: 20px; height: 20px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 5px 9px; border-radius: 99px; color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; background: rgba(255,255,255,.12); }

/* Match the public site navigation on the Contact Us page. */
.standard-nav { position: sticky; top: 0; z-index: 1000; width: 100%; padding: 20px 32px; pointer-events: none; }
.standard-nav .nav-pill { pointer-events: auto; gap: 20px; width: fit-content; padding: 7px 7px 7px 16px; border: 1.5px solid rgba(255,255,255,.35); background: rgba(26,26,30,.8); backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3); box-shadow: 0 4px 16px rgba(0,0,0,.15), 0 1px 4px rgba(0,0,0,.1), inset 0 1px 1px rgba(255,255,255,.1); }
.standard-nav .nav-logo-group { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; text-decoration: none; }
.standard-nav .nav-logo-img { position: relative; top: 3px; width: 20px; height: 20px; object-fit: contain; }
.standard-nav .nav-brand { color: white; font-size: 14px; font-weight: 500; letter-spacing: .02em; white-space: nowrap; }
.standard-nav .nav-links { align-items: center; gap: 2px; }
.standard-nav .nav-links a { padding: 5px 10px; color: rgba(255,255,255,.6); letter-spacing: .01em; }
.standard-nav .nav-links a:hover { color: white; background: transparent; }
.standard-nav .nav-get-started { display: flex; align-items: center; justify-content: center; height: 30px; padding: 6px 14px; border-radius: 48px; background: rgba(255,255,255,.12); color: white; font-size: 13px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.standard-nav .nav-get-started:hover, .standard-nav .nav-get-started[aria-current="page"] { background: rgba(255,255,255,.2); }

main { position: relative; z-index: 0; padding: 52px 72px 80px; }
.eyebrow { margin: 0 0 12px; color: rgb(56, 127, 239); font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 680px; margin: 0; font-family: Inter, sans-serif; font-size: clamp(36px, 7vw, 56px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.intro { max-width: 650px; margin: 22px 0 0; color: rgba(26,26,30,.62); font-size: 18px; }
.effective { margin: 30px 0 42px; color: rgba(26,26,30,.5); font-size: 14px; }
.legal-section { max-width: 700px; margin: 32px 0; }
h2 { margin: 0 0 10px; font-family: Inter, sans-serif; font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
h3 { margin: 20px 0 8px; font-size: 16px; }
p, li { font-size: 16px; }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 21px; }
li + li { margin-top: 6px; }
.notice { margin-top: 40px; padding: 18px 20px; border-left: 3px solid rgb(56,127,239); background: rgba(56,127,239,.07); font-size: 14px; }

footer { position: relative; display: flex; justify-content: space-between; gap: 32px; padding: 36px 72px 44px; border-top: 1px solid rgba(0,0,0,.08); }
.footer-brand { margin: 0 0 8px; font-weight: 500; }
.footer-description { max-width: 330px; margin: 0; color: rgba(26,26,30,.48); font-size: 13px; }
.footer-address { margin-top: 12px; color: rgba(26,26,30,.6); font-size: 13px; font-style: normal; line-height: 1.5; }
.footer-address a { color: inherit; }
.footer-links { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 10px 18px; max-width: 250px; }
.footer-links a { color: rgba(26,26,30,.55); font-size: 13px; }

@media (max-width: 700px) {
  .paper { box-shadow: none; }
  .paper::before { left: 28px; }
  .nav-outer { padding: 12px 16px; }
  .nav-pill { width: 100%; flex-wrap: wrap; justify-content: center; gap: 6px; padding: 8px 12px; }
  .brand { width: 100%; justify-content: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .nav-links a { padding: 5px 6px; font-size: 12px; }
  main { padding: 40px 24px 58px 36px; }
  footer { flex-direction: column; padding: 28px 24px 32px 36px; }
}
