/* Appeum Inc. — one page site */

:root {
  --brand:        #4F6BF6;
  --brand-dark:   #2B3EA8;
  --ink:          #1B2432;
  --body-text:    #5C7089;
  --band:         #F1F3F6;
  --page-max:     1320px;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--page-max);
}

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

.site-header {
  padding: 2.25rem 0 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  display: block;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}

/* ---------- hero ---------- */

.hero {
  flex: 1 0 auto;
  padding: 3rem 0 4.5rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--body-text);
  max-width: 34em;
  margin-bottom: 1.25rem;
}

.hero p:last-child {
  margin-bottom: 0;
}

.hero-figure {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #E7E9EE;
}

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

.site-footer {
  flex-shrink: 0;
  background: var(--band);
  padding: 2.25rem 0;
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.footer-legal {
  font-size: .9rem;
  color: var(--body-text);
  font-weight: 300;
}

.footer-rule {
  height: 6px;
  background: var(--brand-dark);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 1.5rem 0 3rem;
  }
  .hero-figure {
    margin: 2.5rem auto 0;
  }
}
