/* Full Count Business Solutions · design tokens (Brand Guidelines v1.0) */
:root {
  --fc-charcoal: #28333B;
  --fc-green: #009B00;
  --fc-gold: #EFBF04;
  --fc-green-deep: #007C00;

  --fc-slate: #5A6570;
  --fc-mist: #E4E8EA;
  --fc-paper: #F5F7F8;
  --fc-white: #FFFFFF;

  --fc-text: var(--fc-charcoal);
  --fc-text-muted: var(--fc-slate);
  --fc-link: var(--fc-green-deep);
  --fc-border: var(--fc-mist);
  --fc-surface: var(--fc-paper);

  --fc-font: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --fc-1: 8px;
  --fc-2: 16px;
  --fc-3: 24px;
  --fc-4: 32px;
  --fc-6: 48px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--fc-font);
  color: var(--fc-text);
  background: var(--fc-white);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--fc-link);
}

a:focus-visible {
  outline: 2px solid var(--fc-green-deep);
  outline-offset: 2px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--fc-3);
}

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

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--fc-6) var(--fc-3);
}

.hero__inner {
  max-width: 560px;
}

.hero__logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin: 0 auto var(--fc-4);
}

.eyebrow {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-green-deep);
  margin: 0 0 var(--fc-2);
}

.hero__headline {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.01em;
  margin: 0 0 var(--fc-4);
}

.hero__coming-soon {
  font-weight: 500;
  font-size: 19px;
  line-height: 26px;
  color: var(--fc-text-muted);
  margin: 0 0 var(--fc-3);
}

.hero__email {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: var(--fc-green-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

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

.site-footer {
  border-top: 1px solid var(--fc-border);
}

.site-footer .container {
  padding-top: var(--fc-3);
  padding-bottom: var(--fc-3);
  text-align: center;
}

.site-footer small {
  color: var(--fc-text-muted);
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 700px) {
  .hero__headline {
    font-size: 40px;
    line-height: 44px;
  }
}
