
* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f4f4f5;
  background: #000;
}


.page {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 56px 20px 28px;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}

.hero {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrap { margin-bottom: 56px; }

.logo {
  display: block;
  width: 100%;
  max-width: 256px;
  height: auto;
}

.wf-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}

.wf {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 256px;
  height: 48px;

  border: 0;
  background: transparent url("./assets/btn.png") center / 100% 100% no-repeat;
  text-decoration: none;

  transition:
    transform 140ms ease,
    filter 140ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-text {
  color: #000;
  font-size: 13px;
  letter-spacing: 0.14em;

  text-shadow:
    1px 0   0 #fff,  -1px 0   0 #fff,
    0   1px 0 #fff,   0  -1px 0 #fff,
    1px 1px 0 #fff,  -1px 1px 0 #fff,
    1px -1px 0 #fff, -1px -1px 0 #fff;
}

.btn:hover .btn-text,
.btn:active .btn-text {
  text-shadow:
    1px 0   0 #00c8ff,  -1px 0   0 #00c8ff,
    0   1px 0 #00c8ff,   0  -1px 0 #00c8ff,
    1px 1px 0 #00c8ff,  -1px 1px 0 #00c8ff,
    1px -1px 0 #00c8ff, -1px -1px 0 #00c8ff;
}

.footer {
  border-top: 0;
  margin-top: 48px;
  padding-top: 18px;
  text-align: center;
  justify-self: center;
}

.b2b-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
}

.b2b-line { margin: 6px 0; opacity: 0.92; }

.footer a { color: #e4e4e7; }
.footer a:hover { color:#00c8ff; }

.tiny {
  margin: 16px 0 0;
  font-size: 11px;
  opacity: 0.65;
}

[data-animate="in"] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(.2,.8,.2,1);
}

.is-in {
  opacity: 1;
  transform: translateY(0);
}